/* ============================================================
   Anna Digi Tech – Global Stylesheet
   Design: Midnight Luxe (Dark Luxury Theme)
   No CDN, No Frameworks – Pure CSS
   ============================================================ */

/* ─── CSS Variables ─── */
:root {
  --midnight: #0B0E1A;
  --surface: #141829;
  --surface-light: #1C2038;
  --coral: #FF6B6B;
  --amber: #FFA726;
  --lavender: #A78BFA;
  --pearl: #F0EDE8;
  --pearl-muted: rgba(240,237,232,.55);
  --pearl-faint: rgba(240,237,232,.35);
  --white: #ffffff;
  --gradient-coral: linear-gradient(135deg, #FF6B6B, #FFA726);
  --gradient-lavender: linear-gradient(135deg, #A78BFA, #818CF8);
  --border-glass: rgba(255,255,255,.08);
  --bg-glass: rgba(255,255,255,.04);
  --shadow: 0 8px 32px rgba(0,0,0,.35);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--pearl-muted);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
::placeholder { color: var(--pearl-faint) !important; }
select option { background: var(--surface); color: var(--pearl); }

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

/* ─── Section ─── */
.section { padding: 100px 0; }
.section-label {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-desc {
  color: var(--pearl-muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── Gradient Text ─── */
.gradient-text {
  background: var(--gradient-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Glass Card ─── */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,107,107,.12);
  border-color: rgba(255,107,107,.25);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient-coral);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  transition: transform .3s, box-shadow .3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,107,.3);
}
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--pearl);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  transition: background .3s, border-color .3s;
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}

/* ─── Form Inputs ─── */
.form-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--pearl);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .3s, background .3s;
}
.form-input:focus {
  border-color: var(--coral);
  background: rgba(255,255,255,.1);
}
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; cursor: pointer; }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all .3s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(11,14,26,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pearl);
}
.nav-logo span { color: var(--coral); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--pearl-muted);
  font-weight: 500;
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-cta {
  background: var(--gradient-coral);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: .95rem;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,107,.3);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2.5px; border-radius: 2px; background: var(--pearl); display: block; transition: all .3s; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--midnight);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--pearl); font-size: 1.3rem; font-weight: 500; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--pearl);
  font-size: 2rem;
  cursor: pointer;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,14,26,.94), rgba(11,14,26,.85), rgba(11,14,26,.7));
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.hero-orb-1 { top: 10%; right: 15%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,107,107,.08), transparent 70%); }
.hero-orb-2 { bottom: 20%; left: 5%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(167,139,250,.06), transparent 70%); }
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .85rem;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--pearl);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero p { color: var(--pearl-muted); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; line-height: 1.8; }
.hero-stats { display: flex; gap: 40px; margin-bottom: 8px; }
.hero-stat-num { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--coral); }
.hero-stat-label { color: var(--pearl-faint); font-size: .85rem; margin-top: 2px; }
.hero-disclaimer { color: rgba(255,255,255,.3); font-size: .75rem; margin-top: 12px; }

/* Hero Form */
.hero-form { padding: 36px; }
.hero-form h3 { color: var(--pearl); font-size: 1.35rem; margin-bottom: 6px; font-family: var(--font-heading); font-weight: 700; }
.hero-form .form-desc { color: var(--pearl-muted); font-size: .9rem; margin-bottom: 24px; }
.hero-form .form-group { margin-bottom: 14px; }
.hero-form .btn-primary { width: 100%; padding: 14px; }

/* ─── Clients Strip ─── */
.clients-strip {
  padding: 60px 0;
  background: var(--surface);
  text-align: center;
}
.clients-label {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
.clients-list { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; opacity: .4; }
.clients-list span { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--pearl-faint); }

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: 2.2rem; }
.about-text p { color: var(--pearl-muted); font-size: 1.02rem; margin-bottom: 14px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; margin-bottom: 28px; }
.about-feature { display: flex; gap: 12px; align-items: flex-start; }
.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-coral);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
}
.about-feature h4 { font-size: .92rem; color: var(--pearl); margin-bottom: 2px; font-family: var(--font-heading); font-weight: 600; }
.about-feature p { font-size: .83rem; color: var(--pearl-faint); margin: 0; }
.about-img-wrap { position: relative; }
.about-img-decor {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,107,107,.25);
  border-radius: 16px;
}
.about-img {
  border-radius: 16px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--surface);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 18px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--coral); }
.about-badge-label { font-size: .82rem; color: var(--pearl-faint); }

/* ─── Services Grid ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { padding: 34px 28px; display: flex; flex-direction: column; height: 100%; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: rgba(255,107,107,.1);
}
.service-card h3 { font-size: 1.15rem; color: var(--pearl); margin-bottom: 10px; font-family: var(--font-heading); font-weight: 600; }
.service-card p { color: var(--pearl-muted); font-size: .92rem; margin-bottom: 18px; line-height: 1.7; flex: 1; }
.service-footer { display: flex; align-items: center; justify-content: space-between; }
.service-price {
  font-size: .78rem;
  font-weight: 600;
  color: var(--coral);
  background: rgba(255,107,107,.1);
  padding: 4px 12px;
  border-radius: 50px;
}
.service-link { color: var(--coral); font-weight: 600; font-size: .88rem; }

/* ─── Why Us ─── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 36px 24px; }
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(255,107,107,.08);
}
.why-card h3 { font-size: 1.05rem; color: var(--pearl); margin-bottom: 8px; font-family: var(--font-heading); font-weight: 600; }
.why-card p { font-size: .88rem; color: var(--pearl-muted); line-height: 1.7; }

/* ─── Portfolio ─── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.portfolio-card { padding: 32px 28px; }
.portfolio-cat {
  font-size: .75rem;
  font-weight: 600;
  color: var(--lavender);
  background: rgba(167,139,250,.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  display: inline-block;
}
.portfolio-card h3 { font-size: 1.15rem; color: var(--pearl); margin-bottom: 12px; font-family: var(--font-heading); font-weight: 600; }
.portfolio-metric { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.portfolio-metric-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.portfolio-metric-label { font-size: .82rem; color: var(--pearl-faint); }
.portfolio-card p { color: var(--pearl-muted); font-size: .9rem; line-height: 1.7; }
.portfolio-showcase { border-radius: 16px; width: 100%; max-height: 400px; object-fit: cover; box-shadow: var(--shadow); margin-top: 40px; }

/* ─── Testimonials ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { padding: 34px; display: flex; flex-direction: column; height: 100%; }
.testimonial-quote { font-size: 2rem; color: rgba(255,107,107,.3); margin-bottom: 8px; line-height: 1; }
.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { color: var(--pearl-muted); font-size: .95rem; font-style: italic; line-height: 1.8; flex: 1; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-glass); }
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1rem;
}
.testimonial-author h4 { font-size: .92rem; color: var(--pearl); font-family: var(--font-heading); font-weight: 600; }
.testimonial-author p { font-size: .82rem; color: var(--pearl-faint); margin: 0; }

/* ─── CTA Banner ─── */
.cta-banner { position: relative; padding: 90px 0; overflow: hidden; }
.cta-banner .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-banner .hero-overlay { position: absolute; inset: 0; background: rgba(11,14,26,.87); }
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { font-size: 2.8rem; color: var(--pearl); margin-bottom: 18px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.15; font-family: var(--font-heading); font-weight: 700; }
.cta-banner p { color: var(--pearl-muted); margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form { padding: 40px; }
.contact-form h3 { font-size: 1.35rem; color: var(--pearl); margin-bottom: 6px; font-family: var(--font-heading); font-weight: 700; }
.contact-form .form-desc { color: var(--pearl-muted); font-size: .92rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(255,107,107,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--coral);
}
.contact-info-item h4 { font-size: .95rem; color: var(--pearl); margin-bottom: 2px; font-family: var(--font-heading); font-weight: 600; }
.contact-info-item a { font-size: .9rem; color: var(--pearl-muted); }
.contact-info-item a:hover { color: var(--coral); }
.contact-info-item p { font-size: .9rem; color: var(--pearl-muted); margin: 0; line-height: 1.6; }
.contact-map { border-radius: 14px; overflow: hidden; height: 220px; border: 1px solid var(--border-glass); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.business-hours { padding: 24px; margin-top: 20px; }
.business-hours h4 { font-size: 1rem; color: var(--pearl); margin-bottom: 12px; font-family: var(--font-heading); font-weight: 600; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .9rem; }
.hours-row:not(:last-child) { border-bottom: 1px solid var(--border-glass); }
.hours-day { color: var(--pearl-muted); }
.hours-time { color: var(--pearl); font-weight: 600; }

/* ─── Footer ─── */
.footer { background: var(--midnight); color: var(--pearl-muted); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--pearl); display: inline-block; margin-bottom: 14px; }
.footer-logo span { color: var(--coral); }
.footer-about { font-size: .92rem; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--pearl-faint);
  transition: background .3s, color .3s;
}
.footer-social:hover { background: var(--coral); color: var(--white); }
.footer h4 { color: var(--pearl); font-size: 1rem; margin-bottom: 18px; font-family: var(--font-heading); font-weight: 600; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.55); font-size: .88rem; }
.footer ul a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--coral); }
.footer-bottom-links a:hover { text-decoration: underline; }

/* ─── Page Header (for inner pages) ─── */
.page-header {
  padding: 160px 0 80px;
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,107,.06), transparent 70%);
  filter: blur(40px);
}
.page-header h1 { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--pearl); margin-bottom: 16px; }
.page-header p { color: var(--pearl-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 20px; font-size: .88rem; }
.breadcrumb a { color: var(--coral); }
.breadcrumb span { color: var(--pearl-faint); }

/* ─── Compliance Pages ─── */
.compliance-content { max-width: 800px; margin: 0 auto; }
.compliance-content h2 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--pearl); margin: 40px 0 14px; font-weight: 700; }
.compliance-content h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--pearl); margin: 28px 0 10px; font-weight: 600; }
.compliance-content p { color: var(--pearl-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 14px; }
.compliance-content ul { padding-left: 24px; margin-bottom: 14px; }
.compliance-content ul li { color: var(--pearl-muted); font-size: .95rem; line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.compliance-content a { color: var(--coral); }
.compliance-content a:hover { text-decoration: underline; }

/* ─── Process Section ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.process-step { text-align: center; position: relative; counter-increment: step; }
.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
}
.process-step h4 { font-size: 1rem; color: var(--pearl); margin-bottom: 8px; font-family: var(--font-heading); font-weight: 600; }
.process-step p { font-size: .88rem; color: var(--pearl-muted); line-height: 1.7; }

/* ─── Team Grid ─── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.team-card h4 { font-size: 1rem; color: var(--pearl); margin-bottom: 4px; font-family: var(--font-heading); font-weight: 600; }
.team-card p { font-size: .85rem; color: var(--pearl-faint); }

/* ─── Pricing Table ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pricing-card { padding: 36px 28px; text-align: center; position: relative; overflow: hidden; }
.pricing-card.featured { border-color: rgba(255,107,107,.3); }
.pricing-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--gradient-coral);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.3rem; color: var(--pearl); margin-bottom: 8px; font-family: var(--font-heading); font-weight: 700; }
.pricing-amount { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--coral); margin: 16px 0 6px; }
.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--pearl-faint); }
.pricing-desc { font-size: .9rem; color: var(--pearl-muted); margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 8px 0; font-size: .9rem; color: var(--pearl-muted); border-bottom: 1px solid var(--border-glass); display: flex; gap: 10px; align-items: center; }
.pricing-features li::before { content: '✓'; color: var(--coral); font-weight: 700; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-glass); }
.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--pearl);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question span { color: var(--coral); font-size: 1.4rem; transition: transform .3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 0 20px; color: var(--pearl-muted); font-size: .95rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

/* ─── Success Message ─── */
.success-message { text-align: center; padding: 40px 0; display: none; }
.success-message.show { display: block; }
.success-icon { font-size: 3.5rem; color: var(--coral); margin-bottom: 12px; }
.success-message h4 { color: var(--pearl); font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px; }
.success-message p { color: var(--pearl-muted); font-size: .95rem; }

/* ─── Scroll Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid, .portfolio-grid, .testimonials-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .hero h1 { font-size: 2.4rem; }
  .page-header h1 { font-size: 2.2rem; }
  .cta-banner h2 { font-size: 2rem; }
  .process-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}
@media (min-width: 769px) {
  .hamburger { display: none; }
}

/* ============================================================
   Compliance + Expanded Content additions (April 2026)
   ============================================================ */

/* ─── Privacy Consent Checkbox (compliance: data-collection forms) ─── */
.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 18px;
  font-size: .82rem;
  color: var(--pearl-muted);
  line-height: 1.55;
}
.consent-row input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--coral);
  cursor: pointer;
}
.consent-row label { cursor: pointer; }
.consent-row a { color: var(--coral); text-decoration: underline; }

/* ─── Tools / Platforms Strip (with non-affiliation note) ─── */
.tools-strip {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 32px 28px;
  margin-top: 28px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px 22px;
  margin: 18px 0 14px;
}
.tools-item {
  font-size: .9rem;
  color: var(--pearl-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.tools-item::before {
  content: '◆';
  color: var(--coral);
  font-size: .7rem;
}
.tools-disclaimer {
  display: block;
  font-size: .78rem;
  color: var(--pearl-faint);
  font-style: italic;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
  margin-top: 8px;
  line-height: 1.6;
}

/* ─── Industries Grid Cards ─── */
.industries-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.industry-mini-card {
  padding: 22px 18px;
  text-align: center;
  border-radius: 14px;
}
.industry-mini-card .ic {
  font-size: 1.9rem;
  margin-bottom: 8px;
  display: block;
}
.industry-mini-card h4 {
  font-family: var(--font-heading);
  color: var(--pearl);
  font-size: .92rem;
  margin: 0 0 4px;
  font-weight: 600;
}
.industry-mini-card p {
  color: var(--pearl-faint);
  font-size: .78rem;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .industries-mini-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Coverage / Local + Pan-India Strip ─── */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 1024px) { .coverage-grid { grid-template-columns: 1fr; } }
.coverage-card { padding: 32px; }
.coverage-card h3 {
  font-family: var(--font-heading);
  color: var(--pearl);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.coverage-card .lead {
  color: var(--coral);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
  display: block;
}
.coverage-card p {
  color: var(--pearl-muted);
  font-size: .94rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ─── Disclaimer block ─── */
.compliance-note {
  background: rgba(167,139,250,.06);
  border-left: 3px solid var(--lavender, #A78BFA);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: .87rem;
  color: var(--pearl-muted);
  line-height: 1.7;
  margin: 22px 0;
}
.compliance-note strong { color: var(--pearl); }

/* ─── Two-Column Text Block (used in expanded About/Services) ─── */
.dual-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 26px;
}
@media (max-width: 1024px) { .dual-text { grid-template-columns: 1fr; } }
.dual-text h4 {
  font-family: var(--font-heading);
  color: var(--pearl);
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.dual-text p {
  color: var(--pearl-muted);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ─── Compact info chip (for legal page header dates) ─── */
.legal-meta {
  display: inline-flex;
  gap: 18px;
  padding: 8px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--pearl-muted);
  margin-top: 8px;
}
.legal-meta strong { color: var(--pearl); font-weight: 600; }

/* ─── Process number for "How We Work" homepage ─── */
.proc-num-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-coral, linear-gradient(135deg,#FF6B6B,#FFA726));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}

/* ─── Sample-project label (replaces named clients) ─── */
.sample-label {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,107,107,.1);
  border: 1px solid rgba(255,107,107,.3);
  border-radius: 999px;
  color: var(--coral);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
