/* ============================================================
   FirstCloud Vietnam — main.css
   Shared styles for all pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Exo+2:wght@700;800;900&display=swap');

/* ============================================================
   Reset & Variables
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #080c14;
  --white:       #f4f6fb;
  --cream:       #edf1f8;
  --accent:      #74ACDF;
  --accent-dark: #2a6faa;
  --mid:         #6b7280;
  --border:      rgba(0,0,0,0.09);
  --font-logo:   'Exo 2', sans-serif;
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --nav-h:       80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

.page-wrap { overflow-x: hidden; }

/* ============================================================
   Custom Cursor
   ============================================================ */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: width 0.2s, height 0.2s, background 0.2s;
  will-change: transform;
}
.cursor-ring {
  width: 36px; height: 36px;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: width 0.25s, height 0.25s, margin 0.25s;
  will-change: transform;
}
.cursor-ring::before, .cursor-ring::after,
.cursor-tl, .cursor-br {
  content: ''; position: absolute;
  width: 8px; height: 8px;
  border-color: var(--accent-dark);
  border-style: solid;
  transition: all 0.25s ease;
}
.cursor-ring::before { top: 0; left: 0;  border-width: 1.5px 0 0 1.5px; }
.cursor-ring::after  { top: 0; right: 0; border-width: 1.5px 1.5px 0 0; }
.cursor-tl { bottom: 0; left: 0;  border-width: 0 0 1.5px 1.5px; }
.cursor-br { bottom: 0; right: 0; border-width: 0 1.5px 1.5px 0; }

body.cursor-hover .cursor { width: 6px; height: 6px; background: #fff; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; margin-top: -10px; margin-left: -10px; }
body.cursor-hover .cursor-ring::before, body.cursor-hover .cursor-ring::after,
body.cursor-hover .cursor-tl, body.cursor-hover .cursor-br {
  border-color: var(--accent); width: 11px; height: 11px;
}

/* ============================================================
   Logo SVG Mark (inline via HTML; CSS animations here)
   ============================================================ */
.logo-mark {
  width: 40px; height: 40px; flex-shrink: 0;
}
.logo-orbit-group {
  animation: orbitSpin 18s linear infinite;
  transform-origin: 50% 50%;
}
.logo-inner-ring {
  animation: orbitSpin 12s linear infinite reverse;
  transform-origin: 50% 50%;
}
.logo-center-node {
  animation: centerPulse 2.4s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes centerPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.35); opacity: 0.7; }
}

/* ============================================================
   Navigation
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(237,241,248,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: var(--font-logo);
  font-weight: 900; font-size: 20px;
  letter-spacing: -0.03em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--accent); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-slogan {
  font-family: var(--font-body);
  font-size: 8.5px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links > li > a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--mid); text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s; position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links > li > a:hover { color: var(--black); }
.nav-links > li > a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px !important; font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

/* Dropdown trigger */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex !important; align-items: center; gap: 5px;
}
.chevron {
  display: inline-block; width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s; flex-shrink: 0;
}
.nav-dropdown.open > a .chevron,
.nav-dropdown:hover > a .chevron { transform: rotate(225deg) translateY(-2px); }

.dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--black); border-radius: 16px; padding: 10px;
  min-width: 270px; opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200; box-shadow: 0 28px 64px rgba(0,0,0,0.22);
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--black); border-radius: 2px;
}
.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Mega dropdown (Services) */
.dropdown-menu.mega {
  min-width: 560px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; left: -40px; transform: translateY(10px);
}
.nav-dropdown:hover .dropdown-menu.mega,
.nav-dropdown.open .dropdown-menu.mega {
  transform: translateY(0);
}
.dropdown-menu.mega::before { left: 80px; }

.dropdown-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 14px; border-radius: 10px;
  text-decoration: none; transition: background 0.15s;
}
.dropdown-item::after { display: none !important; }
.dropdown-item:hover { background: rgba(255,255,255,0.07); }
.dropdown-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
  transition: background 0.15s;
}
.dropdown-item:hover .dropdown-icon { background: var(--accent); }
.dropdown-item.active .dropdown-icon { background: var(--accent); }
.dropdown-label {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.85); display: block; letter-spacing: 0.01em;
}
.dropdown-sub {
  font-family: var(--font-body); font-size: 11px;
  color: rgba(255,255,255,0.35); display: block; margin-top: 1px;
}
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 6px 14px; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black); transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--black); z-index: 99;
  padding: var(--nav-h) 32px 40px;
  flex-direction: column; gap: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-section { margin-top: 8px; }
.mobile-nav-section h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 12px; margin-top: 20px;
}

/* ============================================================
   Shared Typography
   ============================================================ */
h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
}
h3 { font-family: var(--font-head); }

.section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}

.eyebrow-line { width: 32px; height: 1px; background: var(--accent); }

/* ============================================================
   Shared Buttons
   ============================================================ */
.btn-primary {
  background: var(--black); color: var(--white);
  padding: 16px 32px; border-radius: 100px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translate(3px,-3px); }

.btn-ghost {
  color: var(--black); font-size: 14px; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--black); padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { gap: 14px; color: var(--accent); border-color: var(--accent); }

.btn-white {
  background: var(--white); color: var(--black);
  padding: 16px 32px; border-radius: 100px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: var(--accent); color: white; transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  padding: 14px 28px; border-radius: 100px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   Scroll Reveal
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1),
              transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  padding: calc(var(--nav-h) + 20px) 48px 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--mid);
}
.breadcrumb a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--accent); font-weight: 500; }

/* ============================================================
   CTA Section (shared across pages)
   ============================================================ */
.cta-section {
  margin: 0 48px 80px;
  background: var(--black); border-radius: 24px;
  padding: 80px; display: flex; align-items: center;
  justify-content: space-between; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(116,172,223,0.14) 0%, transparent 60%);
}
.cta-section h2 {
  color: var(--white); font-size: clamp(32px, 3.5vw, 48px);
  max-width: 520px; position: relative; z-index: 2;
}
.cta-section h2 em { color: var(--accent); font-style: italic; }
.cta-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 14px;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--black);
  padding: 72px 48px 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 18px; display: block; }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.4);
  line-height: 1.7; max-width: 280px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-badge {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

/* ============================================================
   Marquee Strip
   ============================================================ */
.marquee-strip {
  background: var(--black); padding: 18px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-inner {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 20px; padding: 0 40px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
/* page-hero: padded section wrapper */
.page-hero {
  padding: calc(var(--nav-h) + 40px) 48px 80px;
}

/* page-hero-inner: the actual 2-col grid */
.page-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}

/* service-hero: 2-col grid section (used by devops, managed-it, data-analytics) */
.service-hero {
  padding: calc(var(--nav-h) + 40px) 48px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}

/* Section variant aliases (some pages use -section suffix) */
.included-section {
  padding: 100px 48px; background: var(--white);
}
.approach-section { padding: 100px 48px; }
.tech-section     { padding: 100px 48px; background: var(--white); }
.faq-section      { padding: 100px 48px; }
.migration-paths-section { padding: 100px 48px; }
.page-hero.centered {
  grid-template-columns: 1fr; max-width: 760px; text-align: center;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(44px, 5vw, 76px);
  font-weight: 800; line-height: 0.97; letter-spacing: -0.03em; margin-bottom: 28px;
}
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero-sub {
  font-size: 17px; line-height: 1.65; color: var(--mid); max-width: 460px; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Hero Visual Panel */
.hero-visual {
  background: var(--black); border-radius: 20px;
  padding: 48px; position: relative; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: center;
}
.hero-visual-grid {
  position: absolute; inset: 0; border-radius: 20px;
  background-image:
    linear-gradient(rgba(116,172,223,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116,172,223,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Shared diagram components */
.diag-box {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 14px 16px;
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.6); position: relative;
}
.diag-box.highlight { border-color: rgba(116,172,223,0.4); background: rgba(116,172,223,0.08); }
.diag-box-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.diag-box-val { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.diag-row { display: flex; align-items: center; gap: 12px; }
.diag-arrow {
  color: var(--accent); font-size: 18px; flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { opacity: 0.4; transform: translateX(0); }
  50%      { opacity: 1;   transform: translateX(4px); }
}
.diag-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-live .status-dot   { background: #4ade80; animation: pulseDot 2s infinite; }
.status-live               { color: #4ade80; }
.status-active .status-dot { background: var(--accent); animation: pulseDot 1.5s infinite; }
.status-active             { color: var(--accent); }

@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.5); opacity: 0.7; }
}

.platform-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; position: relative; z-index: 2; }
.chip {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.chip:hover, .chip.active {
  background: rgba(116,172,223,0.15); border-color: var(--accent); color: var(--accent);
}

/* ============================================================
   Section: What's Included / Capability Cards
   ============================================================ */
.included { padding: 100px 48px; background: var(--white); }
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.included-card {
  background: var(--cream); border-radius: 16px; padding: 36px 32px;
  border: 1px solid transparent; transition: border-color 0.3s, transform 0.3s;
}
.included-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.included-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.included-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.included-desc { font-size: 14px; line-height: 1.65; color: var(--mid); }

/* ============================================================
   Section: Approach / Strategy Cards
   ============================================================ */
.approach { padding: 100px 48px; }
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; margin-top: 56px;
}
.approach-card {
  background: var(--cream); padding: 44px 36px;
  transition: background 0.3s;
}
.approach-card:hover { background: var(--black); }
.approach-card:hover .approach-title,
.approach-card:hover .approach-desc,
.approach-card:hover .approach-num { color: var(--white); }
.approach-card:hover .approach-features li { color: rgba(255,255,255,0.55); }
.approach-badge {
  display: inline-block; background: rgba(116,172,223,0.12);
  color: var(--accent); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 20px; border: 1px solid rgba(116,172,223,0.25);
}
.approach-num {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--mid); margin-bottom: 12px; transition: color 0.3s;
}
.approach-title {
  font-family: var(--font-head); font-size: 21px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px; transition: color 0.3s;
}
.approach-desc { font-size: 14px; line-height: 1.65; color: var(--mid); transition: color 0.3s; }
.approach-features {
  list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 8px;
}
.approach-features li {
  font-size: 13px; color: var(--mid);
  display: flex; align-items: center; gap: 8px; transition: color 0.3s;
}
.approach-features li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ============================================================
   Section: Process Timeline
   ============================================================ */
.process-section { padding: 100px 48px; background: var(--black); }
.process-section .section-tag { color: var(--accent); }
.process-section h2 { color: var(--white); margin-bottom: 56px; }

.process-timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); position: relative;
}
.process-timeline.steps-4 { grid-template-columns: repeat(4, 1fr); }
.process-timeline.steps-6 { grid-template-columns: repeat(6, 1fr); }
.process-timeline::before {
  content: ''; position: absolute; top: 27px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116,172,223,0.3) 20%, rgba(116,172,223,0.3) 80%, transparent);
}
.tl-step { padding: 0 16px; }
.tl-num {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--white); margin-bottom: 24px; position: relative; z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}
.tl-step:hover .tl-num { background: var(--accent); border-color: var(--accent); }
.tl-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.tl-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.tl-duration {
  display: inline-block; margin-top: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: rgba(116,172,223,0.1);
  padding: 3px 10px; border-radius: 100px;
}

/* ============================================================
   Section: Tech Stack
   ============================================================ */
.tech-stack { padding: 100px 48px; background: var(--white); }
.tech-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px;
}
.tech-card {
  background: var(--cream); border-radius: 14px; padding: 28px 24px;
  text-align: center; border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.tech-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.tech-logo { font-size: 36px; margin-bottom: 12px; }
.tech-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.tech-type { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   Section: FAQ
   ============================================================ */
.faq { padding: 100px 48px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.faq-item {
  background: var(--white); border-radius: 14px; padding: 32px;
  cursor: pointer; border: 1px solid transparent;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-q {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.faq-icon { color: var(--accent); font-size: 20px; flex-shrink: 0; line-height: 1; }
.faq-a { font-size: 14px; line-height: 1.7; color: var(--mid); }

/* ============================================================
   Homepage Hero
   ============================================================ */
.home-hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-left {
  padding: 80px 48px; display: flex; flex-direction: column;
  justify-content: center; position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 32px;
}
.home-hero h1 {
  font-family: var(--font-head); font-size: clamp(52px, 6vw, 88px);
  font-weight: 800; line-height: 0.95; letter-spacing: -0.03em;
  color: var(--black); margin-bottom: 32px;
}
.home-hero h1 em { font-style: italic; color: var(--accent); font-weight: 700; }
.hero-sub {
  font-size: 17px; line-height: 1.65; color: var(--mid);
  max-width: 420px; margin-bottom: 48px;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 60px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  color: var(--black); letter-spacing: -0.02em;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 12px; color: var(--mid);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px;
}

.hero-right {
  background: var(--black); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(116,172,223,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116,172,223,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridMove 20s linear infinite;
}
.hero-visual-content { position: relative; z-index: 2; padding: 48px; width: 100%; }
.code-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 24px;
  font-family: 'Courier New', monospace; font-size: 13px;
  color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px;
}
.code-card .comment { color: rgba(116,172,223,0.7); }
.code-card .key     { color: #93c5fd; }
.code-card .val     { color: #86efac; }
.code-card .str     { color: #fde68a; }

.floating-badge {
  position: absolute; background: var(--accent); color: white;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px; letter-spacing: 0.05em;
  text-transform: uppercase; animation: float 4s ease-in-out infinite;
}
.floating-badge.b1 { top: 80px; right: 60px; animation-delay: 0s; }
.floating-badge.b2 { bottom: 120px; left: 48px; animation-delay: 1.5s; background: var(--accent-dark); }
.floating-badge.b3 {
  top: 50%; right: 40px; animation-delay: 0.8s;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* ============================================================
   Homepage: Services Grid
   ============================================================ */
.services-section { padding: 120px 48px; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px;
}
.section-header p { font-size: 15px; color: var(--mid); max-width: 280px; line-height: 1.6; text-align: right; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.service-card {
  background: var(--cream); padding: 48px 40px;
  position: relative; transition: background 0.3s; cursor: pointer;
}
.service-card:hover { background: var(--black); }
.service-card:hover .service-num,
.service-card:hover .service-title,
.service-card:hover .service-desc { color: var(--white); }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-arrow { opacity: 1; transform: translate(0,0); }
.service-num {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--mid); margin-bottom: 24px; transition: color 0.3s;
}
.service-icon {
  width: 48px; height: 48px; background: rgba(0,0,0,0.06);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.3s; font-size: 22px;
}
.service-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px; transition: color 0.3s;
}
.service-desc { font-size: 14px; line-height: 1.65; color: var(--mid); transition: color 0.3s; }
.service-arrow {
  position: absolute; bottom: 32px; right: 32px;
  width: 36px; height: 36px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translate(8px,8px);
  transition: opacity 0.3s, transform 0.3s;
  color: white; font-size: 16px;
}

/* ============================================================
   Homepage: About Split
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.about-left {
  background: var(--black); padding: 100px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.about-left::before {
  content: 'FC'; position: absolute; bottom: -40px; right: -20px;
  font-family: var(--font-head); font-size: 200px; font-weight: 900;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.about-left h2 { color: var(--white); margin-bottom: 24px; }
.about-left p {
  color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.7;
  max-width: 440px; margin-bottom: 40px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
  padding: 7px 16px; border-radius: 100px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; transition: border-color 0.2s, color 0.2s;
}
.tag:hover { border-color: var(--accent); color: var(--accent); }
.about-right { padding: 100px 64px; display: flex; flex-direction: column; justify-content: center; }
.value-list { list-style: none; }
.value-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.value-item:first-child { border-top: 1px solid var(--border); }
.value-num {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--accent); min-width: 32px; margin-top: 3px;
}
.value-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.value-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ============================================================
   Homepage: Process Steps
   ============================================================ */
.process-home { padding: 120px 48px; background: var(--black); }
.process-home .section-tag { color: var(--accent); }
.process-home h2 { color: var(--white); margin-bottom: 64px; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: rgba(255,255,255,0.1);
}
.step { padding: 0 24px; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 28px; position: relative; z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}
.step:hover .step-num { background: var(--accent); border-color: var(--accent); }
.step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ============================================================
   Industry Page Styles
   ============================================================ */
.industry-hero-visual {
  background: var(--black); border-radius: 20px; overflow: hidden;
  min-height: 400px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.industry-icon-large { font-size: 120px; opacity: 0.15; position: relative; z-index: 2; }

.industry-overview { padding: 100px 48px; background: var(--white); }
.industry-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.industry-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.industry-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--black); padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.industry-list li span { font-size: 20px; }

.solutions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px;
}
.solution-card {
  background: var(--white); border-radius: 16px; padding: 36px 32px;
  border: 1px solid transparent; transition: border-color 0.3s, transform 0.3s;
}
.solution-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.solution-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.solution-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.solution-desc { font-size: 14px; line-height: 1.65; color: var(--mid); }

/* ============================================================
   About Page
   ============================================================ */
.about-story { padding: 100px 48px; background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.about-story p { font-size: 16px; line-height: 1.75; color: var(--mid); margin-bottom: 20px; }

.values-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px;
}
.value-card {
  background: var(--cream); border-radius: 16px; padding: 36px 32px;
  border: 1px solid transparent; transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--accent); }
.value-card-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.value-card-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.value-card-desc { font-size: 14px; line-height: 1.65; color: var(--mid); }

.team-section { padding: 100px 48px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.team-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 48px; font-weight: 800; color: white;
}
.team-info { padding: 20px 24px; }
.team-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--mid); }

.offices-section { padding: 100px 48px; background: var(--white); }
.offices-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; margin-top: 56px; }
.office-card {
  background: var(--cream); border-radius: 20px; overflow: hidden;
}
.office-map {
  height: 200px; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; position: relative;
}
.office-map::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(116,172,223,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116,172,223,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.office-info { padding: 32px; }
.office-city { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.office-detail { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ============================================================
   Contact Page
   ============================================================ */
.contact-section { padding: 100px 48px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; margin-top: 56px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mid);
}
.form-input, .form-select, .form-textarea {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px;
  font-family: var(--font-body); font-size: 14px; color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(116,172,223,0.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  background: var(--black); color: var(--white);
  padding: 16px 36px; border-radius: 100px;
  border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-icon {
  width: 48px; height: 48px; background: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.contact-info-value { font-size: 15px; color: var(--black); line-height: 1.5; }

.response-promise {
  background: var(--black); border-radius: 16px; padding: 28px;
  margin-top: 32px;
}
.response-promise p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.response-promise strong { color: var(--accent); }

/* ============================================================
   Careers Page
   ============================================================ */
.careers-hero-visual {
  background: var(--black); border-radius: 20px; min-height: 400px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; gap: 20px; padding: 48px;
}
.perks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.perk-card {
  background: var(--white); border-radius: 16px; padding: 36px 32px;
  text-align: center; border: 1px solid transparent; transition: border-color 0.3s;
}
.perk-card:hover { border-color: var(--accent); }
.perk-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.perk-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.perk-desc { font-size: 14px; line-height: 1.65; color: var(--mid); }

.open-roles { padding: 100px 48px; background: var(--white); }
.no-roles {
  text-align: center; padding: 80px; background: var(--cream);
  border-radius: 20px; margin-top: 56px;
}
.no-roles p { font-size: 16px; color: var(--mid); line-height: 1.6; max-width: 480px; margin: 16px auto 32px; }

/* ============================================================
   Industries Index Page
   ============================================================ */
.industries-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px;
}
.industry-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  text-decoration: none; transition: transform 0.3s;
  display: block;
}
.industry-card:hover { transform: translateY(-4px); }
.industry-card-visual {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative;
}
.industry-card-info { padding: 28px 32px; }
.industry-card-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 10px; color: var(--black);
}
.industry-card-desc { font-size: 14px; line-height: 1.65; color: var(--mid); }

/* ============================================================
   Services Overview Page
   ============================================================ */
.services-overview-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px;
}
.service-overview-card {
  background: var(--white); border-radius: 20px; padding: 44px;
  border: 1px solid transparent; text-decoration: none;
  transition: border-color 0.3s, transform 0.3s; display: block;
}
.service-overview-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.soc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.soc-icon {
  width: 52px; height: 52px; background: var(--cream); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.soc-title {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--black);
}
.soc-desc { font-size: 14px; line-height: 1.65; color: var(--mid); margin-bottom: 20px; }
.soc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.soc-features li {
  font-size: 13px; color: var(--mid); display: flex; align-items: center; gap: 8px;
}
.soc-features li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.soc-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 13px; font-weight: 500; color: var(--accent);
}

/* ============================================================
   Insights (Blog/Whitepapers) Placeholder
   ============================================================ */
.insights-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.insight-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  transition: transform 0.3s;
}
.insight-card:hover { transform: translateY(-4px); }
.insight-visual { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.insight-info { padding: 24px; }
.insight-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.insight-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.2;
}
.insight-date { font-size: 12px; color: var(--mid); }

/* Services index page sections */
.services-overview-section { padding: 100px 48px; }
.why-section               { padding: 100px 48px; background: var(--black); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .home-hero        { grid-template-columns: 1fr; }
  .hero-right       { display: none; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .about-split      { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 72px 32px; }
  .process-steps    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }

  .page-hero        { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 24px) 24px 60px; }
  .hero-visual      { display: none; }
  .included-grid    { grid-template-columns: 1fr 1fr; }
  .approach-grid    { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-timeline::before { display: none; }
  .tech-grid        { grid-template-columns: repeat(2,1fr); }
  .faq-grid         { grid-template-columns: 1fr; }

  .cta-section      { flex-direction: column; gap: 36px; padding: 56px 32px; }
  .cta-right        { align-items: flex-start; }
  .footer-top       { grid-template-columns: 1fr 1fr; }

  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: repeat(2,1fr); }
  .offices-grid     { grid-template-columns: 1fr; }
  .industry-2col    { grid-template-columns: 1fr; }
  .solutions-grid   { grid-template-columns: 1fr; }
  .breadcrumb       { padding: calc(var(--nav-h) + 12px) 24px 0; }
  .included, .included-section,
  .approach, .approach-section,
  .process-section, .tech-stack, .tech-section,
  .faq, .faq-section,
  .migration-paths-section, .services-overview-section, .why-section,
  .industry-overview, .about-story, .team-section, .offices-section,
  .contact-section, .services-section, .process-home { padding: 64px 24px; }

  .page-hero        { padding: calc(var(--nav-h) + 24px) 24px 60px; }
  .page-hero-inner  { grid-template-columns: 1fr; }
  .service-hero     { padding: calc(var(--nav-h) + 24px) 24px 60px; grid-template-columns: 1fr; }
  .cta-section      { margin: 0 24px 60px; }
}

@media (max-width: 640px) {
  .services-grid    { grid-template-columns: 1fr; }
  .included-grid    { grid-template-columns: 1fr; }
  .approach-grid    { grid-template-columns: 1fr; }
  .tech-grid        { grid-template-columns: repeat(2,1fr); }
  .perks-grid       { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .industries-grid  { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .section-header   { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-header p { text-align: left; max-width: 100%; }
  .hero-stats       { flex-wrap: wrap; gap: 24px; }
  .footer-top       { grid-template-columns: 1fr; }
}
