/* ============================================================
   YOTECH — Light Design System  |  Mobile-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design tokens ── */
:root {
  /* Brand */
  --orange:      #f47c20;
  --orange-hot:  #e8680a;
  --orange-soft: rgba(244,124,32,0.1);
  --blue:        #3b6ef5;
  --blue-soft:   rgba(59,110,245,0.1);
  --purple:      #8b5cf6;
  --purple-soft: rgba(139,92,246,0.1);
  --green:       #22c55e;
  --green-soft:  rgba(34,197,94,0.1);

  /* Backgrounds */
  --bg:          #f8f9fc;
  --bg-alt:      #f0f4ff;
  --bg-white:    #ffffff;
  --bg-card:     #ffffff;

  /* Text */
  --text:        #0d1630;
  --text-soft:   #3d4a62;
  --text-muted:  #6b7a99;
  --text-faint:  #9aa3b8;

  /* Borders & shadows */
  --border:      rgba(13,22,48,0.08);
  --border-soft: rgba(13,22,48,0.05);
  --shadow-xs:   0 2px 8px rgba(13,22,48,0.06);
  --shadow-sm:   0 4px 16px rgba(13,22,48,0.08);
  --shadow-md:   0 8px 32px rgba(13,22,48,0.10);
  --shadow-lg:   0 16px 48px rgba(13,22,48,0.12);

  /* Nav (kept dark for contrast on hero image) */
  --nav-bg:      #0b1528;
  --nav-text:    rgba(255,255,255,0.82);

  /* Radii */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-pill: 999px;

  --ease: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: clip;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: clip;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  min-width: 0;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   NAVIGATION  (stays dark — hero image is behind it)
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-shell {
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 12px;
}

.brand { flex-shrink: 0; }

.brand-logo {
  width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
}

/* Centre nav */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li a {
  display: block;
  padding: 8px 14px;
  color: var(--nav-text);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  transition: color var(--ease);
}

.nav-links li a:hover { color: #fff; }

.nav-links li a.active {
  color: #fff;
  font-weight: 600;
}

.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

/* CTA */
.nav-cta {
  flex-shrink: 0;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #f5a623, var(--orange));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(244,124,32,0.4);
  transition: transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(244,124,32,0.5); }

/* Hamburger */
.nav-hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ease);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--nav-bg);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 20px 20px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--nav-text);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--r-md);
  transition: background var(--ease), color var(--ease);
}
.mobile-nav a:hover,
.mobile-nav a.active { background: rgba(255,255,255,0.06); color: #fff; }
.mobile-nav .mobile-cta {
  margin-top: 10px;
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #f5a623, var(--orange));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   HERO  (clean light styling, no dark overlays)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  min-height: 82vh;
  max-height: none;
  display: flex;
  align-items: stretch;
  background: #f4f7ff;
}
.page-hero--about-bg,
.page-hero--services-bg,
.page-hero--contact-bg,
.page-hero--home-bg { min-height: 58vh; }

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(9, 14, 25, 0.72) 0%, rgba(9, 14, 25, 0.42) 35%, rgba(9, 14, 25, 0.16) 100%),
    url('mainhero.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  z-index: 0;
}

.page-hero--home-bg::before {
  background-image:
    linear-gradient(90deg, rgba(9, 14, 25, 0.78) 0%, rgba(9, 14, 25, 0.52) 35%, rgba(9, 14, 25, 0.18) 100%),
    url('mainhero.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: #f3f7ff;
}

.page-hero::after {
  content: none;
}

/* Plain hero (no photo) for inner pages */
.page-hero--plain::before {
  background-image: none;
  background: linear-gradient(145deg, #ffffff 0%, #edf4ff 100%);
  opacity: 1;
}
.page-hero--plain::after {
  content: none;
}

.page-hero--about-bg::before {
  background-image:
    linear-gradient(90deg, rgba(9, 14, 25, 0.72) 0%, rgba(9, 14, 25, 0.42) 35%, rgba(9, 14, 25, 0.16) 100%),
    url('imagecopy1.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.page-hero--about-bg::after {
  content: none;
}

.page-hero--services-bg::before {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 25, 0.48) 0%, rgba(9, 14, 25, 0.08) 24%, rgba(9, 14, 25, 0.04) 100%),
    url('image2.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: #f3f7ff;
}

.page-hero--services-bg::after {
  content: none;
}

.page-hero--contact-bg::before {
  background-image:
    linear-gradient(180deg, rgba(9, 14, 25, 0.48) 0%, rgba(9, 14, 25, 0.08) 24%, rgba(9, 14, 25, 0.04) 100%),
    url('image3.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: #f3f7ff;
}

.page-hero--contact-bg::after {
  content: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 48px 20px 48px 40px;
}

.hero-content {
  max-width: 500px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.page-hero h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.page-hero p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  margin-bottom: 16px;
  max-width: 440px;
}

.highlight { color: var(--orange); }

/* Tag pills */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color var(--ease), background var(--ease);
}
.hero-tag i { font-size: 0.74rem; color: rgba(255,255,255,0.7); }
.hero-tag:hover { border-color: rgba(244,124,32,0.45); background: rgba(244,124,32,0.08); }

/* Hero buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #f5a623, var(--orange));
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 16px rgba(244,124,32,0.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,124,32,0.55); }

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.hero-btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.hero-btn-ghost .play-icon {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.42);
  font-size: 0.55rem;
  flex-shrink: 0;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(244,124,32,0.3);
  background: rgba(244,124,32,0.08);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   SHARED SECTION BASE  (light)
   ============================================================ */
.section {
  padding: 72px 0;
  background: var(--bg);
}
.section--white  { background: var(--bg-white); }
.section--alt    { background: var(--bg-alt); }

/* ── Section header ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-kicker::before,
.section-kicker::after {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--orange);
  opacity: 0.5;
  border-radius: 2px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.12;
}
.section-header p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Generic card ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ── Coloured icon boxes ── */
.ci {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci--orange { background: var(--orange-soft); color: var(--orange); border: 1px solid rgba(244,124,32,0.18); }
.ci--blue   { background: var(--blue-soft);   color: var(--blue);   border: 1px solid rgba(59,110,245,0.18); }
.ci--purple { background: var(--purple-soft); color: var(--purple); border: 1px solid rgba(139,92,246,0.18); }
.ci--green  { background: var(--green-soft);  color: var(--green);  border: 1px solid rgba(34,197,94,0.18); }

/* old icon helpers (kept for compatibility) */
.icon-blue   { background: var(--blue-soft);   color: var(--blue);   border: 1px solid rgba(59,110,245,0.18); }
.icon-orange { background: var(--orange-soft); color: var(--orange); border: 1px solid rgba(244,124,32,0.18); }
.icon-green  { background: var(--green-soft);  color: var(--green);  border: 1px solid rgba(34,197,94,0.18); }
.icon-purple { background: var(--purple-soft); color: var(--purple); border: 1px solid rgba(139,92,246,0.18); }
.icon-cyan   { background: rgba(34,211,238,0.1); color: #06b6d4; border: 1px solid rgba(34,211,238,0.18); }

/* ── Shared buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-size: 0.87rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #f5a623, var(--orange));
  color: #fff;
  box-shadow: 0 4px 16px rgba(244,124,32,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(244,124,32,0.5); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-soft);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn-dark {
  background: var(--text);
  color: #fff;
}

/* old button helpers */
.button       { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: var(--r-pill); font-size: 0.87rem; font-weight: 700; border: none; cursor: pointer; background: linear-gradient(135deg, #f5a623, var(--orange)); color: #fff; box-shadow: 0 4px 16px rgba(244,124,32,0.35); transition: transform var(--ease), box-shadow var(--ease); }
.button:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,124,32,0.5); }
.button-light { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; border-radius: var(--r-pill); font-size: 0.87rem; font-weight: 700; background: transparent; border: 1.5px solid var(--border); color: var(--text-soft); transition: transform var(--ease), border-color var(--ease), color var(--ease); }
.button-light:hover { transform: translateY(-2px); border-color: var(--orange); color: var(--orange); }

/* ============================================================
   STATS BAND
   ============================================================ */
.feature-showcase {
  position: relative;
  padding: 70px 0 50px;
  background: #edf4ff;
}

.feature-showcase::before,
.feature-showcase::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(121, 162, 255, 0.08);
  filter: blur(10px);
}

.feature-showcase::before {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -60px;
}

.feature-showcase::after {
  width: 300px;
  height: 300px;
  right: -90px;
  top: -80px;
}

.feature-header {
  text-align: center;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(67, 125, 255, 0.35);
  color: #1d4ed8;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96,165,250,0.18), rgba(168,85,247,0.18));
  font-size: 0.7rem;
}

.feature-header h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 0 auto 12px;
  color: var(--text);
  max-width: 820px;
}

.feature-header h2 span {
  background: linear-gradient(90deg, #1d4ed8 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-header p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 22px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 20px 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(13,22,48,0.08);
  box-shadow: 0 14px 30px rgba(13,22,48,0.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-card--blue { background: linear-gradient(180deg, rgba(186,219,255,0.35), rgba(232,242,255,0.95)); }
.feature-card--purple { background: linear-gradient(180deg, rgba(214,196,255,0.4), rgba(244,238,255,0.95)); }
.feature-card--green { background: linear-gradient(180deg, rgba(188,242,224,0.38), rgba(236,255,247,0.95)); }
.feature-card--orange { background: linear-gradient(180deg, rgba(255,218,178,0.42), rgba(255,241,232,0.95)); }

.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.45rem;
  margin: 0 auto 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.feature-icon--blue { background: linear-gradient(135deg, #2f6df6, #69a9ff); }
.feature-icon--purple { background: linear-gradient(135deg, #8b5cf6, #c084fc); }
.feature-icon--green { background: linear-gradient(135deg, #1dbf8d, #4ade80); }
.feature-icon--orange { background: linear-gradient(135deg, #f59e0b, #f97316); }

.feature-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--text);
  text-align: left;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 310px;
}

.feature-arrow {
  margin-top: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  color: var(--text);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(13,22,48,0.06);
}

.feature-arrow i {
  transform: translateX(1px);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3568 100%);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,124,32,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h3 {
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.cta-band p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(244,124,32,0.2));
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5a623, var(--orange));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 4px 18px rgba(244,124,32,0.35);
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.process-step p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
.contact-info-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-info-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.contact-info-block > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon-wrap {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: var(--orange-soft);
  border: 1px solid rgba(244,124,32,0.18);
  color: var(--orange);
}
.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text span { color: var(--text-soft); font-size: 0.9rem; font-weight: 500; }
.contact-item-text a:hover { color: var(--orange); }

.contact-form-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.contact-form-block > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.contact-qr-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-qr-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.contact-qr-block > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.contact-qr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,124,32,0.4);
  box-shadow: var(--shadow-md);
}
.contact-qr-card img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: var(--r-md);
}
.contact-qr-card strong { color: var(--text); font-size: 1rem; }
.contact-qr-card span { color: var(--text-muted); font-size: 0.85rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }

label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
input, textarea, select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color var(--ease), background var(--ease);
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-faint); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(244,124,32,0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(244,124,32,0.08);
}
textarea { min-height: 130px; resize: vertical; }
select option { background: #fff; color: var(--text); }
.form-actions { margin-top: 20px; }

/* ============================================================
   ABOUT PAGE (standalone)
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.12;
}
.about-text p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; margin-bottom: 14px; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  margin-bottom: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(244,124,32,0.16);
}
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.value-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.stat-stack { display: flex; flex-direction: column; gap: 14px; }
.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease);
}
.stat-box:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.stat-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.stat-box strong { display: block; font-size: 1.7rem; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.stat-box span   { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* Timeline / process on about.html */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.timeline-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.timeline-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--text), var(--orange), #ffc844);
}
.timeline-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.timeline-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   SERVICES PAGE (standalone grid)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244,124,32,0.4), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.service-card p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.service-list { padding: 0; display: flex; flex-direction: column; gap: 7px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-soft);
  font-weight: 500;
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* feature grid (used on services page + index) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* portfolio cards */
.portfolio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.portfolio-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease);
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portfolio-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.portfolio-card p  { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 18px; }
.portfolio-card a  { color: var(--orange); font-weight: 600; font-size: 0.87rem; display: inline-flex; align-items: center; gap: 5px; transition: gap var(--ease); }
.portfolio-card a:hover { gap: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0b1528;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 10px;
  filter: brightness(1.05) drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 14px;
}
.footer-social { display: flex; gap: 8px; }
.footer-qr-btn {
  width: 76px;
  height: 118px;
  padding: 4px;
  border-radius: var(--r-md);
  display: block;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.footer-qr-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-qr-btn:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
.social-img-btn {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}
.social-img-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.social-img-btn:hover {
  transform: translateY(-1px);
  background: rgba(244,124,32,0.12);
  border-color: rgba(244,124,32,0.3);
}
.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.social-btn:hover { background: rgba(244,124,32,0.12); border-color: rgba(244,124,32,0.3); color: var(--orange); }

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links-list { display: flex; flex-direction: column; gap: 9px; }
.footer-links-list a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--ease), padding-left var(--ease);
  display: block;
}
.footer-links-list a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin: 0; }
.footer-bottom .highlight { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.82rem; transition: color var(--ease); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   LIGHT SECTIONS  —  Why / Services / About  (on index.html)
   ============================================================ */
.lsec {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background: var(--bg-alt);
  color: var(--text);
}
.lsec--services { background: var(--bg-white); }
.lsec--about    { background: var(--bg-alt); }

/* blobs */
.lsec-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.5;
}
.lsec-blob--tl {
  width: 300px; height: 300px;
  top: -80px; left: -80px;
  background: radial-gradient(circle, #ffd59a, #ffa04a 60%, transparent);
}
.lsec-blob--br {
  width: 260px; height: 260px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, #ffd59a, #ffb366 60%, transparent);
}
.lsec-blob--blue {
  background: radial-gradient(circle, #c2d8ff, #7eb3ff 60%, transparent);
  opacity: 0.4;
}
.lsec-dots {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(13,22,48,0.1) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}
.lsec-dots--tr { top: 20px; right: 20px; width: 140px; height: 140px; }

/* header */
.lsec-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}
.lsec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.lsec-kicker--blue { color: var(--blue); }
.lsec-kicker-line { display: inline-block; width: 30px; height: 1.5px; background: var(--orange); border-radius: 2px; }
.lsec-kicker-line--blue { background: var(--blue); }

.lsec-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.lsec-orange    { color: var(--orange); }
.lsec-gradient  {
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lsec-header p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.br-desk { display: block; }

.lsec-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 12px 26px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #f5a623, var(--orange));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(244,124,32,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lsec-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,124,32,0.5); }

/* ── Unified approach card ── */
.approach-card {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, #0d1b45 0%, #14295a 100%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(13,22,48,0.18);
  overflow: hidden;
}
.approach-card::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,124,32,0.32), transparent 68%);
  pointer-events: none;
}
.approach-card-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 680px;
}
.approach-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(244,124,32,0.16);
  border: 1px solid rgba(255,190,102,0.28);
  color: #ffc06b;
  font-size: 1.25rem;
}
.approach-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.2;
}
.approach-card-main p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.75;
}
.approach-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.approach-point {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  font-weight: 600;
}
.approach-point i { color: #ffc06b; }
.approach-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}
.approach-link:hover { color: #ffc06b; }

/* ── Why cards ── */
.why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.wcard {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wcard:hover { transform: translateY(-4px); }
.wcard--light {
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.wcard--featured {
  background: linear-gradient(145deg, #0d1b45, #0a1535);
  border: none;
  box-shadow: 0 16px 48px rgba(13,22,48,0.2);
}
.wcard-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.wcard-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.wcard-icon--orange { background: var(--orange-soft); color: var(--orange); }
.wcard-icon--blue   { background: var(--blue-soft);   color: var(--blue);   }
.wcard-icon--purple { background: var(--purple-soft); color: var(--purple); }
.wcard-title { margin: 0; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.wcard--featured .wcard-title { color: #fff; }
.wcard-divider { width: 32px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--orange), #ffb366); margin: 10px 0 12px; flex-shrink: 0; }
.wcard-divider--light { background: linear-gradient(90deg, #f5a623, rgba(255,214,96,0.6)); }
.wcard-body { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin: 0; }
.wcard--featured .wcard-body { color: rgba(255,255,255,0.68); }
.wcard-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 16px; font-size: 0.84rem; font-weight: 700; color: var(--text); transition: gap 0.2s; }
.wcard-link:hover { gap: 9px; }
.wcard-link--light { color: rgba(255,255,255,0.88); }
.wcard-corner { position: absolute; bottom: -36px; right: -36px; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle, rgba(244,124,32,0.12), transparent 70%); pointer-events: none; }
.wcard-glow-arc { position: absolute; bottom: -28px; right: -28px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle at 70% 70%, rgba(244,124,32,0.28), transparent 65%); pointer-events: none; }

.why-cta-row { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; }
.why-cta-line { display: inline-block; height: 1.5px; width: 70px; background: linear-gradient(90deg, transparent, var(--orange), transparent); border-radius: 2px; }
.why-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #f5a623, var(--orange));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(244,124,32,0.35);
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-cta-btn { min-width: 0; }
.why-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(244,124,32,0.5); }

/* ── Service cards (index) ── */
.svc-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scard {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 24px 22px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.scard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.scard::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; border-radius: 0 0 var(--r-xl) var(--r-xl); }
.scard--blue::after   { background: linear-gradient(90deg, var(--blue), #3b68e8); }
.scard--purple::after { background: linear-gradient(90deg, var(--purple), #7c3aed); }
.scard--green::after  { background: linear-gradient(90deg, var(--green), #16a34a); }
.scard-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2px; }
.scard-icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
.scard-icon--blue   { background: var(--blue-soft);   color: var(--blue);   }
.scard-icon--purple { background: var(--purple-soft); color: var(--purple); }
.scard-icon--green  { background: var(--green-soft);  color: var(--green);  }
.scard-img { font-size: 2.6rem; line-height: 1; opacity: 0.15; }
.scard-img--web { color: var(--blue); } .scard-img--cloud { color: var(--purple); } .scard-img--strategy { color: var(--green); }
.scard-title { margin: 0; font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.scard-body  { margin: 0; font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.scard-list { list-style: none; padding: 0; margin: 2px 0 0; display: flex; flex-direction: column; gap: 7px; }
.scard-list li { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--text-soft); font-weight: 500; }
.scard--blue   .scard-list li i { color: var(--blue);   }
.scard--purple .scard-list li i { color: var(--purple); }
.scard--green  .scard-list li i { color: var(--green);  }

/* ── About teaser (index) ── */
.abt-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.abt-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 340px;
}
.abt-panel-text {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.abt-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--blue-soft);
  border: 1px solid rgba(59,110,245,0.2);
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
.abt-panel-text h3 { margin: 0; font-size: 0.94rem; font-weight: 700; color: var(--text); line-height: 1.52; letter-spacing: -0.02em; }
.abt-panel-text p  { margin: 0; font-size: 0.8rem; color: var(--text-muted); line-height: 1.72; }
.abt-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #7c3aed, var(--purple));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  width: fit-content;
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(124,58,237,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.abt-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(124,58,237,0.42); }

.abt-panel-visual {
  position: relative;
  background: linear-gradient(145deg, #e8f0ff, #d4e4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
}
.apv-img-wrap { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.apv-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.abt-panel:hover .apv-img { transform: scale(1.03); }
.apv-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(232,240,255,0.4) 0%, transparent 30%);
  pointer-events: none;
}

/* Stat cards (right col of about teaser) */
.abt-stats-col { display: flex; flex-direction: column; gap: 12px; }
.abt-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  flex: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.abt-stat-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.abt-stat-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.abt-stat-ico--blue   { background: var(--blue-soft);   color: var(--blue);   }
.abt-stat-ico--purple { background: var(--purple-soft); color: var(--purple); }
.abt-stat-ico--green  { background: var(--green-soft);  color: var(--green);  }
.abt-stat-info { flex: 1; min-width: 0; }
.abt-stat-info strong { display: block; font-size: 1.85rem; font-weight: 800; letter-spacing: -0.05em; color: var(--text); line-height: 1; }
.abt-stat-info span   { display: block; font-size: 0.76rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.abt-stat-arr { font-size: 0.95rem; font-weight: 700; color: var(--text-faint); flex-shrink: 0; }

/* ============================================================
   MOBILE-FIRST RESPONSIVE
   Base styles above are mobile.
   We scale UP at each breakpoint.
   ============================================================ */

/* ── 480px + ── */
@media (min-width: 480px) {
  .container { padding: 0 24px; }
  .brand-logo { width: 150px; }
  .hero-tags { gap: 8px; }
}

/* ── 640px + ── */
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat-item:nth-child(2) { border-right: none; }
  .stats-band .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stats-band .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

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

  .abt-panel { grid-template-columns: 1fr 1fr; }

  .form-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 768px + (tablet) ── */
@media (min-width: 768px) {
  .navbar { height: 72px; }
  .brand-logo { width: 160px; }

  .page-hero { min-height: 68vh; }
  .page-hero-inner { padding: 56px 32px 56px 48px; }
  .page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
  .page-hero p  { font-size: 0.9rem; }

  .section { padding: 80px 0; }
  .lsec    { padding: 88px 0; }

  .value-grid  { grid-template-columns: repeat(3, 1fr); }
  .feature-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline    { grid-template-columns: repeat(3, 1fr); }
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .portfolio-cards { grid-template-columns: repeat(2, 1fr); }

  .svc-row  { grid-template-columns: repeat(2, 1fr); }
  .why-row  { grid-template-columns: repeat(2, 1fr); }

  .about-layout  { grid-template-columns: 1fr 1fr; }
  .contact-layout{ grid-template-columns: 1fr; }

  .cta-band { padding: 36px 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .process-track { grid-template-columns: repeat(3, 1fr); }
  .process-track::before { display: block; }
}

/* ── 1024px + (desktop) ── */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .mobile-nav { display: none !important; }
  nav { display: flex; }
  .nav-cta { display: inline-flex; }

  .navbar { height: 76px; }
  .brand-logo { width: 170px; }

  .page-hero { min-height: 72vh; max-height: none; }
  .page-hero-inner { padding: 72px 40px 64px 56px; }

  .section { padding: 96px 0; }
  .lsec    { padding: 96px 0; }

  .service-grid  { grid-template-columns: repeat(3, 1fr); }
  .portfolio-cards { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .svc-row { grid-template-columns: repeat(3, 1fr); }
  .why-row { grid-template-columns: repeat(3, 1fr); }

  .abt-row   { grid-template-columns: 1.5fr 1fr; }
  .abt-panel { grid-template-columns: 1fr 1fr; }

  .stats-band { grid-template-columns: repeat(4, 1fr); }
  .stats-band .stat-item { border-top: none !important; }
  .stats-band .stat-item:not(:last-child) { border-right: 1px solid var(--border); }

  .contact-layout { grid-template-columns: 1fr 1.4fr; }

  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }

  .cta-band { flex-direction: row; padding: 44px 52px; }
  .cta-band .btn, .cta-band .button { flex-shrink: 0; }
}

/* ── 1280px + (wide) ── */
@media (min-width: 1280px) {
  .container { padding: 0 32px; }
  .page-hero-inner { padding-left: 64px; }
  .hero-content { max-width: 520px; }
}

/* ── max-width: hide nav on small screens ── */
@media (max-width: 1023px) {
  nav { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── max-width: stack on mobile ── */
@media (max-width: 767px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .value-grid,
  .feature-grid,
  .timeline,
  .service-grid,
  .why-row,
  .svc-row    { grid-template-columns: 1fr; }

  .abt-row    { grid-template-columns: 1fr; }
  .abt-panel  { grid-template-columns: 1fr; }
  .abt-panel-visual { min-height: 200px; }

  .about-layout   { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }

  .page-hero-inner { padding: 40px 20px 44px; }
  .page-hero--about-bg,
  .page-hero--services-bg,
  .page-hero--contact-bg,
  .page-hero--home-bg { min-height: 55vh; }

  .page-hero--home-bg .page-hero-inner { padding-top: 32px; padding-bottom: 36px; }
  .page-hero--home-bg .hero-tags { margin-top: 20px; }
  .page-hero--home-bg .hero-actions { margin-top: 22px; }
  .page-hero--home-bg .hero-content > p,
  .page-hero--home-bg .hero-tags { display: none; }
  .hero-actions    { flex-direction: column; }
  .hero-btn-primary,
  .hero-btn-ghost  { width: 100%; justify-content: center; }

  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

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

  .br-desk { display: none; }
  .why-cta-row { flex-direction: column; gap: 10px; }
  .why-cta-line { display: none; }
  .why-cta-btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .form-grid { grid-template-columns: 1fr; }
  .portfolio-cards { grid-template-columns: 1fr; }

  .approach-card-main { flex-direction: column; gap: 14px; }
  .approach-points { grid-template-columns: 1fr; gap: 14px; margin: 26px 0 22px; }
}

.responsive-map {
  width: 100%;
  height: clamp(240px, 32vw, 360px);
  border: 0;
  border-radius: var(--r-lg);
}

@media (max-width: 479px) {
  .container { padding: 0 16px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat-item  { padding: 24px 14px; }
  .nav-cta    { padding: 8px 14px; font-size: 0.8rem; }
  .hero-tag   { font-size: 0.7rem; padding: 5px 10px; }
  .contact-qr-block { padding: 24px 18px; }
  .contact-qr-grid { grid-template-columns: 1fr; }
  .footer-qr-btn { width: 70px; height: 108px; }
}
