/* ============================================================
   Helzod Investment Advisory - Main Stylesheet
   Framework: Pure CSS with Custom Grid/Flexbox
   Color Palette: Deep Navy, Gold, Pearl White, Slate
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --navy-deep: #0a1628;
  --navy-mid: #132244;
  --navy-light: #1e3a6e;
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --gold-pale: #f5e6b8;
  --pearl: #f8f6f0;
  --white: #ffffff;
  --slate: #8a9bbf;
  --slate-dark: #4a5a78;
  --text-primary: #0a1628;
  --text-secondary: #4a5a78;
  --text-muted: #8a9bbf;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #16a34a;
  --success-bg: #dcfce7;
  --error: #dc2626;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10);
  --shadow-lg: 0 8px 32px rgba(10,22,40,0.14);
  --shadow-xl: 0 20px 60px rgba(10,22,40,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

/* ── Typography ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle, .section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}
.section-header {
  margin-bottom: 56px;
}
.section-header.text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin: 0 auto; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
  color: var(--navy-deep);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Highlight ── */
.highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand { font-weight: 700; font-size: 1rem; color: var(--white); }
.logo-sub { font-size: 0.65rem; color: var(--slate); letter-spacing: 0.05em; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); color: var(--navy-deep); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=80') center/cover no-repeat;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(19,34,68,0.88) 50%, rgba(10,22,40,0.80) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-inner { max-width: 760px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.img-main img { width: 100%; height: 480px; object-fit: cover; }
.img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.img-accent img { width: 100%; height: 160px; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.badge-year { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.badge-text { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-lead { font-size: 1.1rem; color: var(--text-primary); font-weight: 500; line-height: 1.7; }
.about-text { color: var(--text-secondary); line-height: 1.8; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin: 8px 0; }
.value-item { display: flex; align-items: center; gap: 16px; }
.value-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.value-icon svg { width: 22px; height: 22px; }
.value-text { display: flex; flex-direction: column; gap: 2px; }
.value-text strong { font-size: 0.95rem; color: var(--navy-deep); }
.value-text span { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 100px 0; background: var(--pearl); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { color: var(--navy-deep); gap: 10px; }

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section { padding: 100px 0; background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits-content { display: flex; flex-direction: column; gap: 20px; }
.benefits-list { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; }
.benefit-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-content h4 { font-size: 1rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 4px; }
.benefit-content p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.benefits-visual { position: relative; }
.benefits-img-wrap { position: relative; }
.benefits-img-wrap > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.benefits-card-float,
.benefits-card-float-2 {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.benefits-card-float { bottom: 40px; left: -30px; }
.benefits-card-float-2 { top: 40px; right: -30px; }
.float-card-icon { font-size: 1.8rem; }
.float-card-text { display: flex; flex-direction: column; }
.float-card-text strong { font-size: 1.1rem; font-weight: 800; color: var(--navy-deep); line-height: 1; }
.float-card-text span { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-card {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,0.04); }
.stat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.stat-big {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.stat-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { padding: 100px 0; background: var(--pearl); }
.process-timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  padding-top: 8px;
}
.step-connector {
  position: absolute;
  left: 80px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201,168,76,0.1) 100%);
}
.step-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-content:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.3); }
.step-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
}
.step-icon svg { width: 22px; height: 22px; }
.step-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy-deep); }
.step-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.testimonial-card {
  background: var(--pearl);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-color: transparent;
  grid-row: span 2;
}
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.85); }
.testimonial-card.featured .testimonial-quote { color: var(--gold); }
.testimonial-card.featured .author-info strong { color: var(--white); }
.testimonial-card.featured .author-info span { color: rgba(255,255,255,0.55); }
.testimonial-quote { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 1; margin-bottom: -12px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-info strong { font-size: 0.95rem; color: var(--navy-deep); }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-top: 4px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 100px 0; background: var(--pearl); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}
.faq-header { position: sticky; top: 100px; }
.faq-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  box-shadow: var(--shadow-md);
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,0.4); box-shadow: 0 4px 16px rgba(201,168,76,0.12); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-deep);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
}
.faq-arrow svg { width: 16px; height: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--gold); color: var(--navy-deep); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }
.contact-desc { color: var(--text-secondary); line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.detail-icon svg { width: 20px; height: 20px; }
.detail-text { display: flex; flex-direction: column; gap: 4px; padding-top: 4px; }
.detail-text strong { font-size: 0.875rem; font-weight: 700; color: var(--navy-deep); }
.detail-text span { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.form-wrapper {
  background: var(--pearl);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy-deep); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-checkbox { flex-direction: row; align-items: flex-start; }
.form-checkbox input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); }
.form-checkbox label { font-size: 0.85rem; color: var(--text-secondary); }
.form-checkbox label a { color: var(--gold); font-weight: 600; }
.field-error { font-size: 0.8rem; color: var(--error); min-height: 18px; }

/* Form Success */
#formSuccess {
  text-align: center;
  padding: 48px 32px;
  background: var(--success-bg);
  border-radius: var(--radius-md);
  border: 1.5px solid #86efac;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
#formSuccess h3 { font-size: 1.4rem; font-weight: 700; color: var(--success); margin-bottom: 12px; }
#formSuccess p { font-size: 0.95rem; color: #166534; line-height: 1.7; }

/* Submit Button Loading */
#submitBtn { position: relative; }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section { padding: 80px 0; background: var(--pearl); }
.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.partner-logo {
  padding: 20px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  min-width: 160px;
  text-align: center;
}
.partner-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.3); }
.partner-name { font-size: 1rem; font-weight: 700; color: var(--slate-dark); letter-spacing: 0.05em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: var(--white); }
.footer-top { padding: 72px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }
.footer-heading { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--slate); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.875rem; color: var(--slate); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 0;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.cookie-text p { font-size: 0.85rem; color: var(--slate); line-height: 1.6; }
.cookie-text a { color: var(--gold-light); }
.cookie-text a:hover { color: var(--white); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.cookie-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
}
.cookie-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,0.4); }
.cookie-btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn-secondary:hover { background: rgba(255,255,255,0.18); }
.cookie-btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cookie-customize-panel {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px 0;
  margin-top: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.cookie-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
}
.cookie-option-info strong { font-size: 0.9rem; color: var(--white); display: block; margin-bottom: 2px; }
.cookie-option-info span { font-size: 0.8rem; color: var(--slate); }
.cookie-toggle { position: relative; display: flex; align-items: center; }
.cookie-toggle input[type="checkbox"] {
  width: 44px;
  height: 24px;
  appearance: none;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.cookie-toggle input[type="checkbox"]:checked { background: var(--gold); }
.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}
.cookie-toggle input[type="checkbox"]:checked::before { transform: translateX(20px); }
.cookie-toggle.disabled { opacity: 0.5; pointer-events: none; }
.cookie-toggle label { display: none; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .benefits-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 560px; margin: 0 auto; }
  .img-accent { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card.featured { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-header { position: static; }
  .faq-img { display: none; }
  .stats-grid { justify-content: flex-start; }
  .stat-card { min-width: 160px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 32px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    z-index: 999;
    gap: 8px;
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-cta { width: 100%; text-align: center; margin: 8px 0 0; padding: 14px 20px; font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; max-width: 280px; }
  .hero-stats { gap: 24px; }
  .stats-grid { flex-direction: column; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-card:last-child { border-bottom: none; }
  .benefits-card-float { display: none; }
  .benefits-card-float-2 { display: none; }
  .about-badge-float { display: none; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .form-wrapper { padding: 24px 20px; }
  .process-step { flex-direction: column; gap: 16px; }
  .step-number { width: auto; text-align: left; font-size: 2rem; }
  .step-connector { display: none; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; }
}