/* ============================================================
   CONEJO FLOW — styles.css  (v2 — Modern Redesign)
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  /* Brand palette — bright blue + purple/teal */
  --primary:        #3B82F6;   /* Blue-500  — primary actions */
  --primary-light:  #60A5FA;   /* Blue-400 */
  --primary-dark:   #2563EB;   /* Blue-600 */
  --accent:         #8B5CF6;   /* Violet-500 — CTA gradient start */
  --accent-dark:    #7C3AED;   /* Violet-600 */
  --accent-deeper:  #6D28D9;   /* Violet-700 */
  --teal:           #06B6D4;   /* Cyan-500  — CTA gradient end */

  /* Neutrals (Slate scale) */
  --bg:             #FFFFFF;
  --bg-alt:         #F8FAFC;   /* Slate-50 — very light gray */
  --bg-dark:        #0F172A;   /* Slate-900 */
  --text:           #0F172A;   /* Slate-900 */
  --text-body:      #334155;   /* Slate-700 */
  --text-muted:     #64748B;   /* Slate-500 */
  --text-light:     #94A3B8;   /* Slate-400 */
  --border:         #E2E8F0;   /* Slate-200 */
  --border-light:   #F1F5F9;   /* Slate-100 */

  /* Shadows */
  --shadow-xs:      0 1px 2px  rgba(0,0,0,0.04);
  --shadow-sm:      0 2px 6px  rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:         0 4px 20px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md:      0 10px 32px rgba(0,0,0,0.09), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.11), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-accent:  0 8px 32px  rgba(139,92,246,0.30);
  --shadow-blue:    0 8px 32px  rgba(59,130,246,0.22);

  /* Radii */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Layout */
  --header-h:  72px;
  --max-w:     1140px;
  --pad-x:     24px;
  --section-y: 100px;

  /* Fonts */
  --font-head: 'Inter',      system-ui, -apple-system, sans-serif;
  --font-body: 'Open Sans',  system-ui, -apple-system, sans-serif;

  /* Easing */
  --ease:   0.2s ease;
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grouped elements */
.fade-up[data-delay="1"] { transition-delay: 0.08s; }
.fade-up[data-delay="2"] { transition-delay: 0.16s; }
.fade-up[data-delay="3"] { transition-delay: 0.24s; }
.fade-up[data-delay="4"] { transition-delay: 0.32s; }
.fade-up[data-delay="5"] { transition-delay: 0.40s; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--section-y) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 52px;
}

.section-title.center { text-align: center; }

.narrow-content { max-width: 760px; }

/* Section eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(139,92,246,0.08);
  border-radius: 99px;
  border: 1px solid rgba(139,92,246,0.15);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--spring), background 0.2s ease;
  user-select: none;
  -webkit-font-smoothing: antialiased;
}

/* Primary CTA — Indigo gradient */
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(139,92,246,0.28), 0 1px 3px rgba(0,0,0,0.1);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #0891B2 100%);
  box-shadow: 0 8px 32px rgba(139,92,246,0.40), 0 2px 8px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.btn-accent:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139,92,246,0.20);
}

/* Secondary — Navy gradient */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,0.22), 0 1px 3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(59,130,246,0.35), 0 2px 6px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Outline variant */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

/* Disabled state */
.btn:disabled { opacity: 0.6; pointer-events: none; transform: none; }

/* Size variants */
.btn-sm  { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
}

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

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  /* Gradient text */
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.logo-img { height: 38px; width: auto; }

/* Footer small logo */
.logo-sm .logo-name {
  background: linear-gradient(135deg, #60A5FA 0%, #A5B4FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sm .logo-tagline { color: rgba(255,255,255,0.4); }

/* Desktop nav */
.nav-desktop ul { display: flex; align-items: center; gap: 32px; }

.nav-desktop a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  transition: width 0.25s var(--spring);
}

.nav-desktop a:hover       { color: var(--text); }
.nav-desktop a.active      { color: var(--text); }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  border-radius: var(--radius);
  transition: background var(--ease);
}
.hamburger:hover { background: var(--bg-alt); }

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
  padding: 8px 24px 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.open {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu li:last-child { margin-top: 16px; }

.mobile-nav-link {
  display: block;
  padding: 13px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--ease);
}
.mobile-nav-link:hover { color: var(--accent); }
.mobile-cta { display: block; text-align: center; width: 100%; }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 52%, #0f1f3d 100%);
  color: #fff;
  padding: calc(var(--header-h) + 88px) 0 104px;
  min-height: 640px;
  display: flex;
  align-items: center;
}

/* Dot grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glows */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 12% 65%, rgba(59,130,246,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 88% 25%, rgba(6,182,212,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 700px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}

/* Gradient accent on part of the headline */
.hero-headline .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, #A5B4FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.175rem);
  font-family: var(--font-body);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-link {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease), gap var(--ease);
}
.hero-link:hover { color: #fff; gap: 10px; }

/* Hero trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.hero-trust-item svg {
  color: rgba(99,210,180,0.9);
  flex-shrink: 0;
}

/* ============================================================
   SECTION 2 — PROBLEM / OPPORTUNITY
   ============================================================ */
#problem {
  background: var(--bg-alt);
}

#problem h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

#problem .section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.problem-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 18px;
}

.problem-body p:last-child { margin-bottom: 0; }
.problem-body p:first-child { font-size: 1.05rem; }

/* Problem list with icons */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--ease);
}

.problem-list li:last-child { border-bottom: none; }
.problem-list li:hover { background: var(--bg-alt); }

.prob-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Individual icon color themes */
.prob-icon.blue   { background: rgba(59,130,246,0.08);  color: var(--primary-light); }
.prob-icon.indigo { background: rgba(139,92,246,0.08);  color: var(--accent); }
.prob-icon.sky    { background: rgba(6,182,212,0.08);  color: var(--teal); }
.prob-icon.violet { background: rgba(139,92,246,0.08);  color: #8B5CF6; }

.prob-text {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-body);
  padding-top: 7px;
}

.problem-closer {
  font-size: 1.05rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text) !important;
}

/* ============================================================
   SECTION 3 + 4 — HOW IT WORKS + SERVICES
   ============================================================ */
#services {
  background: var(--bg);
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  margin-bottom: 60px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  height: 100%;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--spring), border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,92,246,0.2);
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(139,92,246,0.30);
  flex-shrink: 0;
}

.step-body { flex: 1; }

.step-header {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.step-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.step-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  line-height: 1.4;
}

.step-tag.free {
  background: rgba(16,185,129,0.08);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.2);
}

.step-tag.paid {
  background: rgba(139,92,246,0.08);
  color: var(--accent);
  border: 1px solid rgba(139,92,246,0.15);
}

.step-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.step-body p:last-child { margin-bottom: 0; }

/* Arrow divider */
.step-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 48px;
  width: 64px;
  gap: 6px;
}

.step-divider span {
  font-family: var(--font-head);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 600;
}

.step-divider::before {
  content: '→';
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
  line-height: 1;
}

/* Steps CTA */
.steps-cta {
  text-align: center;
  margin-bottom: 72px;
}

/* Service card */
.card-center {
  display: flex;
  justify-content: center;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Gradient top bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

/* Soft ambient background */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139,92,246,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.service-card-top {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.service-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.service-name {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.price {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.5;
}

.feature-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(139,92,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* ============================================================
   SECTION 5 — ABOUT
   ============================================================ */
#about {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

/* Subtle background accent */
#about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }

.about-quote {
  font-style: italic;
  font-size: 1rem !important;
  color: var(--text-body) !important;
  background: rgba(59,130,246,0.04);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

/* Stat pills */
.about-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-family: var(--font-head);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Photo area */
.about-photo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #EFF6FF, #EEF2FF);
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(139,92,246,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(139,92,246,0.4);
  text-align: center;
}

.photo-icon { opacity: 0.6; }
.photo-placeholder p   { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--text-light); }
.photo-placeholder small { font-size: 0.8rem; color: var(--text-light); }

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* ============================================================
   SECTION 6 — FAQ
   ============================================================ */
#faq { background: var(--bg); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--ease);
}

.faq-q:hover { color: var(--accent); }
.faq-q[aria-expanded="true"] { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
  transition: transform 0.3s var(--spring), background var(--ease), border-color var(--ease), color var(--ease);
}

.faq-q[aria-expanded="true"] .faq-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a.open { max-height: 400px; }

.faq-a p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ============================================================
   SECTION 7 — FINAL CTA BANNER
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 55%, #0f1f3d 100%);
  padding: var(--section-y) 0;
}

/* Dot pattern */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Ambient glow */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(139,92,246,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 44px;
}

/* ============================================================
   SECTION 8 — CONTACT FORM
   ============================================================ */
#contact { background: var(--bg-alt); }

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: -28px;
  margin-bottom: 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.req { color: var(--accent); margin-left: 2px; }
.opt { color: var(--text-light); font-weight: 400; font-size: 0.82rem; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.14);
}

.form-group input.is-error,
.form-group textarea.is-error {
  border-color: #EF4444;
}

.form-group input.is-error:focus,
.form-group textarea.is-error:focus {
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.field-error {
  font-size: 0.8rem;
  color: #EF4444;
  font-weight: 500;
  min-height: 1rem;
  display: block;
}

.form-footer { padding-top: 4px; }

.form-status {
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--ease);
}

.form-status.success {
  padding: 16px;
  background: #F0FDF4;
  color: #15803D;
  border: 1px solid #BBF7D0;
  margin-top: 4px;
}

.form-status.error {
  padding: 16px;
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-text { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--ease);
}
.footer-nav a:hover { color: #fff; }

.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}

.footer-btn { display: inline-flex; }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-y: 80px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-divider {
    flex-direction: row;
    width: auto;
    padding: 0;
    justify-content: center;
    gap: 12px;
  }
  .step-divider::before { content: '↓'; font-size: 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --section-y: 64px;
    --pad-x: 20px;
  }

  .nav-desktop { display: none; }
  .hamburger   { display: flex; }

  .hero {
    padding: calc(var(--header-h) + 52px) 0 72px;
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-trust { gap: 16px; margin-top: 40px; }

  .about-stats { gap: 8px; }
  .step-card   { padding: 24px 20px; }
  .service-card { padding: 36px 24px; }
  .form-row    { grid-template-columns: 1fr; }
  .section-title { margin-bottom: 36px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  /* Disable hover lift on mobile for performance */
  .step-card:hover { transform: none; box-shadow: var(--shadow-sm); }

  /* Fade-up: reduce motion on mobile */
  .fade-up {
    opacity: 0;
    transform: translateY(16px);
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 479px)
   ============================================================ */
@media (max-width: 479px) {
  .hero-headline { font-size: 1.9rem; }
  .btn-lg { padding: 15px 26px; font-size: 0.975rem; }
  .service-card::before { left: 0; right: 0; }
  .header-right .btn-sm { font-size: 0.78rem; padding: 9px 12px; }
  .about-stats { flex-direction: column; }
  .stat-pill   { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn { transition: none; }
  .step-card { transition: none; }
}

/* ============================================================
   v3 — PREMIUM ANIMATIONS & INTERACTIONS
   ============================================================ */

/* ---- Hero: slow animated gradient ---- */
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  background: linear-gradient(-45deg, #0F172A, #1E293B, #0f1f3d, #162038, #0F172A);
  background-size: 400% 400%;
  animation: heroGradientShift 20s ease infinite;
}

/* Parallax: translate the dot-grid layer via JS-controlled CSS var */
.hero::before {
  will-change: transform;
  transform: translateY(var(--parallax-y, 0));
  transition: none; /* don't transition transform — driven by rAF */
}

/* ---- Hero: floating ambient blobs ---- */
@keyframes blobFloat {
  0%,  100% { transform: translate(0,    0)   scale(1);    }
  25%        { transform: translate(18px, -22px) scale(1.04); }
  50%        { transform: translate(-12px, 14px) scale(0.97); }
  75%        { transform: translate(14px,  6px)  scale(1.02); }
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}

.hero-shape-1 {
  width: 520px; height: 520px;
  background: rgba(59, 130, 246, 0.14);
  top: -160px; right: -40px;
  animation: blobFloat 14s ease-in-out infinite;
}

.hero-shape-2 {
  width: 380px; height: 380px;
  background: rgba(6, 182, 212, 0.10);
  bottom: -120px; left: 3%;
  animation: blobFloat 17s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.hero-shape-3 {
  width: 260px; height: 260px;
  background: rgba(139, 92, 246, 0.08);
  top: 28%; left: 52%;
  animation: blobFloat 11s ease-in-out infinite;
  animation-delay: -8s;
}

/* ---- Hero: floating particles ---- */
@keyframes particleRise {
  0%   { transform: translateY(0)      scale(1);   opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 0.35; }
  100% { transform: translateY(-520px) scale(0.3); opacity: 0; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particles i {
  position: absolute;
  bottom: 0;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  animation: particleRise linear infinite;
}

.hero-particles i:nth-child(1)  { left:  7%; width: 2px; height: 2px; animation-duration:  7s; animation-delay:   0s; }
.hero-particles i:nth-child(2)  { left: 16%; width: 3px; height: 3px; animation-duration: 10s; animation-delay:  -3s; opacity: 0.7; }
.hero-particles i:nth-child(3)  { left: 28%; width: 2px; height: 2px; animation-duration:  8s; animation-delay:  -5s; }
.hero-particles i:nth-child(4)  { left: 39%; width: 1px; height: 1px; animation-duration: 13s; animation-delay:  -2s; }
.hero-particles i:nth-child(5)  { left: 51%; width: 2px; height: 2px; animation-duration:  9s; animation-delay:  -7s; }
.hero-particles i:nth-child(6)  { left: 62%; width: 3px; height: 3px; animation-duration:  7s; animation-delay:  -1s; opacity: 0.6; }
.hero-particles i:nth-child(7)  { left: 73%; width: 2px; height: 2px; animation-duration: 12s; animation-delay:  -4s; }
.hero-particles i:nth-child(8)  { left: 83%; width: 1px; height: 1px; animation-duration:  8s; animation-delay:  -6s; }
.hero-particles i:nth-child(9)  { left: 12%; width: 2px; height: 2px; animation-duration: 14s; animation-delay:  -9s; }
.hero-particles i:nth-child(10) { left: 55%; width: 2px; height: 2px; animation-duration:  6s; animation-delay: -11s; }
.hero-particles i:nth-child(11) { left: 44%; width: 3px; height: 3px; animation-duration: 16s; animation-delay: -13s; opacity: 0.5; }
.hero-particles i:nth-child(12) { left: 91%; width: 2px; height: 2px; animation-duration:  9s; animation-delay:  -2s; }

/* ---- Count-up number style ---- */
.count-num {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.03em;
  min-width: 1ch;
}

/* Hero inline count (inherits font-size from surrounding text) */
.hero-count { display: inline; }
.hero-count .count-num {
  color: inherit;
  font-size: inherit;
}

/* ---- Button: subtle glow pulse ---- */
@keyframes btnGlowPulse {
  0%,  100% { box-shadow: 0 4px 16px rgba(139,92,246,0.25), 0 4px 16px rgba(6,182,212,0.12), 0 1px 3px rgba(0,0,0,0.10); }
  50%        { box-shadow: 0 4px 28px rgba(139,92,246,0.45), 0 4px 28px rgba(6,182,212,0.20), 0 0 0 6px rgba(139,92,246,0.08), 0 1px 3px rgba(0,0,0,0.10); }
}

.btn-accent {
  animation: btnGlowPulse 3.2s ease-in-out infinite;
}
.btn-accent:hover,
.btn-accent:focus {
  animation-play-state: paused;
}

/* ---- Button: ripple on click ---- */
.btn { overflow: hidden; }

.btn-ripple {
  position: absolute;
  width:  4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.30);
  transform-origin: center;
  animation: rippleExpand 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(var(--rs, 60)); opacity: 0; }
}

/* ---- Service card: 3D perspective wrapper ---- */
.card-center {
  perspective: 1100px;
  perspective-origin: center center;
}

.service-card {
  will-change: transform;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* ---- Scroll progress indicator (right rail, desktop only) ---- */
.scroll-progress {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scroll-progress li { list-style: none; }

.scroll-progress a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
}

/* Tooltip on hover */
.scroll-progress a::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 9px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-progress a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.sp-dot {
  width:  7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(139,92,246,0.18);
  border: 1.5px solid rgba(139,92,246,0.25);
  display: block;
  transition: all 0.3s var(--spring);
}

.scroll-progress li.active .sp-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
  width:  10px;
  height: 10px;
}

@media (max-width: 1099px) { .scroll-progress { display: none; } }

/* ---- Trust strip section ---- */
.trust-strip {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0f1f3d 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.trust-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(139,92,246,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.trust-item {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 0 40px;
}

.trust-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}

/* trust-strip count-nums */
.trust-strip .count-num {
  font-size: 3.25rem;
  color: #fff;
  line-height: 1;
}

.trust-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  line-height: 1;
}

.trust-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

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

/* ---- Logo hover glow ---- */
.logo-link {
  transition: filter 0.35s ease;
}
.logo-link:hover {
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.35));
}

/* ---- FAQ: add opacity to open/close transition ---- */
.faq-a {
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.05s;
}
.faq-a.open { opacity: 1; }

/* ---- Form: focus sweep animation ---- */
@keyframes focusSweep {
  from { box-shadow: 0 0 0 0 rgba(59,130,246,0.14); }
  to   { box-shadow: 0 0 0 3px rgba(59,130,246,0.14); }
}

.form-group input:focus,
.form-group textarea:focus {
  animation: focusSweep 0.25s ease forwards;
}

/* ---- Disable heavy animations on mobile ---- */
@media (max-width: 767px) {
  .hero {
    animation: none;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 55%, #0f1f3d 100%);
    background-size: auto;
  }
  .hero-shape { animation-play-state: paused; }
  .hero-particles { display: none; }
  .btn-accent { animation: none; }
  .trust-grid { flex-direction: column; gap: 32px; }
  .trust-divider { width: 64px; height: 1px; }
  .trust-item { padding: 0; max-width: 100%; }
}

/* ---- Reduced motion overrides ---- */
@media (prefers-reduced-motion: reduce) {
  .hero, .hero-shape, .btn-accent { animation: none !important; }
  .hero-particles { display: none !important; }
  .btn-ripple { display: none !important; }
  .service-card { transition: none !important; }
  .faq-a { transition: max-height 0.4s ease !important; opacity: 1; }
}

/* ============================================================
   DARK ABOUT SECTION — contrast break between light sections
   ============================================================ */
#about {
  background: #0D1117;
}

#about::before {
  background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 68%);
}

#about .eyebrow {
  color: #C4B5FD;                       /* violet-300 */
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.22);
}

#about .about-text h2 {
  color: #F1F5F9;                       /* Slate-100 */
}

#about .about-text p {
  color: rgba(241,245,249,0.70);
}

/* Stat pills on dark bg */
#about .stat-pill {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}

#about .stat-num {
  /* gradient still works via background-clip */
}

#about .stat-label {
  color: rgba(255,255,255,0.50);
}

/* Pull-quote on dark bg */
#about .about-quote {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--accent);
  color: rgba(241,245,249,0.70) !important;
}

/* Photo placeholder on dark bg */
#about .photo-placeholder {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(139,92,246,0.08));
  border-color: rgba(139,92,246,0.18);
  color: rgba(139,92,246,0.35);
}

#about .photo-placeholder p,
#about .photo-placeholder small {
  color: rgba(255,255,255,0.32);
}
