/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --bg:          #f0ede8;
  --bg-2:        #e6e2db;
  --bg-dark:     #151719;
  --surface:     #ffffff;

  --text-1:      #0e0e0e;
  --text-2:      #3c3c3c;
  --text-3:      #828282;

  --accent:      #1b3a5c;
  --accent-h:    #254d78;
  --accent-o:    #d94f0a;

  --glass:        rgba(255,255,255,.42);
  --glass-border: rgba(255,255,255,.68);
  --glass-shine:  rgba(255,255,255,.9);

  --r-sm:  10px;
  --r:     18px;
  --r-lg:  26px;
  --r-xl:  36px;
  --r-full: 9999px;

  --ease: cubic-bezier(.33,1,.68,1);
  --ease-spring: cubic-bezier(.175,.885,.32,1.275);

  --max-w: 1180px;
  --gap: 22px;
}

/* =============================================
   RESET
   ============================================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
}
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; }
textarea, input, select { font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,h2,h3,h4,h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text-1);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(2rem,   3.8vw, 3.4rem); }
h3 { font-size: clamp(1.15rem,2.2vw, 1.55rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-2); line-height: 1.75; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 110px 0; }

/* =============================================
   GLASS EFFECT  (liquid-glass style)
   ============================================= */
.glass {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 2px 4px  rgba(0,0,0,.06),
    0 8px 28px rgba(0,0,0,.11),
    0 24px 56px rgba(0,0,0,.09),
    inset 0 1px 0 var(--glass-shine),
    inset 0 -1px 0 rgba(255,255,255,.18);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
/* iridescent top-left shine */
.glass::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    rgba(255,255,255,.18) 0%,
    rgba(200,215,255,.06) 40%,
    transparent 65%
  );
  pointer-events: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-size: .93rem;
  font-weight: 600;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(27,58,92,.28);
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(27,58,92,.38);
}
.btn-primary svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-glass {
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.55);
  color: var(--text-1);
}
.btn-glass:hover {
  background: rgba(255,255,255,.55);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-tag {
  display: inline-block;
  background: rgba(27,58,92,.08);
  color: var(--accent);
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 68px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.02rem; color: var(--text-3); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity  .72s var(--ease),
    transform .72s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px 0;
  transition: all .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(240,237,232,.88);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
}
.logo strong { color: var(--accent); }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.logo-icon-dark {
  background: rgba(255,255,255,.12);
}
.logo-light { color: rgba(255,255,255,.9); }
.logo-light strong { color: rgba(255,255,255,.5); }

.logo-img { padding: 0; gap: 0; }
.navbar-logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* mobile logo swap */
.navbar-logo-simple { display: none; }

@media (max-width: 768px) {
  .navbar-logo-full   { display: block; }
  .navbar-logo-simple { display: none; }
  .navbar.scrolled .navbar-logo-full   { display: none; }
  .navbar.scrolled .navbar-logo-simple { display: block; }
  .navbar.scrolled .navbar-logo-img    { height: 44px; }
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 15px;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all .2s ease;
}
.nav-links a:hover { color: var(--accent); background: rgba(27,58,92,.06); }
.nav-btn {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 2px 14px rgba(27,58,92,.24);
}
.nav-btn:hover {
  background: var(--accent-h) !important;
  box-shadow: 0 5px 22px rgba(27,58,92,.3) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 201;
}
.toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle.open .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, #ebe8e2 0%, #ddd8d0 45%, #e2dfd9 100%);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hs {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(27,58,92,.1);
}
.hs-1 {
  width: 580px; height: 580px;
  right: -60px; top: -60px;
  animation: spin 32s linear infinite;
}
.hs-2 {
  width: 400px; height: 400px;
  right: 20px; top: 20px;
  border-style: dashed;
  animation: spin 24s linear infinite reverse;
  border-color: rgba(27,58,92,.08);
}
.hs-3 {
  width: 200px; height: 200px;
  right: 120px; top: 120px;
  animation: spin 14s linear infinite;
  border-color: rgba(217,79,10,.18);
}
.hs-4 {
  width: 900px; height: 900px;
  left: -300px; bottom: -300px;
  animation: spin 50s linear infinite;
  border-color: rgba(27,58,92,.04);
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  left: -120px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(27,58,92,.07) 0%, transparent 65%);
  pointer-events: none;
}

/* hero 2-col grid */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}

.hero-content {
  /* text column — starts from left */
}

/* ---- PHOTO COLUMN ---- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-card {
  width: 100%;
  max-width: 400px;
  border-radius: var(--r-lg) !important;
  overflow: hidden;
  animation: floatPhoto 7s ease-in-out infinite;
}

@keyframes floatPhoto {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero-photo-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hpi-left   { display: flex; flex-direction: column; gap: 2px; }
.hpi-name   { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-1); }
.hpi-role   { font-size: .78rem; color: var(--text-3); font-weight: 500; }

.hpi-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(27,58,92,.08);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-full);
}

/* floating experience tag */
.hero-float-tag {
  position: absolute;
  bottom: 70px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: var(--r-full) !important;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  animation: floatPhoto 5s ease-in-out infinite reverse;
}

/* hero staggered entrance */
.hero-tag  { animation: heroUp .8s var(--ease) .1s both; }
.hero-title{ animation: heroUp .8s var(--ease) .25s both; }
.hero-desc { animation: heroUp .8s var(--ease) .4s both; }
.hero-actions { animation: heroUp .8s var(--ease) .52s both; }
.hero-metrics { animation: heroUp .8s var(--ease) .66s both; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.48);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  padding: 7px 15px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-title {
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent-o);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 3px;
  width: 100%; height: 3px;
  background: var(--accent-o);
  opacity: .25;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.08rem;
  margin-bottom: 36px;
  line-height: 1.85;
}
.br-desktop { display: inline; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* metric pill */
.hero-metrics {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.4);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: var(--r-lg);
  padding: 18px 26px;
  box-shadow: 0 6px 30px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
  gap: 0;
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.metric:first-child { padding-left: 0; }
.metric:last-child  { padding-right: 0; }
.metric-top {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
  margin-bottom: 4px;
}
.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
}
.metric-unit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-o);
}
.metric-label {
  font-size: .72rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.metric-sep {
  width: 1px; height: 38px;
  background: rgba(0,0,0,.09);
  flex-shrink: 0;
}

/* scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  animation: heroUp .8s var(--ease) 1.1s both;
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(27,58,92,.28);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px; height: 7px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  55%     { transform: translateY(13px); opacity: .25; }
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card {
  padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 2px 4px  rgba(0,0,0,.04),
    0 20px 60px rgba(0,0,0,.13),
    inset 0 1px 0 var(--glass-shine) !important;
}
.service-icon {
  width: 58px; height: 58px;
  background: rgba(27,58,92,.08);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all .3s ease;
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: white;
}
.service-card h3 { margin-bottom: 10px; }
.service-card > p {
  font-size: .92rem;
  color: var(--text-3);
  margin-bottom: 22px;
  line-height: 1.72;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: var(--text-2);
}
.service-list li svg { color: var(--accent); flex-shrink: 0; }

.service-featured {
  border-color: rgba(27,58,92,.16) !important;
  background: rgba(27,58,92,.03) !important;
}
.service-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent-o);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 1;
}

/* =============================================
   FEATURES
   ============================================= */
.features-section {
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  right: -300px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(217,79,10,.05) 0%, transparent 65%);
  pointer-events: none;
}
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.features-text {
  position: sticky;
  top: 110px;
}
.features-text h2 { margin-bottom: 16px; }
.features-text > p {
  font-size: 1.02rem;
  margin-bottom: 34px;
  line-height: 1.82;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: var(--r);
  transition: all .3s var(--ease);
  cursor: default;
}
.feature-item:hover {
  background: rgba(255,255,255,.52);
  backdrop-filter: blur(14px);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(27,58,92,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: all .3s ease;
}
.feature-item:hover .feature-icon {
  background: var(--accent);
  color: white;
}
.feature-item h4 { margin-bottom: 3px; }
.feature-item p  { font-size: .88rem; color: var(--text-3); line-height: 1.6; }

/* =============================================
   APPLICATIONS
   ============================================= */
.applications-section {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
/* subtle grid overlay */
.applications-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,58,92,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,58,92,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
}
.app-card {
  padding: 26px 24px;
  transition: transform .4s var(--ease), box-shadow .4s ease;
  cursor: default;
}
.app-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 2px 4px  rgba(0,0,0,.04),
    0 18px 50px rgba(0,0,0,.12),
    inset 0 1px 0 var(--glass-shine) !important;
}
.app-icon {
  width: 50px; height: 50px;
  background: rgba(27,58,92,.08);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
  transition: all .3s ease;
}
.app-card:hover .app-icon {
  background: var(--accent);
  color: white;
}
.app-card h4 { margin-bottom: 7px; }
.app-card p  { font-size: .86rem; color: var(--text-3); line-height: 1.62; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--bg); }

.process-track {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
}
/* connecting line */
.process-line {
  position: absolute;
  top: 70px;
  left: calc(12.5% + 35px);
  right: calc(12.5% + 35px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(27,58,92,.15) 100%);
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 12px;
  position: relative;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent-o);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.step-icon {
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border-radius: 20px !important;
  transition: transform .35s var(--ease-spring);
}
.step-icon:hover { transform: scale(1.12) rotate(-4deg); }
.process-step h3 { font-size: 1rem; line-height: 1.3; }
.process-step p  { font-size: .84rem; color: var(--text-3); line-height: 1.6; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: linear-gradient(175deg, var(--bg) 0%, var(--bg-2) 100%); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p {
  font-size: .98rem;
  color: var(--text-3);
  margin-bottom: 32px;
  line-height: 1.82;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--r-sm) !important;
  transition: transform .3s var(--ease);
  color: inherit;
}
a.contact-card:hover { transform: translateX(7px); }

.cc-icon {
  width: 40px; height: 40px;
  background: rgba(27,58,92,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.cc-body { flex: 1; }
.cc-label {
  display: block;
  font-size: .72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 500;
}
.cc-value {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-1);
}
.cc-arrow { color: var(--accent); opacity: .5; }

.contact-form {
  padding: 36px 34px;
  border-radius: var(--r-lg) !important;
}
.contact-form h3 { margin-bottom: 26px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--text-1);
  outline: none;
  transition: all .2s ease;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255,255,255,.9);
  border-color: rgba(27,58,92,.28);
  box-shadow: 0 0 0 3px rgba(27,58,92,.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.75); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 24px 48px;
  gap: 40px;
}
.footer-brand { max-width: 280px; }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.42);
  line-height: 1.72;
  margin-top: 14px;
}
.footer-nav { display: flex; gap: 56px; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s ease;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 24px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom-inner a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-bottom-inner a:hover { color: rgba(255,255,255,.9); }

.footer-company-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-company-info p {
  font-size: .8rem !important;
  color: rgba(255,255,255,.38) !important;
  margin-top: 0 !important;
  line-height: 1.5 !important;
}
.footer-company-info p strong { color: rgba(255,255,255,.6); }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.85) !important;
  transition: color .2s;
}
.footer-phone:hover { color: #fff !important; }
.footer-brand { max-width: 320px; }

/* =============================================
   RESPONSIVE – 1060px (tablet)
   ============================================= */
@media (max-width: 1060px) {
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .apps-grid      { grid-template-columns: 1fr 1fr; }

  .features-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-text  { position: static; }

  .process-line   { display: none; }
  .process-track  { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

  .contact-inner  { grid-template-columns: 1fr; gap: 48px; }

  /* hero: reset right-push on smaller screens */
  .hero-content { margin-left: 0; max-width: 640px; }
}

/* =============================================
   RESPONSIVE – 768px (mobile)
   ============================================= */
@media (max-width: 768px) {
  :root { --gap: 16px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* ---- NAVBAR ---- */
  .nav-links {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,.14);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 calc(env(safe-area-inset-bottom) + 16px);
    display: none;
    z-index: 199;
    overflow-y: auto;
    max-height: 85vh;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.32,1,.28,1);
  }
  .nav-links::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #d1d1d6;
    border-radius: 2px;
    margin: 0 auto 16px;
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: 15px 28px;
    border-radius: 0;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }
  .nav-links li:last-child { padding: 16px 24px 0; }
  .nav-links li:last-child a {
    border-bottom: none !important;
    border-radius: var(--r-full) !important;
    text-align: center !important;
    padding: 14px 20px !important;
    margin: 0 !important;
    display: block;
  }
  /* dim overlay behind sheet */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 198;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }

  /* ---- HERO ---- */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 96px;
    padding-bottom: 48px;
    gap: 36px;
  }
  /* photo comes first on tablet (below 768 it'll reverse) */
  .hero-visual { order: -1; }
  .hero-photo-card { max-width: 340px; }
  .hero-photo { height: 360px; }
  .hero-float-tag { left: 0; bottom: 50px; }

  /* shrink rings so they don't drown the text */
  .hs-1 { width: 320px; height: 320px; }
  .hs-2 { width: 220px; height: 220px; right: 5px; top: 5px; }
  .hs-3 { width: 110px; height: 110px; right: 55px; top: 55px; }
  .hero-glow { width: 340px; height: 340px; }

  .hero-desc { font-size: 1rem; }
  .br-desktop { display: none; }

  /* hero actions: side by side on mobile */
  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 140px;
    justify-content: center;
  }

  /* metrics pill: horizontal row, compact */
  .hero-metrics {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 16px 18px;
    gap: 0;
    width: 100%;
  }
  .metric         { padding: 0 6px; flex: 1; }
  .metric-value   { font-size: 1.4rem; }
  .metric-unit    { font-size: 1rem; }
  .metric-label   { font-size: .62rem; }
  .metric-sep     { width: 1px; height: 30px; align-self: center; }

  /* ---- SERVICES ---- */
  .services-grid  { grid-template-columns: 1fr; }
  .service-card   { padding: 26px 22px; }

  /* ---- FEATURES ---- */
  .feature-item:hover { transform: none; }

  /* ---- APPS ---- */
  .apps-grid { grid-template-columns: 1fr 1fr; }

  /* ---- PROCESS ---- */
  .process-track  { grid-template-columns: 1fr 1fr; gap: 20px; }
  .process-step   { padding: 0 6px; }

  /* ---- CONTACT ---- */
  .contact-form   { padding: 26px 22px; }
  .form-row       { grid-template-columns: 1fr; }

  /* ---- FOOTER ---- */
  .footer-inner         { flex-direction: column; padding: 44px 20px 32px; }
  .footer-nav           { gap: 28px; }
  .footer-brand         { max-width: 100%; }
  .footer-bottom-inner  { flex-direction: column; gap: 6px; text-align: center; }
}

/* =============================================
   RESPONSIVE – 480px (small mobile)
   ============================================= */
@media (max-width: 480px) {
  .section { padding: 60px 0; }

  .hero-inner   { padding-top: 86px; gap: 24px; }
  .hero-photo-card { max-width: 260px; }
  .hero-photo   { height: 280px; }
  .hero-float-tag { display: none; }
  .hero-metrics { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .metric-sep   { display: none; }
  .metric       { flex: 0 0 30%; }

  /* stack buttons below 480 */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { flex: none; width: 100%; }

  .apps-grid    { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }

  /* section headers smaller */
  .section-header { margin-bottom: 44px; }

  .contact-form { padding: 22px 18px; }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { background: var(--bg); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: box-shadow .25s var(--ease);
}

.faq-item[open] {
  box-shadow: 0 8px 32px rgba(27,58,92,.10);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-1);
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question span { flex: 1; }

.faq-chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .3s var(--ease);
}

.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-2);
  line-height: 1.7;
  font-size: .97rem;
}

.faq-answer p { margin: 0; }
.faq-answer a { color: var(--accent); text-decoration: underline; }

@media (max-width: 600px) {
  .faq-question { font-size: .97rem; padding: 16px 18px; }
  .faq-answer   { padding: 0 18px 16px; }
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg);
  border-top: 3px solid var(--accent);
  padding: 18px 24px;
  box-shadow: 0 -4px 32px rgba(14,14,14,.12);
  animation: slideUpCookie .4s ease;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.5;
}
.cookie-banner__text strong {
  display: block;
  color: var(--text-1);
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}
.cookie-btn:hover { opacity: .82; }
.cookie-btn--primary {
  background: var(--accent);
  color: #fff;
}
.cookie-btn--secondary {
  background: transparent;
  color: var(--text-2);
  border: 1px solid rgba(27,58,92,.35);
}
