/* ========================================
   QUICK TAX BUDDY — Global Stylesheet
   ======================================== */

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

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

:root {
  /* Brand Palette */
  --primary: #0F0D5D;         /* Deep indigo from brand */
  --primary-dark: #090840;
  --primary-mid: #1A178A;
  --accent: #FF6B35;           /* Vibrant orange */
  --accent2: #00C896;          /* Vibrant teal/green */
  --accent3: #FFD600;          /* Bright yellow */
  --vivid-blue: #1E90FF;
  --vivid-purple: #7C3AED;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F7FF;
  --light-bg: #F0EFFF;
  --border: rgba(15,13,93,0.12);
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0F0D5D 0%, #1A178A 50%, #2D1B9E 100%);
  --grad-accent: linear-gradient(135deg, #FF6B35 0%, #FF9500 100%);
  --grad-teal: linear-gradient(135deg, #00C896 0%, #00A3FF 100%);
  --grad-card: linear-gradient(135deg, rgba(15,13,93,0.04) 0%, rgba(15,13,93,0.01) 100%);

  /* Sizes */
  --nav-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(15,13,93,0.12);
  --shadow-lg: 0 16px 48px rgba(15,13,93,0.18);
  --shadow-xl: 0 32px 80px rgba(15,13,93,0.22);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(30px,5.5vw,68px); font-weight: 800; }
h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 700; }
h3 { font-size: clamp(20px,2.5vw,26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
h5 { font-size: 14px; font-weight: 600; }
p { line-height: 1.75; }

/* ---- LAYOUT ---- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---- LABELS ---- */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.label::before { content: ''; width: 24px; height: 3px; background: var(--accent); border-radius: 2px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.25s; cursor: pointer;
}
.btn-primary {
  background: var(--grad-accent); color: var(--white);
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,0.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--primary); color: var(--white);
  box-shadow: 0 8px 24px rgba(15,13,93,0.3);
}
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-teal {
  background: var(--grad-teal); color: var(--white);
  box-shadow: 0 8px 24px rgba(0,200,150,0.35);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,200,150,0.45); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(9,8,64,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 42px; width: auto; border-radius: 6px; }
.nav-logo-text { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; color: white; letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 7px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.nav-cta-link {
  background: var(--grad-accent); color: white; padding: 9px 20px;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3); border-radius: 8px; margin-left: 8px;
}
.nav-links a.nav-cta-link:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,53,0.4); background: var(--grad-accent); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--grad-hero); position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg-shapes .shape {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.15;
}
.shape-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; background: var(--accent2); bottom: -100px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: var(--vivid-purple); top: 30%; left: 20%; }
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.35);
  color: #FFAA7A; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.hero h1 { color: white; margin-bottom: 22px; }
.hero h1 .highlight { color: var(--accent3); position: relative; }
.hero-desc { color: rgba(255,255,255,0.68); font-size: 18px; font-weight: 300; margin-bottom: 36px; max-width: 500px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; }
.trust-icon { width: 32px; height: 32px; background: rgba(0,200,150,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 16px; height: 16px; stroke: var(--accent2); fill: none; stroke-width: 2.5; }

/* Hero Right - Stats Card */
.hero-stats-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 40px; backdrop-filter: blur(20px);
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-stat-item {
  background: rgba(255,255,255,0.06); border-radius: 14px; padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.08); text-align: center;
  transition: background 0.2s;
}
.hero-stat-item:hover { background: rgba(255,255,255,0.1); }
.hero-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.hero-stat-num.orange { color: var(--accent3); }
.hero-stat-num.teal { color: var(--accent2); }
.hero-stat-num.blue { color: #7EB8FF; }
.hero-stat-num.purple { color: #C4A8FF; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 500; }
.hero-stat-card-footer {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 12px;
}
.rating-stars { display: flex; gap: 2px; }
.rating-stars span { font-size: 16px; }
.rating-text { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--primary); padding: 32px 0;
  border-top: 3px solid var(--accent);
  display: none;
}
.stats-band .container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.stat-band-item { text-align: center; }
.stat-band-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--accent3); line-height: 1; }
.stat-band-num,
.hero-stat-num {
  display: inline-block;
  min-width: 120px;
  text-align: center;
}
.stat-band-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 500; }
.stat-band-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ---- ABOUT STRIP ---- */
.about-strip { background: var(--off-white); padding: 80px 0; }
.about-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-box { position: relative; }
.about-img-inner {
  background: var(--grad-hero); border-radius: var(--radius-xl); padding: 48px;
  display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden;
}
.about-img-inner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px; background: var(--accent); border-radius: 50%; opacity: 0.12; filter: blur(40px);
}
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.07); border-radius: 12px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}
.about-feature-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.af-orange { background: rgba(255,107,53,0.2); }
.af-teal { background: rgba(0,200,150,0.2); }
.af-yellow { background: rgba(255,214,0,0.2); }
.about-feature-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.af-orange svg { stroke: var(--accent); }
.af-teal svg { stroke: var(--accent2); }
.af-yellow svg { stroke: var(--accent3); }
.about-feature-text h5 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.about-feature-text p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.5; }
.about-content .section-title { margin-bottom: 18px; color: var(--primary); }
.about-content p { color: var(--text-muted); font-size: 16px; margin-bottom: 20px; }
.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
}
.badge-orange { background: rgba(255,107,53,0.1); color: #C94A10; border: 1px solid rgba(255,107,53,0.2); }
.badge-teal { background: rgba(0,200,150,0.1); color: #006B50; border: 1px solid rgba(0,200,150,0.2); }
.badge-blue { background: rgba(30,144,255,0.1); color: #0062CC; border: 1px solid rgba(30,144,255,0.2); }
.badge svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ---- SERVICES ---- */
.services-section { background: white; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s; position: relative; overflow: hidden; cursor: pointer;
}
.service-checkbox{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start;
    gap:12px;

    padding:16px 18px;
    min-height:70px;

    border:1.5px solid var(--border);
    border-radius:12px;
    background:var(--off-white);
}

.service-checkbox .sc-box{
    width:20px;
    height:20px;
    min-width:20px;
    margin:0;
}

.service-checkbox .sc-label{
    display:inline-block;
    margin:0;
    line-height:1;
    font-size:15px;
    font-weight:600;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured { background: var(--grad-hero); border-color: transparent; }
.service-card.featured h4, .service-card.featured p, .service-card.featured .svc-link { color: white !important; }
.service-card.featured .svc-icon { background: rgba(255,255,255,0.12); }
.service-card.featured .svc-icon svg { stroke: white; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--light-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.svc-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h4 { color: var(--primary); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.02em; }
.svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.2s; }
.service-card:hover .svc-link svg { transform: translateX(4px); }

/* ---- WHY US ---- */
.why-section { background: var(--light-bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.25s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-num-badge {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800;
}
.wn-1 { background: rgba(255,107,53,0.12); color: var(--accent); }
.wn-2 { background: rgba(0,200,150,0.12); color: var(--accent2); }
.wn-3 { background: rgba(15,13,93,0.1); color: var(--primary); }
.wn-4 { background: rgba(255,214,0,0.15); color: #A07800; }
.wn-5 { background: rgba(30,144,255,0.12); color: var(--vivid-blue); }
.wn-6 { background: rgba(124,58,237,0.12); color: var(--vivid-purple); }
.why-card h4 { color: var(--primary); margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ---- PROCESS ---- */
.process-section { background: white; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-line {
  position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--vivid-blue), var(--vivid-purple));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.ps-num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800; color: white;
  position: relative; border: 4px solid white; box-shadow: var(--shadow);
}
.ps-1 { background: var(--accent); }
.ps-2 { background: var(--accent2); }
.ps-3 { background: var(--vivid-blue); }
.ps-4 { background: var(--vivid-purple); }
.process-step h4 { color: var(--primary); margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ---- PRICING ---- */
.pricing-section { background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  background: white; border-radius: var(--radius-xl); padding: 40px;
  border: 2px solid var(--border); position: relative; overflow: hidden;
  transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.popular {
  background: var(--grad-hero); border-color: transparent;
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--grad-accent); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.pricing-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.pricing-card.popular .pricing-tier { color: rgba(255,255,255,0.65); }
.pricing-name { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.pricing-card.popular .pricing-name { color: white; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-card.popular .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-price { margin-bottom: 28px; }
.price-amt { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; }
.pricing-card.popular .price-amt { color: var(--accent3); }
.price-note { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.pricing-card.popular .price-note { color: rgba(255,255,255,0.5); }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.pricing-card.popular .pricing-divider { border-color: rgba(255,255,255,0.15); }
.pricing-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pf-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.pricing-card.popular .pf-item { color: rgba(255,255,255,0.75); }
.pf-check { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pf-yes { background: rgba(0,200,150,0.15); }
.pf-yes svg { stroke: var(--accent2); width: 11px; height: 11px; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.pricing-card.popular .pf-yes { background: rgba(0,200,150,0.2); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--primary); padding: 96px 0; }
.testimonials-section .label { color: var(--accent3); }
.testimonials-section .label::before { background: var(--accent3); }
.testimonials-section h2 { color: white; margin-bottom: 52px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px; transition: background 0.2s;
}
.testi-card:hover { background: rgba(255,255,255,0.1); }
.testi-quote { font-size: 40px; color: var(--accent); line-height: 1; margin-bottom: 14px; font-family: Georgia, serif; }
.testi-text { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.tav { width: 44px; height: 44px; border-radius: 50%; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tav-1 { background: linear-gradient(135deg, var(--accent), #FF9500); }
.tav-2 { background: linear-gradient(135deg, var(--accent2), #00A3FF); }
.tav-3 { background: linear-gradient(135deg, var(--vivid-purple), #A855F7); }
.tav-4 { background: linear-gradient(135deg, var(--vivid-blue), #60A5FA); }
.tav-name { font-size: 14px; font-weight: 600; color: white; margin-bottom: 3px; }
.tav-role { font-size: 12px; color: rgba(255,255,255,0.45); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testi-stars span { font-size: 14px; }

/* ---- TEAM ---- */
.team-section { background: white; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--off-white); border-radius: var(--radius-xl); padding: 36px;
  text-align: center; border: 1px solid var(--border); transition: all 0.3s; overflow: hidden; position: relative;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card:hover::before { transform: scaleX(1); }
.team-card:nth-child(2)::before { background: var(--grad-teal); }
.team-card:nth-child(3)::before { background: linear-gradient(135deg, var(--vivid-purple), var(--vivid-blue)); }
.team-avatar-wrap { position: relative; width: 100px; height: 100px; margin: 0 auto 20px; }
.team-avatar-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid white; box-shadow: var(--shadow); }
.team-avatar-fallback {
  width: 100px; height: 100px; border-radius: 50%; border: 4px solid white;
  box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: white;
}
.t-av1 { background: linear-gradient(135deg, var(--primary), var(--vivid-purple)); }
.t-av2 { background: linear-gradient(135deg, var(--accent), #FF9500); }
.t-av3 { background: linear-gradient(135deg, var(--accent2), #00A3FF); }
.team-badge {
  position: absolute; bottom: 0; right: 0;
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent2);
  border: 3px solid var(--off-white); display: flex; align-items: center; justify-content: center;
}
.team-badge svg { width: 13px; height: 13px; stroke: white; fill: none; stroke-width: 2.5; }
.team-card h4 { color: var(--primary); margin-bottom: 5px; }
.team-role { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: 0.03em; margin-bottom: 14px; }
.team-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--grad-hero); padding: 96px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,53,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 50%, rgba(0,200,150,0.1) 0%, transparent 45%);
}
.cta-section .container { position: relative; z-index: 2; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 18px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-phones { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.cta-phone-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; }
.cta-phone-item strong { color: var(--accent3); }
.cta-phone-item svg { width: 16px; height: 16px; stroke: var(--accent2); fill: none; stroke-width: 2; }

/* ---- CONTACT ---- */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info-card { background: var(--grad-hero); border-radius: var(--radius-xl); padding: 44px; color: white; position: relative; overflow: hidden; }
.contact-info-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: var(--accent); border-radius: 50%; opacity: 0.1; filter: blur(50px); }
.ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 28px; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.12); }
.ci-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-text h5 { color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; font-weight: 600; }
.ci-text p { color: white; font-size: 15px; font-weight: 500; line-height: 1.5; }
.contact-form-card { background: white; border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-lg); }
.contact-form-card h3 { color: var(--primary); margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-muted); font-size: 15px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s; background: var(--off-white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary-mid); box-shadow: 0 0 0 4px rgba(15,13,93,0.08); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }

/* ---- FOOTER ---- */
footer { background: var(--primary-dark); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  color: rgba(255,255,255,0.5);
}
.footer-social-btn:hover { background: var(--accent); border-color: var(--accent); color: white; transform: translateY(-2px); }
.footer-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 11px; transition: color 0.2s; }
.footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--grad-hero); padding: 140px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(255,107,53,0.12) 0%, transparent 55%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: white; }
.page-hero .breadcrumb span { color: var(--accent); }
.page-hero h1 { color: white; margin-bottom: 16px; max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 560px; line-height: 1.75; }

/* ---- NOTIFY BANNER ---- */
.notify-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #FF9500 100%);
  padding: 5px 0; text-align: center;
}
.notify-banner p { color: white; font-size: 10px; font-weight: 600; }
.notify-banner a { color: white; text-decoration: underline; }

/* ---- SCROLL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-stats-card { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.mobile-open a{
    display:block;
    padding:6px 0;
  }
  .nav-links a.nav-cta-link {
    background: var(--grad-accent); color: white; padding: 9px 20px;
    box-shadow: 0 4px 16px rgba(255,107,53,0.3); border-radius: 8px; margin-left: 8px;
  }
  .services-grid, .pricing-grid, .team-grid, .why-grid { grid-template-columns: 1fr; }
  .about-strip .container, .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-line { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band {
    display: block;
    background: var(--primary);
    padding: 32px 0;
    border-top: 3px solid var(--accent);
  }
  .stat-band-divider { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
  h1 { font-size: 32px; }
}

/* MOBILE ALIGNMENT FIX */
@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }

  .page-hero,
  .about-strip,
  .services-section,
  .contact-wrap,
  .cta-section {
    overflow-x: hidden;
  }
}