/* ===================================================================
   JC Pages — Web Design & SEO, Fremont CA
   Shared stylesheet (responsive: mobile / tablet / desktop / large)
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --blue: #1f6bff;
  --blue-dark: #0b4fd6;
  --blue-bright: #2e7bff;
  --blue-soft: #eef4ff;
  --blue-soft-2: #e2ecff;
  --navy: #0c1a33;
  --ink: #1a2235;
  --muted: #5b6b85;
  --muted-2: #7a89a3;
  --bg: #ffffff;
  --bg-soft: #eef4ff;
  --border: #e2e9f5;
  --card: #ffffff;
  --footer-bg: #070b14;
  --footer-muted: #8a93a6;
  --star: #ffb020;
  --shadow-sm: 0 4px 14px rgba(16, 42, 94, 0.06);
  --shadow-md: 0 14px 40px rgba(16, 42, 94, 0.10);
  --shadow-lg: 0 30px 70px rgba(16, 42, 94, 0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 70px 0; }
.section-tight { padding: 48px 0; }
.text-blue { color: var(--blue-bright); }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 620px; font-size: 1.02rem; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 107, 255, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(31, 107, 255, 0.42); }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.6px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.6px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.04rem; }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); background: rgba(255,255,255,0.94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 11px; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.32rem; color: var(--navy); }
.brand .logo-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(31,107,255,.35);
  transition: transform .4s var(--ease);
}
.brand:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }
.brand .logo-mark svg { width: 22px; height: 22px; }
.brand b { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li > a, .nav-links > li > .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: 0.97rem; color: var(--ink);
  padding: 10px 14px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover, .nav-links > li > .dropdown-toggle:hover { color: var(--blue); background: var(--blue-soft); }
.nav-links .caret { width: 14px; height: 14px; transition: transform .3s var(--ease); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 12px; width: 320px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 120;
}
.dropdown-menu::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown:hover .caret, .dropdown.open .caret { transform: rotate(180deg); }
.dropdown-item {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 13px; border-radius: 12px; transition: background .2s, transform .2s;
}
.dropdown-item:hover { background: var(--blue-soft); transform: translateX(4px); }
.dropdown-item .di-icon {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; background: var(--blue-soft); color: var(--blue);
  transition: background .25s, color .25s;
}
.dropdown-item:hover .di-icon { background: var(--blue); color: #fff; }
.dropdown-item .di-icon svg { width: 22px; height: 22px; }
.dropdown-item h4 { font-size: 0.98rem; margin-bottom: 2px; }
.dropdown-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: var(--radius-pill);
  box-shadow: 0 10px 22px rgba(31,107,255,.32); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.nav-phone:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(31,107,255,.42); }
.nav-phone svg { width: 17px; height: 17px; }

/* Hamburger */
.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--border); background: #fff; position: relative; flex: none;
  transition: background .2s, border-color .2s;
}
.hamburger span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform .35s var(--ease), opacity .25s;
}
.hamburger span:nth-child(1) { transform: translate(-50%, -7px); }
.hamburger span:nth-child(3) { transform: translate(-50%, 5px); }
.hamburger.active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: #fff; padding: 22px; overflow-y: auto;
  transform: translateX(100%); transition: transform .42s var(--ease);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a, .mobile-menu .m-toggle {
  display: flex; align-items: center; justify-content: space-between;
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: 1.08rem; color: var(--navy);
  padding: 16px 8px; border-bottom: 1px solid var(--border); width: 100%;
}
.mobile-menu .m-sub { display: none; flex-direction: column; padding-left: 12px; }
.mobile-menu .m-sub.open { display: flex; }
.mobile-menu .m-sub a { font-size: 0.98rem; color: var(--muted); border-bottom: 1px dashed var(--border); }
.mobile-menu .m-toggle .caret { transition: transform .3s; width: 16px; height: 16px; }
.mobile-menu .m-toggle.open .caret { transform: rotate(180deg); }
.mobile-menu .nav-phone { justify-content: center; margin-top: 18px; }
.menu-backdrop {
  position: fixed; inset: 0; background: rgba(8,18,40,.45); z-index: 98; opacity: 0; visibility: hidden; transition: opacity .3s;
}
.menu-backdrop.open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; padding: 64px 0 30px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 540px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(46,123,255,.16), transparent 70%); z-index: -1;
}
.hero-head { text-align: center; max-width: 760px; margin: 0 auto 18px; }
.hero h1 { font-size: clamp(2.3rem, 6.2vw, 4.1rem); font-weight: 800; line-height: 1.05; }
.hero h1 .text-blue { display: inline; }
.hero p { color: var(--muted); font-size: 1.12rem; max-width: 560px; margin: 18px auto 0; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--muted); font-size: .92rem; }
.trust-pill .stars { color: var(--star); letter-spacing: 2px; }

/* Carousel */
.carousel { position: relative; max-width: 940px; margin: 44px auto 0; }
.carousel-track { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 9; background: #dfe7f5; }
.carousel-slide {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.04);
  transition: opacity .7s var(--ease), transform .9s var(--ease); pointer-events: none;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.carousel-slide.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.carousel-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px 20px;
  background: linear-gradient(to top, rgba(7,11,20,.82), transparent);
  color: #fff; font-family: "Poppins", sans-serif;
}
.carousel-cap span { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.carousel-cap strong { font-size: 1.15rem; font-weight: 600; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--navy);
  display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .3s, background .25s, color .25s;
}
.carousel-btn:hover { background: var(--blue); color: #fff; transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: -10px; } .carousel-btn.next { right: -10px; }
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-dots { display: flex; gap: 9px; justify-content: center; margin-top: 20px; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--blue-soft-2); transition: width .3s, background .3s; }
.carousel-dots button.active { width: 30px; border-radius: 6px; background: var(--blue); }

/* ===================================================================
   STATS BAR
   =================================================================== */
.stats-wrap { margin-top: 46px; }
.stats {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 30px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -8px; top: 12%; height: 76%; width: 1px; background: var(--border); }
.stat .num { font-family: "Poppins", sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--navy); }
.stat .num .text-blue { color: var(--blue); }
.stat .label { color: var(--muted); font-size: .88rem; margin-top: 2px; }
.stats-banner {
  margin-top: 14px; background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff; text-align: center; border-radius: var(--radius); padding: 16px 22px;
  font-weight: 500; font-size: .98rem; box-shadow: 0 14px 30px rgba(31,107,255,.28);
}

/* ===================================================================
   FEATURE / SERVICES SPLIT
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.split .copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.split .copy p { color: var(--muted); margin-bottom: 22px; }
.svc-cards { display: grid; gap: 18px; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--blue-bright), var(--blue-dark)); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); margin-bottom: 16px; transition: transform .4s var(--ease), background .3s, color .3s; }
.svc-card:hover .ic { background: var(--blue); color: #fff; transform: rotate(-6deg) scale(1.05); }
.svc-card .ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .95rem; }
.svc-card .more { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: .9rem; margin-top: 14px; }
.svc-card .more svg { width: 16px; height: 16px; transition: transform .3s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-band { background: var(--blue-soft); border-radius: var(--radius-lg); padding: 54px 30px; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(closest-side, rgba(46,123,255,.18), transparent); }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 22px; }

/* ===================================================================
   "DIFFERENT" — features list + copy
   =================================================================== */
.feature-list { display: grid; gap: 16px; }
.feature-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.feature-item .ftitle { display: flex; align-items: center; gap: 11px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
.feature-item .check { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--blue); color: #fff; display: grid; place-items: center; }
.feature-item .check svg { width: 16px; height: 16px; }
.feature-item p { color: var(--muted); font-size: .93rem; padding-left: 37px; }

/* ===================================================================
   WORK / PORTFOLIO
   =================================================================== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  background: #fff;
}
.work-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.work-thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.07); }
.work-meta { padding: 18px 20px 20px; }
.work-meta .tag { font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.work-meta h3 { font-size: 1.16rem; margin: 4px 0 6px; }
.work-meta p { color: var(--muted); font-size: .9rem; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 1000px; margin: 0 auto; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card .quote-mark { font-family: Georgia, serif; font-size: 4rem; line-height: 0; color: var(--blue-soft-2); position: absolute; top: 30px; right: 26px; }
.testi-card .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--ink); font-size: 1.02rem; line-height: 1.65; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testi-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--blue-soft); }
.testi-author .name { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--navy); }
.testi-author .role { color: var(--blue); font-size: .87rem; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--blue-soft-2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.04rem; color: var(--navy); text-align: left;
}
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; transition: transform .35s var(--ease), background .25s, color .25s; }
.faq-item.open .faq-q .pm { background: var(--blue); color: #fff; transform: rotate(135deg); }
.faq-q .pm svg { width: 18px; height: 18px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 22px 22px; color: var(--muted); }

/* ===================================================================
   FINAL CTA
   =================================================================== */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, #0c1a33, #123163); border-radius: var(--radius-lg); padding: 70px 40px; }
.final-cta::before { content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border: 2px solid rgba(255,255,255,.08); border-radius: 50%; }
.final-cta::after { content: ""; position: absolute; right: 20px; bottom: -120px; width: 300px; height: 300px; border: 2px solid rgba(255,255,255,.06); border-radius: 50%; }
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3rem); max-width: 540px; position: relative; }
.final-cta .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; position: relative; }
.final-cta .btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.final-cta .btn-outline:hover { background: #fff; color: var(--navy); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--footer-bg); color: #c7cedb; padding: 64px 0 30px; margin-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .fdesc { color: var(--footer-muted); font-size: .92rem; max-width: 300px; }
.footer .fsocial { display: flex; gap: 10px; margin-top: 18px; }
.footer .fsocial a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #c7cedb; transition: background .25s, color .25s, transform .3s; }
.footer .fsocial a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer .fsocial svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a, .footer .fcontact div { color: var(--footer-muted); font-size: .93rem; transition: color .2s; display: inline-flex; gap: 8px; align-items: flex-start; }
.footer ul a:hover { color: #fff; }
.footer .fcontact div { margin-bottom: 11px; }
.footer .fcontact svg { width: 16px; height: 16px; color: var(--blue-bright); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 46px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--footer-muted); font-size: .86rem; }

/* ===================================================================
   SUB-PAGE (SEO / Web Design) — hero & shared blocks
   =================================================================== */
.page-hero { position: relative; padding: 60px 0 50px; background: linear-gradient(180deg, var(--blue-soft), #fff); overflow: hidden; }
.page-hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 800; }
.page-hero p { color: var(--muted); font-size: 1.1rem; margin: 18px 0 26px; }
.page-hero .hero-actions { justify-content: flex-start; margin-top: 0; }
.page-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { width: 14px; height: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-card .step { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2rem; color: var(--blue-soft-2); transition: color .3s; }
.process-card:hover .step { color: var(--blue); }
.process-card h3 { font-size: 1.1rem; margin: 6px 0 8px; }
.process-card p { color: var(--muted); font-size: .92rem; }

.bullet-list { display: grid; gap: 16px; }
.bullet-list li { display: flex; gap: 13px; align-items: flex-start; }
.bullet-list .bi { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.bullet-list .bi svg { width: 17px; height: 17px; }
.bullet-list strong { font-family: "Poppins", sans-serif; color: var(--navy); display: block; margin-bottom: 2px; }
.bullet-list span { color: var(--muted); font-size: .94rem; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow-md); position: relative; }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: 18px; right: 18px; background: var(--blue); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); }
.price-card .pname { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--blue); letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
.price-card .pprice { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--navy); margin: 8px 0 4px; }
.price-card .pprice small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-card .pdesc { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.price-card ul { margin-bottom: 24px; display: grid; gap: 12px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: .93rem; }
.price-card ul li svg { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ===================================================================
   SCROLL REVEAL ANIMATIONS
   =================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */

/* Large desktop */
@media (min-width: 1440px) {
  :root { --container: 1280px; }
  .hero h1 { font-size: 4.4rem; }
  .section { padding: 84px 0; }
}

/* Tablet & below: show hamburger, hide desktop nav */
@media (max-width: 1024px) {
  .nav-links, .nav-cta .nav-phone { display: none; }
  .hamburger { display: block; }
  .nav-cta { gap: 0; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .split { gap: 34px; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero-img { max-width: 560px; }
}

/* Tablet portrait */
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer .fdesc { max-width: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; padding: 28px 18px; }
  .stat:nth-child(2)::after { display: none; }
  .stat::after { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .container { padding: 0 18px; }
  .hero { padding: 40px 0 20px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .work-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .carousel-btn { width: 40px; height: 40px; }
  .carousel-btn.prev { left: 6px; } .carousel-btn.next { right: 6px; }
  .cta-band, .final-cta { padding: 40px 22px; }
  .testi-card, .price-card { padding: 26px 22px; }
  .final-cta .actions .btn { flex: 1 1 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
  .brand { font-size: 1.16rem; }
}
