/* ============================================================
   Career & Digital Solutions — Swathi Chigurla
   Apple-inspired design language
   Minimal · Spacious · Clean · Subtle brand accents (navy/purple/teal)
   ============================================================ */

:root {
  --navy: #0B1B3A;
  --navy-2: #16255A;
  --purple: #7C3AED;
  --teal: #14B8A6;

  --ink: #1d1d1f;            /* Apple black — primary text */
  --muted: #5f6268;          /* secondary text */
  --subtle: #87878c;         /* tertiary / captions */
  --bg: #fbfbfd;             /* Apple light grey */
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --line: #e8e8ed;           /* hairline */
  --ring: rgba(124, 58, 237, .14);

  --grad-brand: linear-gradient(100deg, #7C3AED 0%, #14B8A6 100%);
  --grad-navy: linear-gradient(160deg, #0B1B3A 0%, #16255A 52%, #12304B 100%);

  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
  --shadow-md: 0 12px 32px -14px rgba(0,0,0,.14);
  --shadow-lg: 0 30px 70px -30px rgba(0,0,0,.28);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --header-h: 74px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.025em;
}
h2 { font-size: clamp(1.85rem, 3.4vw, 2.55rem); letter-spacing: -0.028em; }
h3 { font-size: 1.16rem; letter-spacing: -0.015em; }

.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
.container-narrow { width: min(820px, 100% - 2.5rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.7rem;
  border-radius: 980px;                 /* squircle / capsule */
  font-family: var(--font);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.006em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; }

.btn-primary {                     /* Apple: solid, mostly dark */
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {                      /* on dark backgrounds: hairline */
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.65); transform: translateY(-2px); }

.btn-outline {
  color: var(--navy);
  border: 1px solid rgba(11,27,58,.22);
  background: var(--surface);
}
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }

.btn-link {
  padding: 0;
  color: var(--purple);
  border-radius: 0;
  font-weight: 500;
}
.btn-link svg { transition: transform 0.22s ease; }
.btn-link:hover svg { transform: translateX(4px); }

.btn-block { width: 100%; }

/* Hero primary CTA — Apple style: white fill on dark */
.hero .btn-primary { background: #fff; color: var(--ink); }
.hero .btn-primary:hover { background: #f2f2f4; box-shadow: var(--shadow-lg); }

/* ---------- Section shells ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section { border-top: 1px solid var(--line); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.6rem, 5vw, 4rem); }

.section-kicker {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 1rem;
}
.section-alt .section-kicker { color: var(--subtle); }

.section-sub { color: var(--muted); margin-top: 0.9rem; font-size: 1.04rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(251, 253, 253, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-weight: 700; font-size: 1rem; color: #fff; letter-spacing: -0.015em; transition: color 0.3s ease; }
.brand-tag { font-size: 0.74rem; font-weight: 400; color: rgba(255,255,255,.65); transition: color 0.3s ease; }
.site-header.scrolled .brand-name { color: var(--navy); }
.site-header.scrolled .brand-tag { color: var(--muted); }

/* Desktop nav */
.main-nav .nav-list { display: flex; align-items: center; gap: calc(clamp(0.2rem, 0.6vw, 0.55rem) + 0.1rem); }
.nav-list a {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-list a:hover { color: #fff; background: rgba(255,255,255,.1); }
.site-header.scrolled .nav-list a { color: var(--muted); }
.site-header.scrolled .nav-list a:hover { color: var(--navy); background: transparent; }

.nav-list .nav-cta {
  margin-left: 0.4rem;
  color: #fff;
  background: var(--navy);
}
.site-header.scrolled .nav-list .nav-cta { color: #fff; }
.nav-list .nav-cta:hover { color: #fff; background: var(--navy); box-shadow: var(--shadow-sm); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 10px;
}
.nav-toggle span { height: 2px; width: 100%; border-radius: 2px; background: #fff; transition: transform 0.28s ease, opacity 0.2s ease; }
.site-header.scrolled .nav-toggle span { background: var(--navy); }
.site-header.is-solid .nav-toggle span { background: var(--navy); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--grad-navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav-list a { display: block; padding: 0.8rem 0.9rem; color: #fff; font-weight: 500; border-radius: var(--radius-sm); }
.mobile-nav-list a:hover { background: rgba(255,255,255,.08); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--grad-navy);
  padding: calc(var(--header-h) + clamp(4rem, 10vw, 7.5rem)) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.cursor-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.hero-bg::before, .hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-bg::before {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(124,58,237,.5), transparent 62%);
  top: -160px; right: -140px;
}
.hero-bg::after {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(20,184,166,.4), transparent 62%);
  bottom: -180px; left: -140px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(190,200,235,.9);
  margin-bottom: 1.4rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.hero h1 span {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 1.35rem;
  max-width: 33rem;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.hero-trust {
  margin-top: 1.7rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
}
.hero-trust::before { content: "— "; color: var(--teal); }

/* Hero visual */
.hero-visual { position: relative; padding: 1.4rem 0; }

.visual-card-main {
  position: relative;
  background: rgba(11,27,58,.28);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.visual-photo { width: 100%; height: 195px; object-fit: cover; display: block; }
.visual-body {
  padding: 1.5rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
.visual-eyebrow { font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(160,220,214,.95); }
.visual-title { font-weight: 700; font-size: 1.3rem; color: #fff; line-height: 1.35; letter-spacing: -0.015em; }
.visual-orangeline { height: 5px; border-radius: 999px; background: var(--grad-brand); width: 58%; }
.visual-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.visual-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}

.visual-card-float {
  position: absolute;
  bottom: -14px;
  left: -18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 260px;
}
.visual-dot { width: 11px; height: 11px; flex: none; border-radius: 50%; background: var(--dot, var(--purple)); }
.visual-card-float strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.92rem; line-height: 1.3; }
.visual-card-float > div > span { font-size: 0.8rem; color: var(--muted); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.about-copy p { margin-bottom: 1.05rem; color: var(--muted); font-size: 1.03rem; }
.about-copy strong { color: var(--purple); font-weight: 600; }

.about-side { display: flex; flex-direction: column; gap: 1.4rem; }
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.7rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-xs);
}
.about-card h3 { margin-bottom: 1.1rem; font-size: 1.08rem; }

.check-list li { position: relative; padding: 0.42rem 0 0.42rem 1.9rem; font-weight: 500; color: var(--ink); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0.4rem;
  width: 1.32rem; height: 1.32rem;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad-brand);
  border-radius: 50%;
}

.about-note {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 3.5vw, 2.4rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(124,58,237,.3); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.35rem;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { margin-bottom: 0.7rem; }
.service-card > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.15rem; }

.service-list {
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.32rem 1rem;
}
.service-list li { position: relative; padding-left: 1.15rem; font-size: 0.9rem; color: var(--muted); }
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.service-card .btn-link { margin-top: auto; }

/* ---------- Who I help ---------- */
.pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pill-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.35rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.pill-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(20,184,166,.4); }
.pill-emoji {
  font-style: normal;
  font-size: 1.25rem;
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(124,58,237,.08);
}

.who-note {
  max-width: 720px;
  margin: 2.4rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.03rem;
  padding-top: 0;
}

/* ---------- Why work with me ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; justify-items: center; }
.why-card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.why-num {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--grad-brand);
  margin-bottom: 1.05rem;
}
.why-card h3 { margin-bottom: 0.5rem; font-size: 1.04rem; }
.why-card p { color: var(--muted); font-size: 0.95rem; }
.why-card em { color: var(--teal); font-style: normal; font-weight: 600; }
.why-card:nth-child(5) { grid-column: 1 / -1; max-width: 720px; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: flex; flex-direction: column; gap: 2.8rem; }

.portfolio-cat { display: flex; align-items: center; gap: 0.6rem; font-size: 1.08rem; margin-bottom: 1.25rem; }
.cat-dot { width: 10px; height: 10px; border-radius: 50%; }
.cat-dot-career { background: var(--purple); }
.cat-dot-websites { background: var(--teal); }
.cat-dot-creative { background: linear-gradient(100deg, var(--purple), var(--teal)); }

.portfolio-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }

.work-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.7rem 0.7rem 1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(124,58,237,.25); }

.work-art {
  position: relative;
  height: 172px;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  margin-bottom: 0.85rem;
  background: var(--navy);
}
.work-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.art-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,27,58,.45) 0%, rgba(11,27,58,.04) 45%, rgba(11,27,58,.72) 100%);
}
.art-label {
  position: absolute;
  left: 1rem; bottom: 0.95rem;
  z-index: 2;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
}
.art-badge {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: rgba(11,27,58,.55);
  border: 1px solid rgba(255,255,255,.28);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.art-badge-teal { background: rgba(20,184,166,.92); border-color: transparent; }
.art-badge-purple { background: rgba(124,58,237,.92); border-color: transparent; }

.work-title { display: block; font-weight: 600; font-size: 0.95rem; color: var(--navy); }

.portfolio-cta { text-align: center; margin-top: 3.2rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.testimonial-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem 1.6rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quote-mark {
  position: absolute;
  top: 0.7rem; right: 1.4rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(124,58,237,.14);
}
.testimonial-card blockquote { font-size: 1rem; color: var(--muted); line-height: 1.75; font-weight: 400; }
.testimonial-card figcaption {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  background: var(--grad-brand);
}

.rating-note { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.6rem; }
.rating-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--ink);
}
.rating-item .stars { color: #F2A900; letter-spacing: 2px; font-size: 1.02rem; }
.rating-item strong { color: var(--navy); }

.rating-disclaimer { text-align: center; margin-top: 1.1rem; font-size: 0.8rem; color: var(--subtle); }

/* ---------- Process ---------- */
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.4rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.process-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.process-num {
  display: inline-block;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); }

.process-list .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.3rem;
  right: -1.2rem;
  width: 1.2rem;
  height: 1px;
  background: var(--line);
}

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; max-width: 980px; margin: 0 auto; }
.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pricing-card h3 { font-size: 1.04rem; }
.pricing-quote {
  color: var(--muted);
  font-size: 0.92rem;
  border-radius: 999px;
  background: rgba(124,58,237,.06);
  border: 1px solid rgba(124,58,237,.16);
  padding: 0.5rem 1.1rem;
}
.pricing-card .btn-link { margin-top: auto; padding-bottom: 0.3rem; }

.pricing-caption { text-align: center; margin-top: 2rem; color: var(--muted); font-size: 0.98rem; }
.pricing-cta { text-align: center; margin-top: 1.9rem; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: rgba(124,58,237,.45); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple);
  background: rgba(124,58,237,.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--grad-brand);
  color: #fff;
}

.faq-answer { padding: 0 1.35rem 1.25rem; color: var(--muted); font-size: 0.95rem; }
.faq-answer p + p { margin-top: 0.6rem; }

/* ---------- Contact ---------- */
.section-contact {
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(124,58,237,.06), transparent 55%),
    radial-gradient(80% 70% at 0% 100%, rgba(20,184,166,.07), transparent 55%),
    var(--bg);
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-xs);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.05rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.req { color: #E5484D; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: #f2f2f4;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; }

.fieldset { border: 0; padding: 0; margin-bottom: 1.05rem; }
.fieldset legend {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.radio-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio-pill { position: relative; display: inline-flex; }
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span {
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f2f2f4;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.radio-pill span:hover { border-color: rgba(124,58,237,.5); }
.radio-pill input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.radio-pill input:focus-visible + span { outline: 3px solid rgba(124,58,237,.3); outline-offset: 2px; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.form-status { margin-top: 0.9rem; font-size: 0.9rem; color: #0E9384; font-weight: 600; text-align: center; }
.form-status.error { color: #E5484D; }

/* Direct contact panel */
.contact-direct {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.7rem, 3.5vw, 2.2rem);
  box-shadow: var(--shadow-xs);
}
.contact-direct h3 { font-size: 1.08rem; margin-bottom: 1.2rem; }
.direct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.direct-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.direct-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(124,58,237,.35); }
.channel-icon {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--grad-brand);
}
.channel-icon svg { width: 21px; height: 21px; }
.direct-body { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.direct-body strong { font-weight: 600; color: var(--navy); font-size: 0.96rem; }
.direct-body span { font-size: 0.86rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.direct-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.4rem; }
.direct-links { display: flex; gap: 1.4rem; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px dashed var(--line); }
.direct-links a { font-weight: 500; font-size: 0.9rem; color: var(--muted); transition: color 0.2s ease; }
.direct-links a:hover { color: var(--purple); }

/* ---------- Footer (Apple-style, light) ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand-footer .brand-name { color: var(--navy); }
.footer-brand .brand-footer .brand-tag { color: var(--muted); }
.footer-brand .brand-footer .brand-mark { box-shadow: var(--shadow-sm); }
.footer-tagline { margin-top: 1.3rem; font-weight: 500; font-size: 0.95rem; color: var(--muted); }
.footer-nav-title {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 1rem;
}
.footer-nav ul, .footer-services ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--purple); }
.footer-services li { font-size: 0.92rem; color: var(--muted); }

.footer-copy {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--subtle);
}
.footer-copy a { color: var(--subtle); transition: color 0.2s ease; }
.footer-copy a:hover { color: var(--purple); }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(37, 211, 102, .6);
  animation: wa-pulse 2.6s ease-out infinite;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7); }

@keyframes wa-pulse {
  0% { box-shadow: 0 8px 22px -8px rgba(37, 211, 102, .6), 0 0 0 0 rgba(37, 211, 102, .4); }
  70% { box-shadow: 0 8px 22px -8px rgba(37, 211, 102, .6), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 22px -8px rgba(37, 211, 102, .6), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Dedicated pages (Privacy Policy) ---------- */
.site-header.is-solid {
  background: rgba(251,253,253,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-solid .brand-name { color: var(--navy); }
.site-header.is-solid .brand-tag { color: var(--muted); }
.site-header.is-solid .nav-list a { color: var(--muted); }
.site-header.is-solid .nav-list a:hover { color: var(--navy); background: transparent; }
.site-header.is-solid .nav-list .nav-cta { color: #fff; background: var(--navy); }
.site-header.is-solid .nav-list .nav-cta:hover { color: #fff; }

.page-hero {
  position: relative;
  background: var(--grad-navy);
  color: #fff;
  padding: calc(var(--header-h) + 2.8rem) 0 2.8rem;
  overflow: hidden;
}
.page-hero .hero-bg { opacity: .6; }
.page-hero .container { position: relative; }
.page-back {
  display: inline-block;
  font-weight: 500;
  font-size: 0.88rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 1.3rem;
  transition: color 0.2s ease;
}
.page-back:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.2vw, 2.7rem); letter-spacing: -0.03em; }
.page-meta { margin-top: 0.9rem; color: rgba(255,255,255,.7); font-size: 0.93rem; line-height: 1.7; }

.policy { padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(4rem, 8vw, 6rem); }
.policy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-xs);
}
.policy-card h2 { font-size: 1.3rem; margin: 2.1rem 0 0.75rem; }
.policy-card h2:first-child { margin-top: 0; }
.policy-card p { color: var(--muted); margin-bottom: 0.95rem; }
.policy-card strong { color: var(--navy); font-weight: 600; }
.policy-card ul { margin: 0 0 1.1rem; }
.policy-card ul li { position: relative; padding: 0.28rem 0 0.28rem 1.6rem; color: var(--muted); }
.policy-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.policy-card a { color: var(--purple); font-weight: 600; }
.policy-card a:hover { text-decoration: underline; }
.policy-card .note {
  margin: 1.6rem 0;
  background: rgba(124,58,237,.06);
  border-left: 3px solid var(--purple);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  line-height: 1.8;
}
.policy-small { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px dashed var(--line); font-size: 0.84rem; color: var(--subtle); }

/* ---------- Reveal on scroll ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list .process-step:not(:last-child)::after { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .pill-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-row { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .form-row { grid-template-columns: 1fr; }
  .direct-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .services-grid, .why-grid, .pill-grid, .process-list, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .visual-card-float { left: 50%; transform: translateX(-50%); bottom: -14px; width: 92%; }
  .visual-card-main { padding-bottom: 2.2rem; }
  .brand-tag { display: none; }
  .section-head .section-sub { font-size: 0.99rem; }
  .direct-actions .btn { flex: 1 1 42%; }
}