@charset "UTF-8";
/*
Theme Name: K-Bridge Simple
Description: シンプルな黒ベースのコーポレートテーマ
Version: 1.0
Author: K-Bridge
*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Arial, sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.site {
  max-width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.breadcrumb {
  font-size: 0.95em;
  margin-bottom: 20px;
}
.breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 6px;
  color: #bbb;
}
.breadcrumb a {
  color: #007acc;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .site-header {
    padding: 16px 0;
  }
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 16px 0;
}
@media (max-width: 640px) {
  .site-header.scrolled {
    padding: 8px 0;
  }
}
.site-header.scrolled .site-logo {
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
@media (max-width: 640px) {
  .site-header.scrolled .site-logo {
    height: 40px;
  }
}
.site-header.scrolled .hamburger span {
  width: 28px;
}
@media (max-width: 640px) {
  .site-header.scrolled .hamburger span {
    width: 25px;
  }
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header-inner {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .header-inner {
    padding: 0 24px;
  }
}
@media (max-width: 640px) {
  .header-inner {
    padding: 0 16px;
  }
}

.site-logo-container {
  z-index: 1001;
}
.site-logo-container .site-logo {
  height: 70px;
  width: auto;
  transition: all 0.3s;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}
.site-logo-container .site-logo:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .site-logo-container .site-logo {
    height: 50px;
  }
}
@media (max-width: 640px) {
  .site-logo-container .site-logo {
    height: 45px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
@media (max-width: 640px) {
  .hamburger {
    gap: 5px;
    padding: 8px;
  }
}
.hamburger span {
  display: block;
  width: 35px;
  height: 3px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hamburger span {
    width: 28px;
  }
}
@media (max-width: 640px) {
  .hamburger span {
    width: 25px;
    height: 2.5px;
  }
}
.hamburger[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
@media (max-width: 640px) {
  .hamburger[aria-expanded=true] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
}
.hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded=true] span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}
@media (max-width: 640px) {
  .hamburger[aria-expanded=true] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  transition: right 0.3s ease;
  padding: 100px 24px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
}
@media (max-width: 640px) {
  .main-nav {
    width: 85%;
    max-width: 280px;
    padding: 80px 16px 16px;
  }
}
.main-nav.is-open {
  right: 0;
}
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 640px) {
  .main-nav ul {
    gap: 24px;
  }
}
.main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  padding: 8px 0;
  position: relative;
  font-weight: 500;
  display: block;
}
@media (max-width: 640px) {
  .main-nav a {
    font-size: 16px;
    padding: 8px 0;
  }
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  transition: width 0.3s ease;
}
@media (max-width: 640px) {
  .main-nav a::after {
    height: 1.5px;
  }
}
.main-nav a:hover, .main-nav a:active {
  color: #fff;
}
.main-nav a:hover::after, .main-nav a:active::after {
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
@media (max-width: 640px) {
  body.menu-open::before {
    background: rgba(0, 0, 0, 0.85);
  }
}

.page-header {
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  padding-top: 80px;
  padding-right: 16px;
  padding-bottom: 60px;
  padding-left: 16px;
  text-align: center;
  margin-bottom: 60px;
}

body:not(.home) .page-header {
  margin-top: 80px;
}
@media (max-width: 768px) {
  body:not(.home) .page-header {
    margin-top: 60px;
  }
}
@media (max-width: 640px) {
  body:not(.home) .page-header {
    margin-top: 48px;
  }
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.page-description {
  font-size: 16px;
  color: #fff;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.fv {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.fv-swiper {
  width: 100%;
  height: 100%;
}
.fv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.fv-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.fv-title {
  font-size: clamp(28px, 8vw, 56px);
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  color: #fff;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}
@media (max-width: 768px) {
  .fv-title {
    font-size: clamp(22px, 6vw, 36px);
  }
}

.fv-tagline {
  font-size: clamp(16px, 3vw, 20px);
  color: #e5e7eb;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}
@media (max-width: 768px) {
  .fv-tagline {
    font-size: clamp(14px, 2.5vw, 18px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: bounce 2s infinite;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards, bounce 2s ease-in-out 2s infinite;
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 20px;
  }
}
.scroll-indicator .scroll-text {
  font-size: 14px;
  color: #e5e7eb;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.scroll-indicator .scroll-arrow {
  font-size: 20px;
  color: #3b82f6;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
main {
  padding: 0;
}

.section {
  max-width: 1200px;
  margin: 0 auto 60px;
  scroll-margin-top: 80px;
  padding: 60px 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 16px;
  }
}
.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
  border-left: 4px solid #3b82f6;
  padding-left: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section h2 {
    font-size: 28px;
    padding-left: 16px;
  }
}
.section p {
  color: #e5e7eb;
  line-height: 1.8;
  font-size: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #3b82f6;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 24px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.section-header .section-title {
  font-size: clamp(28px, 5vw, 42px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
  border: none;
  padding: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 28px;
  }
}
.section-header .section-tagline {
  font-size: 18px;
  color: #e5e7eb;
  line-height: 1.7;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section-header .section-tagline {
    font-size: 16px;
  }
}

.strengths {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  max-width: 100%;
  padding: 80px 24px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .strengths {
    padding: 60px 16px;
  }
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
}

.strength-card {
  background: rgba(26, 26, 26, 0.5);
  padding: 60px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .strength-card {
    padding: 32px;
    border-radius: 16px;
  }
}
.strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.05));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.strength-card:hover, .strength-card:active {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}
@media (max-width: 768px) {
  .strength-card:hover, .strength-card:active {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
  }
}
.strength-card:hover::before, .strength-card:active::before {
  opacity: 1;
}
.strength-card:hover .strength-icon, .strength-card:active .strength-icon {
  transform: scale(1.1) rotate(5deg);
  color: #3b82f6;
}
@media (max-width: 768px) {
  .strength-card:hover .strength-icon, .strength-card:active .strength-icon {
    transform: scale(1.05) rotate(3deg);
  }
}
.strength-card:hover .strength-tag, .strength-card:active .strength-tag {
  background: linear-gradient(135deg, #3b82f6, #10b981);
  color: #fff;
}
.strength-card > * {
  position: relative;
  z-index: 1;
}

.strength-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  color: rgba(59, 130, 246, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}
@media (max-width: 768px) {
  .strength-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }
}

.strength-title {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .strength-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.strength-description {
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .strength-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
}

.strength-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b82f6;
  padding: 8px 24px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .strength-tag {
    padding: 8px 16px;
    font-size: 10px;
  }
}

.founder-message {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
  border-radius: 28px;
  border: 2px solid rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}
@media (max-width: 768px) {
  .founder-message {
    padding: 40px 24px;
    margin-top: 60px;
    border-radius: 20px;
  }
}

.founder-message-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .founder-message-inner {
    flex-direction: column;
    gap: 20px;
  }
}

.founder-message-image img {
  width: 340px;
  max-width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.08);
}

.founder-message-content {
  flex: 1;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .message-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
}

.message-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #3b82f6;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 24px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
@media (max-width: 768px) {
  .message-label {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

.message-headline {
  font-size: clamp(20px, 3vw, 28px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .message-headline {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.message-content {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .message-content {
    margin-bottom: 32px;
  }
}

.message-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 24px;
}
.message-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .message-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
}

.message-footer {
  padding-top: 40px;
  border-top: 2px solid rgba(59, 130, 246, 0.2);
}
@media (max-width: 768px) {
  .message-footer {
    padding-top: 24px;
  }
}

.author-info {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .author-info {
    gap: 24px;
  }
}

.author-avatar {
  flex-shrink: 0;
  color: #3b82f6;
  opacity: 0.8;
}
.author-avatar svg {
  display: block;
}
@media (max-width: 768px) {
  .author-avatar svg {
    width: 50px;
    height: 50px;
  }
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .author-details {
    gap: 4px;
  }
}

.author-name {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .author-name {
    font-size: 18px;
  }
}

.author-role {
  font-size: 14px;
  color: #3b82f6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (max-width: 768px) {
  .author-role {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

.stats {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 60px 24px;
  max-width: 100%;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .stats {
    padding: 40px 16px;
  }
}
.stats .section-subtitle {
  font-size: clamp(22px, 4vw, 28px);
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.stat-item {
  text-align: center;
  padding: 32px;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}
.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.stat-number {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: #3b82f6;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 8px;
  font-weight: 500;
}

.stat-unit {
  font-size: 14px;
  color: #e5e7eb;
  opacity: 0.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-item {
  background: rgba(26, 26, 26, 0.5);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-item:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.25);
}
.service-item:hover::before {
  transform: scaleX(1);
}
.service-item.featured {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.05);
}
.service-item h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .service-header {
    gap: 24px;
  }
}

.service-number {
  font-size: 36px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.25);
  line-height: 1;
  font-family: "Arial", sans-serif;
}
@media (max-width: 768px) {
  .service-number {
    font-size: 28px;
  }
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.1));
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.service-icon svg {
  color: #3b82f6;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}
@media (max-width: 768px) {
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .service-icon svg {
    width: 40px;
    height: 40px;
  }
}

.service-item:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(16, 185, 129, 0.15));
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.service-title {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .service-title {
    font-size: 20px;
  }
}

.service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.service-description {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 32px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.service-features li {
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
}
.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 16px;
}

.service-link .link-arrow {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
}
.service-link .link-arrow:hover {
  transform: translateX(5px);
  color: #10b981;
}

.clients {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  max-width: 100%;
  padding: 80px 24px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .clients {
    padding: 60px 16px;
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .clients-grid {
    margin-top: 60px;
  }
}

.client-item {
  background: rgba(26, 26, 26, 0.5);
  padding: 60px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .client-item {
    padding: 32px;
    border-radius: 16px;
  }
}
.client-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.05));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.client-item:hover, .client-item:active {
  transform: translateY(-10px);
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}
@media (max-width: 768px) {
  .client-item:hover, .client-item:active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
  }
}
.client-item:hover::before, .client-item:active::before {
  opacity: 1;
}
.client-item:hover .client-icon, .client-item:active .client-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(59, 130, 246, 0.15));
  border-color: rgba(16, 185, 129, 0.5);
}
@media (max-width: 768px) {
  .client-item:hover .client-icon, .client-item:active .client-icon {
    transform: scale(1.05) rotate(-3deg);
  }
}
.client-item > * {
  position: relative;
  z-index: 1;
}
.client-item h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .client-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.client-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .client-header {
    margin-bottom: 24px;
  }
}

.client-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .client-tag {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}
.client-item:hover .client-tag, .client-item:active .client-tag {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  color: #fff;
  border-color: transparent;
}

.client-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.1));
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.client-icon svg {
  color: #10b981;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}
@media (max-width: 768px) {
  .client-icon {
    width: 50px;
    height: 50px;
  }
  .client-icon svg {
    width: 30px;
    height: 30px;
  }
}

.client-result {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  padding: 24px 32px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  display: inline-block;
  width: 100%;
}
@media (max-width: 768px) {
  .client-result {
    font-size: 16px;
    padding: 16px 24px;
    margin-bottom: 24px;
    border-radius: 8px;
  }
}
.client-result .highlight-number {
  color: #3b82f6;
  font-size: 28px;
  font-weight: 800;
  margin: 0 8px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .client-result .highlight-number {
    font-size: 22px;
    margin: 0 4px;
  }
}

.client-description {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .client-description {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
}

.client-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .client-tech {
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
  }
}

.tech-tag {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .tech-tag {
    padding: 6px 8px;
    font-size: 10px;
    border-radius: 6px;
  }
}
.tech-tag:hover, .tech-tag:active {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .tech-tag:hover, .tech-tag:active {
    transform: translateY(-1px);
  }
}

.company-overview {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  max-width: 100%;
  padding: 80px 24px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .company-overview {
    padding: 60px 16px;
  }
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.overview-image {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s;
}
@media (max-width: 768px) {
  .overview-image {
    border-radius: 16px;
  }
}
.overview-image:hover, .overview-image:active {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .overview-image:hover, .overview-image:active {
    transform: scale(1.01);
  }
}
.overview-image:hover img, .overview-image:active img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .overview-image:hover img, .overview-image:active img {
    transform: scale(1.05);
  }
}
.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .overview-image img {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
}

.overview-text p {
  margin-bottom: 32px;
  line-height: 1.8;
  font-size: 16px;
  color: #e5e7eb;
}
@media (max-width: 768px) {
  .overview-text p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
  }
}
.overview-text p:last-child {
  margin-bottom: 0;
}

.overview-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .overview-highlights {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
  }
}

.highlight-item {
  text-align: center;
  padding: 60px;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .highlight-item {
    padding: 32px;
    border-radius: 16px;
  }
}
.highlight-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.04));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.highlight-item:hover, .highlight-item:active {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}
@media (max-width: 768px) {
  .highlight-item:hover, .highlight-item:active {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
  }
}
.highlight-item:hover::before, .highlight-item:active::before {
  opacity: 1;
}
.highlight-item:hover .highlight-icon, .highlight-item:active .highlight-icon {
  transform: scale(1.15) rotate(5deg);
  color: #3b82f6;
}
@media (max-width: 768px) {
  .highlight-item:hover .highlight-icon, .highlight-item:active .highlight-icon {
    transform: scale(1.08) rotate(3deg);
  }
}
.highlight-item > * {
  position: relative;
  z-index: 1;
}
.highlight-item .highlight-icon {
  margin-bottom: 24px;
  color: rgba(59, 130, 246, 0.8);
  display: inline-flex;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlight-item .highlight-icon svg {
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}
@media (max-width: 768px) {
  .highlight-item .highlight-icon svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .highlight-item .highlight-icon {
    margin-bottom: 16px;
  }
}
.highlight-item .highlight-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .highlight-item .highlight-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.highlight-item .highlight-text {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .highlight-item .highlight-text {
    font-size: 12px;
    line-height: 1.5;
  }
}

.overview-cta {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .overview-cta {
    margin-top: 60px;
  }
}

.top-news-section {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  max-width: 100%;
  padding: 80px 24px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .top-news-section {
    padding: 60px 16px;
  }
}
.top-news-section .top-news-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 80px auto 60px;
}
.top-news-section .top-news-item {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s;
}
.top-news-section .top-news-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
}
.top-news-section .top-news-item:hover a {
  background: rgba(59, 130, 246, 0.03);
}
.top-news-section .top-news-item:hover .top-news-title {
  color: #3b82f6;
}
.top-news-section .top-news-item:hover .top-news-date {
  color: #3b82f6;
}
.top-news-section .top-news-item a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  border-radius: 8px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: -24px;
  margin-right: -24px;
}
@media (max-width: 768px) {
  .top-news-section .top-news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.top-news-section .top-news-date {
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  min-width: 120px;
  font-family: "Arial", sans-serif;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .top-news-section .top-news-date {
    min-width: auto;
  }
}
.top-news-section .top-news-title {
  color: #fff;
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}
.top-news-section .top-news-more {
  text-align: center;
  margin-top: 40px;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  border-radius: 12px;
  max-width: 100%;
  padding: 80px 24px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta {
    padding: 32px 8px;
    word-break: break-word;
    hyphens: auto;
  }
}
.cta .section-header {
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 768px) {
  .cta .section-header {
    font-size: 16px;
  }
}
.cta h2 {
  border: none;
  padding: 0;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cta h2 {
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .cta .section-tagline {
    font-size: 14px;
    line-height: 1.7;
  }
}

.cta-buttons {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    width: 100%;
  }
}
.cta-buttons .button.primary,
.cta-buttons .button.ghost {
  background: #fff;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.cta-buttons .button.primary:hover, .cta-buttons .button.primary:focus,
.cta-buttons .button.ghost:hover,
.cta-buttons .button.ghost:focus {
  background: #3b82f6;
  color: #fff;
  border-color: #2563eb;
}
.cta-buttons .button.ghost {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  max-width: 100%;
  padding: 80px 24px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 60px 16px;
  }
}
.contact .container .contact-info {
  text-align: center;
  margin: 60px 0 80px;
  padding: 32px;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 16px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s;
}
.contact .container .contact-info:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.contact-response {
  font-size: 18px;
  color: #e5e7eb;
  margin: 0;
}
.contact-response .highlight-text {
  color: #3b82f6;
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 8px;
}
@media (max-width: 768px) {
  .contact-response {
    font-size: 16px;
  }
  .contact-response .highlight-text {
    font-size: 18px;
  }
}

.contact-form {
  background: rgba(26, 26, 26, 0.3);
  padding: 80px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.contact-form:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .contact-form {
    padding: 24px 16px;
  }
}
.contact-form .wpcf7-form p {
  margin-bottom: 32px;
}
.contact-form .wpcf7-form p:last-child {
  margin-bottom: 0;
}
.contact-form .wpcf7-form label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
}
.contact-form .wpcf7-form label .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.contact-form .wpcf7-form input[type=text],
.contact-form .wpcf7-form input[type=email],
.contact-form .wpcf7-form input[type=tel],
.contact-form .wpcf7-form textarea {
  width: 100%;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .contact-form .wpcf7-form input[type=text],
  .contact-form .wpcf7-form input[type=email],
  .contact-form .wpcf7-form input[type=tel],
  .contact-form .wpcf7-form textarea {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
  }
}
.contact-form .wpcf7-form input[type=text]:focus,
.contact-form .wpcf7-form input[type=email]:focus,
.contact-form .wpcf7-form input[type=tel]:focus,
.contact-form .wpcf7-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.contact-form .wpcf7-form input[type=text]::placeholder,
.contact-form .wpcf7-form input[type=email]::placeholder,
.contact-form .wpcf7-form input[type=tel]::placeholder,
.contact-form .wpcf7-form textarea::placeholder {
  color: rgba(229, 231, 235, 0.5);
}
.contact-form .wpcf7-form textarea {
  min-height: 120px;
}
@media (max-width: 768px) {
  .contact-form .wpcf7-form textarea {
    min-height: 80px;
  }
}
.contact-form .wpcf7-form textarea {
  resize: vertical;
}
.contact-form .wpcf7-form input[type=submit] {
  width: 100%;
  padding: 24px 40px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.contact-form .wpcf7-form input[type=submit]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.contact-form .wpcf7-form input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}
.contact-form .wpcf7-form input[type=submit]:active {
  transform: translateY(0);
}
.contact-form .wpcf7-form input[type=submit]:active::before {
  width: 300px;
  height: 300px;
}
@media (max-width: 768px) {
  .contact-form .wpcf7-form input[type=submit] {
    font-size: 16px;
    padding: 24px 40px;
  }
}
.contact-form .wpcf7-form .wpcf7-spinner {
  display: none;
}
.contact-form .wpcf7-form .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 8px;
  animation: shake 0.5s;
}
.contact-form .wpcf7-form .wpcf7-response-output {
  margin-top: 32px;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  animation: slideDown 0.4s ease-out;
}
.contact-form .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border: 2px solid rgba(255, 107, 107, 0.3);
}
.contact-form .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(81, 207, 102, 0.1);
  color: #51cf66;
  border: 2px solid rgba(81, 207, 102, 0.3);
}

.privacy-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 16px 0;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .privacy-checkbox-label {
    font-size: 14px;
    flex-wrap: wrap;
  }
}
.privacy-checkbox-label .privacy-checkbox {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: #3b82f6;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .privacy-checkbox-label .privacy-checkbox {
    width: 20px;
    height: 20px;
    transform: scale(1);
  }
}
.privacy-checkbox-label .privacy-checkbox:checked {
  animation: checkPulse 0.3s ease-out;
}
.privacy-checkbox-label label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.privacy-checkbox-label label:hover {
  color: #3b82f6;
}
.privacy-checkbox-label a {
  color: #3b82f6;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.2s;
}
.privacy-checkbox-label a:hover {
  color: #10b981;
  text-decoration: none;
}

.wpcf7-acceptance {
  display: flex;
  justify-content: center;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: #3b82f6;
  transform: scale(1.2);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
    width: 20px;
    height: 20px;
    transform: scale(1);
  }
}
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:checked {
  animation: checkPulse 0.3s ease-out;
}
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 14px;
  }
}
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label a {
  color: #3b82f6;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.2s;
}
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label a:hover {
  color: #10b981;
  text-decoration: none;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  max-width: 1200px;
  margin: 0 auto 60px;
  scroll-margin-top: 80px;
  padding: 60px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
    margin-bottom: 0;
  }
}
.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
  border-left: 4px solid #3b82f6;
  padding-left: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section h2 {
    font-size: 28px;
    padding-left: 16px;
  }
}
.section p {
  color: #e5e7eb;
  line-height: 1.8;
  font-size: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #3b82f6;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 24px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.section-header .section-title {
  font-size: clamp(28px, 5vw, 42px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 24px;
  border: none;
  padding: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-header .section-title {
    font-size: 28px;
  }
}
.section-header .section-tagline {
  font-size: 18px;
  color: #e5e7eb;
  line-height: 1.7;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section-header .section-tagline {
    font-size: 16px;
  }
}

.button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}
.button.primary {
  background: #3b82f6;
  color: white;
}
.button.primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}
.button.ghost {
  border-color: #3b82f6;
  color: #3b82f6;
}
.button.ghost:hover {
  background: #3b82f6;
  color: white;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 30px;
  transition: all 0.3s;
}
.faq-item summary:hover {
  color: #3b82f6;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #3b82f6;
  font-size: 24px;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: #2563eb;
  transform: translateY(-5px);
}

.company-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.company-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.34);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-hero__content h2 {
  margin-bottom: 24px;
  border: 0;
  padding: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
}
.company-hero__content p {
  color: #d1d5db;
  line-height: 1.9;
}

.company-hero__actions {
  justify-content: flex-start;
}

.company-hero__visual {
  position: relative;
}
.company-hero__visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.company-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: -64px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.company-metric-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(96, 165, 250, 0.24);
}
.company-metric-card span {
  display: block;
  color: #93c5fd;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.company-metric-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.company-metric-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}

.company-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.company-summary-card,
.company-access__card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92) 0%, rgba(5, 10, 20, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}
.company-summary-card h3,
.company-access__card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}
.company-summary-card p,
.company-summary-card li,
.company-access__card p,
.company-access__card li {
  color: #d1d5db;
  line-height: 1.8;
}

.company-profile__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(15, 23, 42, 0.92) 45%, rgba(3, 7, 18, 0.96) 100%);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.company-profile__table {
  display: grid;
  gap: 0;
}

.company-profile__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.company-profile__row:last-child {
  border-bottom: 0;
}
.company-profile__row dt {
  color: #93c5fd;
  font-weight: 700;
}
.company-profile__row dd {
  margin: 0;
  color: #e5e7eb;
  line-height: 1.8;
}
.company-profile__row a {
  color: #bfdbfe;
  text-decoration: underline;
}

.company-profile__note {
  padding: 24px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.66);
  border: 1px solid rgba(96, 165, 250, 0.16);
}
.company-profile__note h3 {
  margin-bottom: 12px;
  font-size: 22px;
}
.company-profile__note p {
  color: #d1d5db;
  line-height: 1.9;
}

.company-access__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.company-access__card ul {
  display: grid;
  gap: 10px;
}

.company-access__card--highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14) 0%, rgba(15, 23, 42, 0.9) 70%, rgba(2, 6, 23, 0.96) 100%);
}

.company-cta {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .company-hero__grid,
  .company-profile__panel,
  .company-summary__grid,
  .company-access__grid {
    grid-template-columns: 1fr;
  }
  .company-hero__metrics {
    margin-top: 20px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .company-hero__visual img {
    min-height: 280px;
  }
  .company-hero__metrics {
    grid-template-columns: 1fr;
  }
  .company-profile__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .company-summary-card,
  .company-access__card,
  .company-profile__panel,
  .company-profile__note,
  .company-metric-card {
    padding: 24px;
  }
}
.engineer-training-hero {
  margin-top: 0;
}

.engineer-training-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.engineer-training-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.engineer-training-hero__content h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  border: 0;
  padding: 0;
}
.engineer-training-hero__content p {
  max-width: 720px;
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.9;
}

.engineer-training-intro {
  max-width: 720px;
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.9;
}

.engineer-training-hero__actions {
  justify-content: flex-start;
}

.engineer-training-hero__visual {
  position: relative;
}
.engineer-training-hero__visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.engineer-training-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: -64px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.metric-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.metric-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}
.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1.1;
}

.metric-card__label {
  display: block;
  margin-bottom: 10px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-chip-grid,
.training-phase-grid,
.training-support-grid,
.training-recommend-grid {
  display: grid;
  gap: 24px;
}

.training-chip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.training-chip-card,
.training-phase-card,
.training-support-card,
.training-recommend-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92) 0%, rgba(5, 10, 20, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}
.training-chip-card h3,
.training-phase-card h3,
.training-support-card h3,
.training-recommend-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}
.training-chip-card p,
.training-phase-card p,
.training-support-card p,
.training-recommend-card p {
  margin: 0;
  color: #d1d5db;
}

.training-chip-card {
  position: relative;
  overflow: hidden;
  transition: transform all 0.3s, border-color all 0.3s, box-shadow all 0.3s;
}
.training-chip-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
}
.training-chip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.training-chip-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: rgba(59, 130, 246, 0.14);
  color: #bfdbfe;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.18);
}
.training-chip-card__icon svg {
  width: 42px;
  height: 42px;
  display: block;
}
.training-chip-card__icon i {
  font-size: 42px;
  line-height: 1;
  display: block;
}

.training-chip-card--php {
  border-color: rgba(119, 123, 179, 0.2);
}
.training-chip-card--php::before {
  background: linear-gradient(90deg, #777bb3 0%, #aeb2d5 100%);
}
.training-chip-card--php .training-chip-card__icon {
  background: rgba(119, 123, 179, 0.16);
  color: #777bb3;
  box-shadow: inset 0 0 0 1px rgba(119, 123, 179, 0.35);
}
.training-chip-card--php h3 {
  color: #c7cdf6;
}

.training-chip-card--react {
  border-color: rgba(97, 218, 251, 0.22);
}
.training-chip-card--react::before {
  background: linear-gradient(90deg, #61dafb 0%, #8be7ff 100%);
}
.training-chip-card--react .training-chip-card__icon {
  background: rgba(97, 218, 251, 0.14);
  color: #61dafb;
  box-shadow: inset 0 0 0 1px rgba(97, 218, 251, 0.35);
}
.training-chip-card--react h3 {
  color: #b8f0ff;
}

.training-chip-card--java {
  border-color: rgba(248, 152, 32, 0.22);
}
.training-chip-card--java::before {
  background: linear-gradient(90deg, #f89820 0%, #ed8b00 100%);
}
.training-chip-card--java .training-chip-card__icon {
  background: rgba(248, 152, 32, 0.14);
  color: #f89820;
  box-shadow: inset 0 0 0 1px rgba(248, 152, 32, 0.35);
}
.training-chip-card--java h3 {
  color: #ffd29a;
}

.training-chip-card--python {
  border-color: rgba(55, 118, 171, 0.22);
}
.training-chip-card--python::before {
  background: linear-gradient(90deg, #3776ab 0%, #ffd43b 100%);
}
.training-chip-card--python .training-chip-card__icon {
  background: linear-gradient(135deg, rgba(55, 118, 171, 0.18) 0%, rgba(255, 212, 59, 0.14) 100%);
  color: #ffd43b;
  box-shadow: inset 0 0 0 1px rgba(55, 118, 171, 0.35);
}
.training-chip-card--python h3 {
  color: #ffe27a;
}

.training-phase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.training-phase-card {
  position: relative;
  overflow: hidden;
}
.training-phase-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.training-phase-card__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.training-phase-card__step {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.training-phase-card__lead {
  margin-bottom: 20px;
}

.training-phase-card__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: #e5e7eb;
}
.training-phase-card__list li:last-child {
  margin-bottom: 0;
}
.training-phase-card__list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
}

.training-price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(15, 23, 42, 0.92) 45%, rgba(3, 7, 18, 0.96) 100%);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.training-price-panel__copy {
  display: grid;
  gap: 16px;
}

.training-price-panel__note {
  font-size: 14px;
  color: #93c5fd;
}

.training-price-table-wrap {
  overflow-x: auto;
}

.training-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: rgba(2, 6, 23, 0.78);
  border-radius: 20px;
  overflow: hidden;
}
.training-price-table th,
.training-price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.training-price-table thead th {
  background: rgba(59, 130, 246, 0.18);
  color: #eff6ff;
  font-weight: 700;
}
.training-price-table tbody th {
  width: 120px;
  color: #fff;
}
.training-price-table tbody td {
  color: #dbeafe;
}
.training-price-table tbody tr:last-child th,
.training-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.training-support-grid,
.training-recommend-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.training-support-flow {
  display: grid;
  gap: 40px;
  margin-top: 32px;
}

.training-support-step {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(15, 23, 42, 0.92) 45%, rgba(3, 7, 18, 0.96) 100%);
  border: 1px solid rgba(96, 165, 250, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.training-support-step--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.training-support-step--reverse .training-support-step__visual {
  order: 2;
}
.training-support-step--reverse .training-support-step__content {
  order: 1;
}

.training-support-step__visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.training-support-step__label {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.training-support-step__content h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
}
.training-support-step__content p {
  margin-bottom: 14px;
}
.training-support-step__content ul {
  display: grid;
  gap: 10px;
}
.training-support-step__content li {
  position: relative;
  padding-left: 18px;
  color: #e2e8f0;
  line-height: 1.75;
}
.training-support-step__content li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
}

.training-support-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.training-support-points__item {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(96, 165, 250, 0.2);
  color: #dbeafe;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

.engineer-training-cta {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .engineer-training-hero__grid,
  .training-price-panel {
    grid-template-columns: 1fr;
  }
  .training-chip-grid,
  .training-phase-grid,
  .training-support-grid,
  .training-recommend-grid {
    grid-template-columns: 1fr 1fr;
  }
  .training-support-step,
  .training-support-step--reverse {
    grid-template-columns: 1fr;
  }
  .training-support-step .training-support-step__visual,
  .training-support-step .training-support-step__content,
  .training-support-step--reverse .training-support-step__visual,
  .training-support-step--reverse .training-support-step__content {
    order: initial;
  }
  .training-support-points {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .engineer-training-hero__content h2 {
    font-size: 34px;
  }
  .engineer-training-hero__visual img {
    min-height: 280px;
  }
  .engineer-training-hero__metrics {
    grid-template-columns: 1fr;
    margin-top: 20px;
    padding: 0;
  }
  .engineer-training-hero__actions {
    align-items: stretch;
  }
  .training-chip-grid,
  .training-phase-grid,
  .training-support-grid,
  .training-recommend-grid {
    grid-template-columns: 1fr;
  }
  .training-chip-card,
  .training-phase-card,
  .training-support-card,
  .training-recommend-card,
  .training-price-panel,
  .training-support-step {
    padding: 24px;
  }
  .training-price-table {
    min-width: 100%;
  }
  .training-price-table th,
  .training-price-table td {
    padding: 14px 12px;
    font-size: 14px;
  }
}
.ses-intro {
  max-width: 760px;
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.9;
}

.ses-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
}

.ses-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(196, 181, 253, 0.34);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ses-hero__content h2 {
  margin-bottom: 24px;
  border: 0;
  padding: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
}
.ses-hero__content p {
  color: #d1d5db;
  line-height: 1.9;
}

.ses-hero__actions {
  justify-content: flex-start;
}

.ses-hero__visual {
  position: relative;
}
.ses-hero__visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.ses-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: -64px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.ses-metric {
  padding: 24px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(167, 139, 250, 0.3);
}
.ses-metric span {
  display: block;
  color: #c4b5fd;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ses-metric strong {
  display: block;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.ses-metric p {
  margin: 0;
  color: #ddd6fe;
  font-size: 14px;
}

.ses-feature-grid,
.ses-style-grid,
.ses-case-grid {
  display: grid;
  gap: 24px;
}

.ses-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ses-style-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ses-card,
.ses-style-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.55) 0%, rgba(6, 8, 24, 0.96) 100%);
  border: 1px solid rgba(196, 181, 253, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}
.ses-card h3,
.ses-style-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}
.ses-card p,
.ses-style-card p {
  margin: 0;
  color: #ddd6fe;
  line-height: 1.8;
}

.ses-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ses-tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: rgba(30, 27, 75, 0.42);
  color: #ede9fe;
}
.ses-tech-item i {
  font-size: 24px;
  color: #a78bfa;
}
.ses-tech-item span {
  font-size: 14px;
  font-weight: 600;
}

.ses-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ses-flow-step {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: rgba(30, 27, 75, 0.36);
}
.ses-flow-step .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.24);
  color: #ddd6fe;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.ses-flow-step h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.ses-flow-step p {
  margin: 0;
  color: #ddd6fe;
  font-size: 14px;
  line-height: 1.8;
}

.ses-pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(30, 27, 75, 0.7) 55%, rgba(4, 6, 18, 0.96) 100%);
  border: 1px solid rgba(196, 181, 253, 0.22);
}
.ses-pricing-panel p {
  margin: 0;
  color: #e9e5ff;
  line-height: 1.9;
}
.ses-pricing-panel ul {
  display: grid;
  gap: 12px;
}
.ses-pricing-panel li {
  position: relative;
  padding-left: 18px;
  color: #ddd6fe;
}
.ses-pricing-panel li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
}

.ses-case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ses-case {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(196, 181, 253, 0.25);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(30, 27, 75, 0.68) 50%, rgba(4, 6, 18, 0.96) 100%);
}
.ses-case h3 {
  margin-bottom: 14px;
  font-size: 24px;
}
.ses-case p {
  margin-bottom: 8px;
  color: #ddd6fe;
  line-height: 1.75;
}
.ses-case strong {
  display: block;
  margin-top: 12px;
  color: #c4b5fd;
  font-size: 18px;
}

.ses-cta {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .ses-hero__grid,
  .ses-flow-grid,
  .ses-pricing-panel {
    grid-template-columns: 1fr;
  }
  .ses-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ses-feature-grid,
  .ses-style-grid,
  .ses-case-grid {
    grid-template-columns: 1fr;
  }
  .ses-hero__metrics {
    margin-top: 20px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .ses-hero__visual img {
    min-height: 280px;
  }
  .ses-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ses-hero__metrics {
    grid-template-columns: 1fr;
  }
  .ses-card,
  .ses-style-card,
  .ses-case,
  .ses-flow-step,
  .ses-pricing-panel,
  .ses-metric {
    padding: 24px;
  }
}
.system-dev-intro {
  max-width: 760px;
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.9;
}

.system-dev-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
}

.system-dev-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.34);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-dev-hero__content h2 {
  margin-bottom: 24px;
  border: 0;
  padding: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
}
.system-dev-hero__content p {
  color: #d1d5db;
  line-height: 1.9;
}

.system-dev-hero__actions {
  justify-content: flex-start;
}

.system-dev-hero__visual {
  position: relative;
}
.system-dev-hero__visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.system-dev-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: -64px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.system-dev-metric {
  padding: 24px;
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(96, 165, 250, 0.24);
}
.system-dev-metric span {
  display: block;
  color: #93c5fd;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.system-dev-metric strong {
  display: block;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.system-dev-metric p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
}

.system-dev-domain-grid,
.system-dev-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.system-dev-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92) 0%, rgba(5, 10, 20, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}
.system-dev-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}
.system-dev-card p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.8;
}

.system-dev-card--domain {
  position: relative;
  overflow: hidden;
  transition: transform all 0.3s, border-color all 0.3s, box-shadow all 0.3s;
}
.system-dev-card--domain::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa 0%, #22d3ee 100%);
}
.system-dev-card--domain:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.system-dev-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.system-dev-card__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.16);
  border: 1px solid rgba(125, 211, 252, 0.35);
}
.system-dev-card__icon i {
  font-size: 24px;
  color: #7dd3fc;
}

.system-dev-card__meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.system-dev-card__meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: rgba(15, 23, 42, 0.88);
  color: #bfdbfe;
  font-size: 12px;
  line-height: 1;
}

.system-dev-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.system-dev-stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(15, 23, 42, 0.8);
  color: #dbeafe;
}
.system-dev-stack-item i {
  font-size: 24px;
  color: #60a5fa;
}
.system-dev-stack-item span {
  font-size: 14px;
  font-weight: 600;
}

.system-dev-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.system-dev-process-step {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  background: rgba(15, 23, 42, 0.82);
}
.system-dev-process-step .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.system-dev-process-step h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.system-dev-process-step p {
  margin-bottom: 10px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.8;
}
.system-dev-process-step small {
  color: #93c5fd;
  font-size: 12px;
  line-height: 1.6;
}

.system-dev-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.system-dev-case {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(15, 23, 42, 0.92) 50%, rgba(2, 6, 23, 0.96) 100%);
}
.system-dev-case h3 {
  margin-bottom: 14px;
  font-size: 24px;
}
.system-dev-case p {
  margin-bottom: 8px;
  color: #d1d5db;
  line-height: 1.75;
}
.system-dev-case strong {
  display: block;
  margin-top: 12px;
  color: #67e8f9;
  font-size: 18px;
}

.system-dev-cta {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .system-dev-hero__grid,
  .system-dev-process-grid {
    grid-template-columns: 1fr;
  }
  .system-dev-stack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .system-dev-domain-grid,
  .system-dev-quality-grid,
  .system-dev-case-grid {
    grid-template-columns: 1fr;
  }
  .system-dev-hero__metrics {
    margin-top: 20px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .system-dev-hero__visual img {
    min-height: 280px;
  }
  .system-dev-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .system-dev-hero__metrics {
    grid-template-columns: 1fr;
  }
  .system-dev-card,
  .system-dev-case,
  .system-dev-process-step,
  .system-dev-metric {
    padding: 24px;
  }
}
.archive-content {
  min-height: 60vh;
  padding-bottom: 40px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  border-top: 1px solid #eee;
}

.news-list-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.news-list-item .news-date {
  color: #eee;
  font-size: 0.95em;
  margin-right: 24px;
  min-width: 90px;
  display: inline-block;
}
.news-list-item .news-title {
  color: #eee;
  font-weight: 500;
  font-size: 1.05em;
  transition: color 0.2s;
}
.news-list-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
}
.news-list-item a:hover .news-title {
  color: #007acc;
  text-decoration: underline;
}

.news-detail-content {
  min-height: 60vh;
  padding-bottom: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.news-detail {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 40px 32px 32px 32px;
  margin-bottom: 32px;
}

.news-detail-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.news-detail-date {
  color: #888;
  font-size: 0.98em;
  margin-bottom: 24px;
  display: block;
}

.news-detail-body {
  font-size: 1.08em;
  line-height: 1.8;
  color: #222;
}

.back-link {
  text-align: right;
  margin-top: 24px;
}
.back-link a {
  color: #007acc;
  text-decoration: underline;
  font-size: 1em;
}
.back-link a:hover {
  text-decoration: none;
  color: #005fa3;
}

@media (max-width: 600px) {
  .news-detail {
    padding: 24px 10px 20px 10px;
  }
  .news-detail-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  background: rgba(26, 26, 26, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.privacy-policy h2,
.privacy-policy h3 {
  color: #3b82f6;
  margin-top: 40px;
  margin-bottom: 24px;
  font-weight: 700;
  text-align: left;
}
.privacy-policy h2 {
  font-size: 2rem;
  border-left: 6px solid #3b82f6;
  padding-left: 24px;
  margin-bottom: 32px;
}
.privacy-policy h3 {
  font-size: 1.2rem;
  border-left: 4px solid #10b981;
  padding-left: 16px;
  margin-bottom: 16px;
}
.privacy-policy p,
.privacy-policy li {
  color: #e5e7eb;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 24px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.privacy-policy ul,
.privacy-policy ol {
  margin-left: 32px;
  margin-bottom: 24px;
  padding-left: 24px;
}
.privacy-policy a {
  color: #3b82f6;
  text-decoration: underline;
}
.privacy-policy a:hover {
  text-decoration: none;
  color: #10b981;
}
@media (max-width: 768px) {
  .privacy-policy {
    padding: 40px 8px;
  }
  .privacy-policy h2 {
    font-size: 1.4rem;
  }
  .privacy-policy h3 {
    font-size: 1rem;
  }
  .privacy-policy p,
  .privacy-policy li {
    text-align: left;
  }
}

.privacy-link {
  text-align: center;
  margin-top: 2rem;
  font-size: 14px;
  color: #e5e7eb;
}
.privacy-link a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.privacy-link a:hover, .privacy-link a:focus {
  color: #10b981;
  text-decoration: none;
}

.footer {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(16, 185, 129, 0.12));
  backdrop-filter: blur(12px);
  border-top: none;
  box-shadow: 0 -8px 32px rgba(59, 130, 246, 0.1);
  color: #e5e7eb;
  padding: 120px 32px 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 8px 24px;
  }
}

.footer-content {
  max-width: 480px;
  margin: 0 auto 80px;
  padding: 100px 60px;
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-content {
    padding: 32px 8px;
    border-radius: 20px;
    text-align: center;
  }
}

.company-info .footer-logo {
  margin-bottom: 32px;
}
.company-info .footer-logo img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.company-info .company-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #3b82f6;
  letter-spacing: 0.05em;
}
.company-info .slogan {
  font-size: 16px;
  color: #10b981;
  margin-bottom: 24px;
  font-weight: 500;
}
.company-info .company-description {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 0;
  line-height: 1.7;
}

.copyright {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: rgba(229, 231, 235, 0.7);
}
.copyright p {
  margin: 0;
}

@media (max-width: 1024px) {
  .overview-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .fv {
    height: 60vh;
    min-height: 400px;
  }
  .fv-title {
    font-size: 36px;
  }
  .fv-tagline {
    font-size: 16px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    text-align: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .page-header {
    padding-top: 60px;
    padding-right: 16px;
    padding-bottom: 40px;
    padding-left: 16px;
  }
  .page-title {
    font-size: 36px;
  }
  .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 32px;
  }
  .post-header .post-title {
    font-size: 28px;
  }
  .post-navigation {
    grid-template-columns: 1fr;
  }
  .nav-next {
    text-align: left;
  }
  .contact-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrapper {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 1400px) {
  .fv-title {
    font-size: 64px;
  }
  .fv-tagline {
    font-size: 22px;
  }
}