:root {
  /* Core palette — soft lavender to white, like the reference */
  --primary:        #7B5CF0;
  --primary-light:  #A78BFA;
  --primary-dark:   #5338C9;
  --primary-glow:   rgba(123, 92, 240, 0.18);
  --accent-coral:   #F07B7B;
  --accent-blue:    #60A5FA;
  --accent-green:   #34D399;

  --ink:            #1A1433;
  --ink-soft:       #2E2556;
  --text:           #322e48;
  --text-soft:      #9B92B8;
  --white:          #ffffff;

  /* Background: very pale lavender, matching reference */
  --bg:             #F0EEFF;
  --bg-card:        rgba(255, 255, 255, 0.75);
  --line:           rgba(123, 92, 240, 0.12);
  --line-solid:     #E5DEFF;

  /* Gradients */
  --gradient:         linear-gradient(135deg, #7B5CF0 0%, #9B7AE8 60%, #C4B0FF 100%);
  --gradient-hero:    linear-gradient(145deg, #EDE9FF 0%, #F5F0FF 40%, #FAF8FF 70%, #EEF2FF 100%);
  --gradient-soft:    linear-gradient(135deg, rgba(123,92,240,.08), rgba(183,156,255,.08));
  --gradient-card:    linear-gradient(160deg, rgba(255,255,255,0.92) 0%, rgba(240,236,255,0.85) 100%);

  /* Shadows */
  --shadow-xs:  0 2px 8px rgba(90, 60, 200, .06);
  --shadow-sm:  0 4px 16px rgba(90, 60, 200, .10);
  --shadow-md:  0 12px 40px rgba(80, 50, 180, .14);
  --shadow-lg:  0 28px 70px rgba(60, 40, 150, .16);
  --shadow-btn: 0 10px 32px rgba(123, 92, 240, .38);
  --shadow-icon: 0 6px 20px rgba(90, 60, 200, .15);

  /* Shape */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

@font-face {
  font-family: Circular Standard;
  src: url('assets/fonts/circular-std.ttf');
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Circular Standard', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Circular Standard', sans-serif;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0 32px;
}

a { text-decoration: none; }

.section-heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.5px;
  line-height: 1.25;
  margin-bottom: 14px;
}

/* "FLOURISHING" accent — purple bold, matching reference */
.section-heading .heading-accent {
  font-weight: 800;
  color: var(--primary);
}

.section-sh_cont{
  font-size: 16px;
  color: var(--text);
}

@media (max-width: 430px) {
   .section-heading{
      font-size: 28px;
  }
  .section-sh_cont{
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* =========================================================
   HEADER SECTION 
========================================================= */

/* ─── STICKY HEADER ─── */

.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  padding: 5px 0;
  /* Dark purple → medium lavender gradient — matches reference exactly */
  background: linear-gradient(100deg, #1B1033 0%, #2E1B6E 35%, #7B5CF0 75%, #A78BFA 100%);
  border-bottom: 1px solid rgba(167, 139, 250, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ─── LOGO ─── */
.header-logo {
  display: flex;
  max-width: 200px;
}

.header-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* ─── PHONE CTA ─── */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .3px;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 24px rgba(167, 139, 250, 0.35);
  transform: translateY(-1px);
}

/* Phone icon circle */
.phone-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform .35s ease;
}

.header-phone:hover .phone-icon {
  transform: rotate(12deg) scale(1.08);
}

/* ─── MOBILE ─── */
@media (max-width: 430px) {
  .site-header {
    padding: 0 20px;
    height: 62px;
  }

  .header-logo{
    max-width: 100px;
  }

  .header-phone {
    padding: 9px 16px 9px 14px;
    font-size: 13px;
    gap: 8px;
  }

  .phone-icon { width: 28px; height: 28px; font-size: 12px; }
}

@media (max-width: 360px) {
  /* On very small screens, hide number text and show icon only */
  .phone-number-text { display: none; }
  .header-phone { padding: 9px 14px; }
}


/* =========================================================
   HERO SECTION
========================================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0 110px;
  isolation: isolate;
  background: var(--gradient-hero);
}

/* Subtle dot grid */
.bg-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: radial-gradient(rgba(123,92,240,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 80%);
}

/* Soft color blobs — exactly like reference */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -2;
}

.blob-1 { width: 500px; height: 500px; background: rgba(196, 176, 255, 0.55); top: -180px; left: -180px; }
.blob-3 { width: 340px; height: 340px; background: rgba(224, 215, 255, 0.50); bottom: -120px; left: 35%; }
.blob-4 { width: 200px; height: 200px; background: rgba(248, 160, 160, 0.20); bottom: 60px; right: 15%; }

/* Decorative rings */
.bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(123,92,240,.12);
  z-index: -2;
}
.ring-1 { width: 110px; height: 110px; top: 60px; left: 5%; }
.ring-2 { width: 65px;  height: 65px;  bottom: 100px; left: 13%; border-color: rgba(123,92,240,.18); }

/* =========================================================
   HERO LAYOUT
========================================================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

/* Big headline — clean, airy */
.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  max-width: 750px;
}

/* Accent span with bold gradient text */
.headline-accent {
  font-weight: 800;
  background: linear-gradient(100deg, var(--ink) 0%, var(--primary) 55%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  margin-top: 4px;
}

/* Subtitle */
.subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 40px;
  opacity: 0.85;
}

/* =========================================================
   STAT CARDS — refined glassmorphic
========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 44px;
  max-width: 540px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
  gap: 14px;
  padding: 22px 18px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255, 0.80);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,.6) 0%, rgba(200,185,255,.08) 100%);
  border-radius: inherit;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Circle ring */
.circle-wrap {
  position: relative;
  width: 80px; height: 80px;
  flex-shrink: 0;
}

.circle-svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}

.circle-track {
  fill: none;
  stroke: var(--line-solid);
  stroke-width: 8;
}

.circle-bar {
  fill: none;
  stroke: url(#barGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  animation: ringFill 2.8s var(--ease) forwards;
  animation-delay: .5s;
}

@keyframes ringFill {
  to { stroke-dashoffset: calc(326.7 - (326.7 * var(--pct) / 100)); }
}

.circle-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.stat-card h4 {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

/* =========================================================
   CTA BUTTON — pill with icon circle
========================================================= */
.btn, .submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.btn-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform .45s var(--ease);
  background: rgba(255,255,255,.22);
  color: var(--white);
}

.btn-primary {
  padding: 8px 8px 8px 28px;
  border-radius: 60px;
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-btn);
  font: 700 13.5px/1 'Inter', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(123, 92, 240, .45);
}
.btn-primary:hover .btn-icon { transform: rotate(45deg); }

/* =========================================================
   RIGHT: LEAD FORM CARD
========================================================= */
.hero-form-area {
  position: relative;
}

/* Floating icon pills — same as reference floating icons */
.floating-icon {
  position: absolute;
  width: 54px; height: 54px;
  display: flex !important; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line-solid);
  color: var(--primary);
  box-shadow: var(--shadow-icon);
  font-size: 20px;
  z-index: 3;
}

.icon-1 { top: -18px; left: -20px;  color: var(--accent-blue);  animation: floatY 5s ease-in-out infinite; }
.icon-2 { top: 26%;   right: -24px; color: var(--accent-green); animation: floatY 5.8s ease-in-out infinite .6s; }
.icon-3 { bottom: 25%; left: -24px; color: #F07B50;             animation: floatY 6.4s ease-in-out infinite 1.1s; }
.icon-4 { bottom: -30px; right: 38px; color: var(--primary);   animation: floatY 5.4s ease-in-out infinite 1.6s; }

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

/* Main form card */
.lead-form-card {
  position: relative;
  z-index: 2;
  background: var(--gradient-card);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 44px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

/* Form eyebrow label */
.form-eyebrow {
  display: inline-block;
  font: 700 11px/1 'Inter', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(123,92,240,.10), rgba(167,139,250,.12));
  border: 1px solid rgba(123,92,240,.15);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.form-head h3 {
  font-size: 26px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -.4px;
}

.form-head p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* Form inputs */
.form-group { margin-bottom: 15px; }

.form-group label {
  display: block;
  font: 600 12px/1 'Inter', sans-serif;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: .2px;
}

.form-group input, .form-group select {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-solid);
  outline: none;
  background: rgba(255,255,255,.7);
  font: 500 14px 'Inter', sans-serif;
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s, background .3s;
}

.form-group input::placeholder { color: #2a2443; font-weight: 400; }

.form-group input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123,92,240,.10);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

.form-group select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(123,92,240,.10);
}

.form-group select:invalid {
  color: #0a090e;
}

/* Custom checkbox */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin: 18px 0 22px;
  user-select: none;
}

.checkbox-wrap input { position: absolute; opacity: 0; width: 0; height: 0; }

.checkbox-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1.5px solid #a998e8;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: transparent;
  transition: .25s;
}

.checkbox-wrap input:checked + .checkbox-box {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
}

.checkbox-wrap input:focus-visible + .checkbox-box {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

.checkbox-text { font-size: 12.5px; line-height: 1.6; font-weight: 400; color: #2a2443; }

/* Submit button */
.submit-btn {
  width: 100%;
  height: 54px;
  background: var(--gradient);
  color: var(--white);
  font: 700 13.5px/1 'Inter', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-btn);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(123, 92, 240, .45);
}
.submit-btn:hover .btn-icon { transform: rotate(45deg); }

.submit-btn .btn-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.22);
}

/* =========================================================
   REVEAL ANIMATIONS
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp .9s var(--ease) forwards;
  animation-delay: calc(var(--d) * .13s);
}

.hero-form-area.reveal {
  transform: translateY(16px) scale(.98);
}

@keyframes revealUp {
  to { opacity: 1; transform: none; }
}

/* =========================================================
   FOCUS / ACCESSIBILITY
========================================================= */
.btn:focus-visible,
.submit-btn:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero-section { padding: 100px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-content { text-align: center; }
  .hero-content h1 { font-size: 38px; margin: 0 auto 10px; }
  .stats-grid { margin: 0 auto 40px; }
  .btn-primary { margin: 0 auto; }
  .trust-bar { justify-content: center; }
  .icon-1, .icon-2, .icon-3, .icon-4 { display: none; }
}

@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .hero-section { padding: 120px 0 60px; }
  .hero-content h1 { font-size: 30px; }
  .subtitle { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { flex-direction: row; text-align: left; padding: 8px 16px; }
  .lead-form-card { padding: 28px 22px; }
  .form-head h3 { font-size: 22px; }
  .trust-bar { gap: 14px; }
  .circle-wrap{ width: 60px; height: 60px; }
  .circle-value{ font-size: 16px; }
}

/* =========================================================
   CLIENTS / LOGO MARQUEE SECTION
========================================================= */
.clients-section {
  padding: 80px 0;
  background: #fff;
}

/* Heading */
.clients-head {
  text-align: center;
  margin-bottom: 56px;
}

.clients-head p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Marquee wrapper — fade edges */
.clients-marquee-wrap {
  width: 100%;
}

/* Scrolling track */
.clients-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content:center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}


/* Individual logo cards */
.client-logo-card {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  border: 2px solid var(--line-solid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s var(--ease), border-color .3s, transform .3s var(--ease);
}


.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .3s;
}


/* Responsive */
@media (max-width: 767px) {
  .clients-section { padding: 60px 0; }
  .clients-head{ margin-bottom: 24px}
  .client-logo-card { width: 100px; height: 60px; }
  .clients-track {
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .clients-head p  { font-size: 13.5px; }
  .clients-track { gap: 10px 6px;}
  .client-logo-card { width: 95px; height: 48px; padding: 6px; border-radius: 10px; }
}



/* ==========================
   SEO OFFERINGS
========================== */

.seo-offerings {
    position: relative;
    padding: 80px 0;
    background: var(--bg);
    overflow: hidden;
}

.section-head{
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

/* Grid */

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Card */

.seo-card {
    position: relative;
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--line-solid);
    padding: 40px 30px;
    transition: all .45s var(--ease);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.seo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(123,92,240,.06),
        rgba(255,255,255,0)
    );
    opacity: 0;
    transition: .4s;
}

/* Hover Similar To Reference */

.seo-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: linear-gradient(
        160deg,
        rgba(255,255,255,.95),
        rgba(237,233,255,.95)
    );
}

.seo-card:hover::before {
    opacity: 1;
}

/* Top Accent Border Animation */

.seo-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--gradient);
    transform: translateX(-50%);
    transition: .4s;
}

.seo-card:hover::after {
    width: 100%;
}

.seo-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.seo-card-header h3 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--ink-soft);
    margin: 0;
    flex: 1;
}

.seo-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    box-shadow: var(--shadow-icon);
}

.seo-card:hover .seo-icon {
    transform: scale(1.08);
}

.seo-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}


.seo-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
}

/* ==========================
   SEO OFFERINGS SLIDER WRAP
========================== */

.seo-slider-wrap {
    position: relative;
}

/* Slider nav — hidden on desktop */
.seo-slider-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

/* Shared arrow button style */
.slider-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--line-solid);
    background: var(--bg-card);
    color: var(--primary);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s var(--ease), border-color .3s, transform .3s var(--ease), box-shadow .3s;
    box-shadow: var(--shadow-xs);
    flex-shrink: 0;
}

.slider-arrow-btn:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: scale(1.08);
    box-shadow: var(--shadow-sm);
}

.slider-arrow-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.seo-slider-dots {
    display: flex;
    gap: 8px;
}

.seo-slider-dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--line-solid);
    cursor: pointer;
    transition: .3s;
}

.seo-slider-dots button.active {
    background: var(--primary);
    width: 22px;
    border-radius: 8px;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1199px) {

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

    .seo-card {
        min-height: auto;
    }

}

/* ==========================
   BELOW LAPTOP — SLIDER MODE
========================== */

@media (max-width: 1024px) {

    .seo-slider-nav {
        display: flex;
    }

    .seo-grid {
        display: flex;
        grid-template-columns: unset;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 8px 20px 14px;
        scrollbar-width: none;
    }

    .seo-grid::-webkit-scrollbar { display: none; }

    .seo-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
        min-height: unset;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .seo-offerings {
        padding: 60px 0;
    }

    .seo-card {
        flex: 0 0 88%;
        padding: 32px 22px;
    }

    .seo-card h3 {
        font-size: 18px;
    }

    .seo-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .seo-icon {
        width: 80px;
        height: 80px;
    }

    .seo-icon img {
        width: 48px;
        height: 48px;
    }

}
/* =========================================================
   SECTION 4 — WHY PARTNER WITH NEXTBIGBOX
========================================================= */

/* =========================================================
   WHY PARTNER — premium redesign
   Dark gradient background, large stats row, feature cards
========================================================= */

.why-partner {
  position: relative;
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

/* Background glows */
.wp-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.wp-glow-1 {
  width: 600px; height: 600px;
  background: rgba(123,92,240,.18);
  top: -200px; right: -150px;
  filter: blur(120px);
}

.wp-glow-2 {
  width: 400px; height: 400px;
  background: rgba(96,165,250,.12);
  bottom: -120px; left: -100px;
  filter: blur(100px);
}

/* Dot-grid overlay */
.wp-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Head ── */
.wp-head {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.wp-head .section-heading {
  margin-bottom: 18px;
}

.wp-subhead {
  font: 500 16px/1.75 'Inter', sans-serif;
  color: var(--text);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Stats row ── */
.wp-stats-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(160deg, #a085ec 0%, #1e1b2b 40%, #2D1B82 80%, #3B2496 100%);;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  backdrop-filter: blur(8px);
}

.wp-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
}

.wp-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

.wp-stat-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(123,92,240,.4);
}

.wp-stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wp-stat-num {
  font: 800 36px/1 'Circular Standard', sans-serif;
  color: #fff;
  letter-spacing: -.8px;
}

.wp-stat-label {
  font: 500 13px/1.4 'Inter', sans-serif;
  color: rgba(255,255,255,.5);
}


/* ── Responsive ── */
@media (max-width: 1100px) {
  .wp-stats-row { padding: 32px 28px; }
  .wp-stat-item { padding: 0 16px; }
  .wp-stat-num { font-size: 30px; }
}

@media (max-width: 767px) {
  .why-partner { padding: 60px 0; }
  .wp-head { margin-bottom: 44px; }
  .wp-stats-row {
    flex-wrap: wrap;
    gap: 28px;
    padding: 28px 24px;
  }
  .wp-stat-divider { display: none; }
  .wp-stat-item {
    flex: 0 0 calc(50% - 14px);
    padding: 0;
  }
  .wp-stat-num { font-size: 28px; }
}

@media (max-width: 540px) {
  .wp-stat-item { flex: 0 0 100%; }
  .wp-stats-row { gap: 20px; }
  .wp-head .section-heading { font-size: 28px; }
  .wp-subhead { font-size: 14.5px; }
}


/* =========================================================
   SECTION 5 — CASE STUDY (analytics / chart style)
========================================================= */

.case-study {
  position: relative;
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.case-study::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(96,165,250,.14);
  border-radius: 50%;
  bottom: -140px;
  left: -120px;
  filter: blur(120px);
  z-index: 0;
}

.case-study .section-head { position: relative; z-index: 1; }

/* Slider on all breakpoints uses same track; desktop = grid via no-scroll, mobile = scroll-snap */
.case-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.case-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--line-solid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px 28px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  overflow: hidden;
}

.case-card::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 4px;
  background: var(--gradient);
  transform: translateX(-50%);
  transition: .4s;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.case-card:hover::after { width: 100%; }

.case-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.case-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.case-logo img { width: 100%; height: 100%; object-fit: contain; }

.case-card-head h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.2px;
}

.case-card-head span {
  display: block;
  font: 600 11.5px/1 'Inter', sans-serif;
  color: var(--text-soft);
  margin-top: 4px;
  letter-spacing: .3px;
}

/* Metric rows w/ animated bar chart */
.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-metric { width: 100%; }

.case-metric-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.case-metric-label {
  font: 600 13px/1.3 'Inter', sans-serif;
  color: var(--text);
}

.case-metric-value {
  font: 800 18px/1 'Circular Standard', sans-serif;
  color: var(--primary);
  letter-spacing: -.3px;
}

.case-bar-track {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: var(--line-solid);
  overflow: hidden;
}

.case-bar-fill {
  height: 100%;
  border-radius: 8px;
  background: var(--gradient);
  width: 0%;
  transition: width 1.4s var(--ease);
}

/* per-card accent variety, still on-brand */
.case-card:nth-child(2) .case-metric-value { color: var(--accent-blue); }
.case-card:nth-child(2) .case-bar-fill { background: linear-gradient(135deg, var(--accent-blue), #3B82F6); }

.case-card:nth-child(3) .case-metric-value { color: #10B981; }
.case-card:nth-child(3) .case-bar-fill { background: linear-gradient(135deg, var(--accent-green), #10B981); }

/* trophy ribbon for top metric */
.case-highlight {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  border: 1px solid var(--line);
}

.case-highlight i { color: var(--primary); font-size: 14px; flex-shrink: 0; }

.case-highlight span {
  font: 600 12.5px/1.5 'Inter', sans-serif;
  color: var(--ink-soft);
}

.case-highlight b { color: var(--primary); font-weight: 800; }

/* Slider controls — hidden on desktop */
.case-slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.case-slider-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line-solid);
  cursor: pointer;
  transition: .3s;
}

.case-slider-dots button.active {
  background: var(--primary);
  width: 22px;
  border-radius: 8px;
}

.case-slider-dots button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .case-track { grid-template-columns: 1fr 1fr; }
  .case-track .case-card:nth-child(3) { grid-column: span 2; max-width: 480px; margin: 0 auto; }
}

/* ── Mobile: horizontal scroll-snap slider ── */
@media (max-width: 767px) {
  .case-study { padding: 60px 0; }

  .case-track {
    display: flex;
    grid-template-columns: unset;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 6px 14px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }

  .case-track::-webkit-scrollbar { display: none; }

  .case-track .case-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .case-track .case-card:nth-child(3) { grid-column: unset; max-width: unset; margin: 0; }

  .case-slider-dots { display: flex; }
}

@media (max-width: 430px) {
  .case-track .case-card { flex: 0 0 92%; padding: 26px 20px 22px; }
}


/* =========================================================
   SECTION 6 — GOOGLE PARTNER AGENCY BADGE
========================================================= */

.google-badge-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #1B1033 0%, #2E1B6E 45%, #5338C9 100%);
  overflow: hidden;
}

.google-badge-section .bg-grid {
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
}

.google-badge-section .bg-blob { filter: blur(110px); }
.gbadge-blob-1 { width: 420px; height: 420px; background: rgba(167,139,250,.35); top: -160px; right: -100px; }
.gbadge-blob-2 { width: 320px; height: 320px; background: rgba(96,165,250,.25); bottom: -120px; left: -80px; }

.gbadge-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
}

.gbadge-copy .section-heading {
  color: var(--white);
  text-align: left;
  margin-bottom: 16px;
}

.gbadge-copy .section-heading .heading-accent {
  color: var(--primary-light);
}

.gbadge-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  max-width: 480px;
  margin-bottom: 30px;
}

.gbadge-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gbadge-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font: 600 13px/1 'Inter', sans-serif;
  color: rgba(255,255,255,.9);
}

.gbadge-point i { color: #A78BFA; font-size: 12px; }

/* Badge card itself */
.gbadge-card {
  position: relative;
  width: 280px;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  flex-shrink: 0;
}

.gbadge-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-icon);
  border: 1px solid var(--line-solid);
}

.gbadge-icon svg { width: 46px; height: 46px; }

.gbadge-card h4 {
  font: 800 20px/1.3 'Circular Standard', sans-serif;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.3px;
}

.gbadge-card span {
  display: block;
  font: 600 12.5px/1.5 'Inter', sans-serif;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.gbadge-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #FBBF24;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .gbadge-wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 44px; }
  .gbadge-copy .section-heading { text-align: center; }
  .gbadge-copy p { margin-left: auto; margin-right: auto; }
  .gbadge-points { justify-content: center; }
}

@media (max-width: 767px) {
  .google-badge-section { padding: 60px 0; }
  .gbadge-card { width: 100%; max-width: 300px; padding: 32px 24px; }
  .gbadge-points { gap: 10px; }
  .gbadge-point { padding: 8px 14px; font-size: 12px; }
}


/* =========================================================
   SECTION 7 — TESTIMONIALS (universal slider)
========================================================= */

.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: var(--primary-glow);
  border-radius: 50%;
  filter: blur(130px);
}

/* Slider wrapper */
.testi-slider-wrap {
  position: relative;
  z-index: 1;
}

/* The scrollable track */
.testi-track {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0 -20px;
  padding: 8px 20px 14px;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--line-solid);
  border-radius: var(--radius-md);
  padding: 34px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.testi-quote-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 20px;
}

.testi-quote-icon i{
  font-size: 60px;
}

.testi-card p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
  flex-grow: 1;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #FBBF24;
  font-size: 12px;
  margin-bottom: 18px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--line-solid);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-avatar img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

.testi-person h5 {
  font: 500 17px/1.3 'Circular Standard', sans-serif;
  color: var(--ink);
  margin-bottom: 2px;
}

.testi-person span {
  font: 500 12px/1.3 'Inter', sans-serif;
  color: var(--text-soft);
}

@media (max-width: 1024px) {
  .testi-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 767px) {
  .testimonials-section { padding: 60px 0; }
  .testimonials-section::before{
    width: 200px;
    height: 200px;
    right: 0
  }
  .testi-card {
    flex: 0 0 86%;
    padding: 28px 22px;
  }
}

@media (max-width: 430px) {
  .testi-card { flex: 0 0 100%; }
}

.case-slider-dots button:focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* =========================================================
   SECTION 8 — AWARDS (premium card grid)
========================================================= */

.awards-section {
  position: relative;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.awards-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(96,165,250,.12);
  border-radius: 50%;
  top: -150px;
  left: -120px;
  filter: blur(120px);
  z-index: 0;
}

.awards-section .section-head { position: relative; z-index: 1; margin-bottom: 30px; }

/* Grid: 4 cols desktop, 3 tablet, 2 mobile */
.awards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Award card — matches reference style: white card, icon area on top, text below */
.award-card {
  background: #fff;
  border: 1.5px solid var(--line-solid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  cursor: default;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

/* Top image / icon area — soft lavender background like reference */
.award-card-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  width: 100%;
  height: auto;
}

.award-card-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Bottom text body */
.award-card-body {
  padding: 18px 20px 20px;
  text-align: center;
}

.award-card-body h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.05px;
}

/* Responsive */

@media (max-width: 767px) {
  .awards-section { padding: 60px 0; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .awards-section .section-head{
  margin-bottom: 24px;
}
}

@media (max-width: 430px) {
  .awards-grid { grid-template-columns: 100%; gap: 12px; }
  .award-card-body h4 { font-size: 15px; }
}


/* =========================================================
   SECTION 9 — FAQ (accordion)
========================================================= */

.faq-section {
  position: relative;
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.faq-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--line-solid);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-xs);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: 500 16.5px/1.4 'Circular Standard', sans-serif;
  color: var(--ink);
  letter-spacing: -.1px;
}

.faq-question:hover { color: var(--primary); }

.faq-toggle-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 13px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}

.faq-item.active .faq-toggle-icon {
  background: var(--gradient);
  color: var(--white);
  transform: rotate(135deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}

.faq-answer-inner { overflow: hidden; }

.faq-item.active .faq-answer { grid-template-rows: 1fr; }

.faq-answer-content {
  padding: 0 28px 26px;
  font: 500 14.5px/1.85 'Inter', sans-serif;
  color: var(--text);
}

.faq-answer-content p { margin-bottom: 14px; }
.faq-answer-content p:last-child { margin-bottom: 0; }

.faq-flag-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0 6px;
}

.faq-flag-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-flag-list .faq-flag-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--gradient-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 11px;
  margin-top: 1px;
}

.faq-flag-list b { color: var(--ink-soft); font-weight: 700; }

/* Bottom CTA strip */
.faq-cta-strip {
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1B1033 0%, #a695e0 45%, #5338C9 100%);
  box-shadow: var(--shadow-btn);
  bottom: 2px;
  left: 10px;
  right: 10px; 
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.faq-cta-strip.show{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.faq-cta-close{
   position: absolute;
   right: 8px;
   top: 7px;
   width: 22px;
   height: 22px;
   cursor: pointer;
}

.faq-cta-close i{
  font-size: 12px
}

.faq-cta-strip h4 {
  font: 700 18px/1.4 'Circular Standard', sans-serif;
  color: var(--white);
  letter-spacing: 0.2px;
}

.faq-cta-strip p {
  font: 500 13px/1.5 'Inter', sans-serif;
  color: rgba(255,255,255,.82);
  margin-top: 4px;
}

.faq-cta-strip .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  flex-shrink: 0;
}

.faq-cta-strip .btn-primary .btn-icon {
  background: var(--gradient-soft);
  color: var(--primary);
}

.faq-cta-strip .btn-primary:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.modal{
 z-index: 9999;
}

.modal .btn-close{
 position: absolute;
 right: 10px;
 top: 10px;
}

.modal-content{
 border-radius: var(--radius-xl);
}

@media (max-width: 767px) {
  .faq-section { padding: 70px 0; }
  .faq-question { padding: 20px 20px; font-size: 15px; gap: 14px; }
  .faq-toggle-icon { width: 30px; height: 30px; font-size: 11px; }
  .faq-answer-content { padding: 0 20px 22px; font-size: 14px; }
  .faq-cta-strip { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
  .faq-cta-strip .btn-primary { width: 100%; justify-content: center; }
  .faq-cta-strip > div{ display: none; }
}

@media (max-width: 430px){
  .faq-cta-strip .btn-primary .btn-icon{
    width: 34px;
    height: 34px;
  }
}


/* =========================================================
   FOOTER — simplified premium with silhouette
========================================================= */

.site-footer {
  position: relative;
  background: linear-gradient(160deg, #1B1033 0%, #2E1B6E 55%, #3B2496 100%);
  overflow: hidden;
  padding-top: 0;
}

/* Subtle dot grid */
.footer-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 75%);
  pointer-events: none;
}

/* Main content area */
.footer-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

/* Two-column layout: brand | contact */
.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 60px;
  align-items: start;
  padding: 52px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Brand block */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
}

.footer-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 18px;
}

.footer-tagline {
  font: 500 14px/1.85 'Inter', sans-serif;
  color: rgba(255,255,255,.58);
  max-width: 320px;
  margin-bottom: 28px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
}

/* Vertical divider */
.footer-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.18) 30%, rgba(255,255,255,.18) 70%, transparent);
  align-self: stretch;
}

/* Contact block */
.footer-contact-block {
  display: flex;
  flex-direction: column;
}

.footer-contact-title {
  font: 700 11.5px/1 'Inter', sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 24px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font: 500 14px/1.6 'Inter', sans-serif;
  color: rgba(255,255,255,.62);
}

.footer-contact-list a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: color .3s;
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 13px;
  margin-top: 1px;
}

/* Bottom bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0 24px;
}

.footer-bottom p {
  font: 500 12.5px/1.4 'Inter', sans-serif;
  color: rgba(255,255,255,.38);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font: 500 12.5px/1.4 'Inter', sans-serif;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .3s;
}

.footer-legal a:hover { color: rgba(255,255,255,.75); }

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 40px;
  }

  .footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,.18) 30%, rgba(255,255,255,.18) 70%, transparent);
    align-self: auto;
  }

  .footer-tagline { max-width: 100%; }
}

@media (max-width: 767px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { gap: 16px; }
}

/* Focus ring */
.footer-social a:focus-visible,
.footer-legal a:focus-visible,
.footer-contact-list a:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
}

/* =========================================================
   FOCUS-VISIBLE — a11y
========================================================= */
.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}
