/* 
  IRONGATE SECURE FUND - Premium Styling System
  Design Theme: Obsidian Night & Champagne Gold (Luxury Legal / Asset Recovery)
*/

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

:root {
  /* Color Palette - Custom Luxury HSL (Green, Black & Grays) */
  --bg-primary: #0a0a0a;      /* Pure Rich Charcoal Black */
  --bg-secondary: #121212;    /* Dark Slate Gray */
  --bg-tertiary: #1a1a1a;     /* Card background */
  
  --accent-green-light: #22c55e; /* Light Emerald Glow */
  --accent-green: #15803d;       /* Forest Green Accent */
  --accent-green-dark: #14532d;  /* Dark Forest Green */

  /* Mapeo para retrocompatibilidad instantánea con selectores antiguos */
  --accent-gold-light: var(--accent-green-light);
  --accent-gold: var(--accent-green);
  --accent-gold-dark: var(--accent-green-dark);
  
  --text-primary: #f5f5f5;    /* Clean Off-white */
  --text-secondary: #a3a3a3;  /* Muted Slate Grey */
  --text-muted: #737373;      /* Darker grey for helper texts */
  
  --success: #22c55e;         /* Vibrant green for success */
  --error: #ef4444;           /* Coral red for fraud warnings */
  
  /* Borders and Glassmorphism */
  --border-color: rgba(21, 128, 61, 0.15); /* Subtly green bordered */
  --border-glow: rgba(21, 128, 61, 0.3);
  --glass-bg: rgba(18, 18, 18, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  /* Typography & Layout */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadows */
  --shadow-gold: 0 0 20px rgba(21, 128, 61, 0.15);
  --shadow-gold-hover: 0 0 35px rgba(21, 128, 61, 0.3);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Common Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

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

/* Badge/Subtitle styling */
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .section-padding {
    padding: 5rem 0;
  }
}

/* Gold Glowing Text */
.gold-glow {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(21, 128, 61, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #000;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(21, 128, 61, 0.4);
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: rgba(21, 128, 61, 0.05);
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

/* Card base style */
.luxury-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 128, 61, 0.4);
  box-shadow: var(--shadow-gold);
}

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

/* Header & Navigation Bar */
.header-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(21, 128, 61, 0.15);
  color: var(--text-secondary);
  font-size: 0.75rem;
  z-index: 1001;
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item svg {
  color: var(--accent-gold);
}

header.main-header {
  position: fixed;
  top: 38px; /* Offset by top bar */
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide top bar on scroll using transform */
body.scrolled-active .header-top-bar {
  transform: translateY(-100%);
}

header.main-header.scrolled {
  top: 0; /* Move to very top */
  padding: 0.5rem 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-bottom-color: transparent;
}

header.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* Reduced from 90px for cleaner professional look */
  transition: var(--transition-smooth);
}

header.main-header.scrolled .container {
  height: 64px; /* Reduced from 70px */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-container img {
  height: 64px; /* Scaled up from 48px */
  width: auto;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

header.main-header.scrolled .logo-container img {
  height: 52px; /* Scaled up from 38px */
}

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

.logo-text span:first-child {
  font-size: 1.2rem;
  color: #121212;
}

.logo-text span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-weight: 500;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1a1a1a; /* Highly readable dark charcoal on white */
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.8rem;
}

/* Header buttons specific style */
header.main-header .btn-secondary {
  background: #f4f4f5;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

header.main-header .btn-secondary:hover {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #1a1a1a; /* Dark color for visibility on white background */
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .header-top-bar {
    display: none !important;
  }
  header.main-header {
    top: 0 !important;
  }
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px; /* Match new header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-primary); /* Keeps dark background drawer on mobile */
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    gap: 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  header.main-header.scrolled .nav-menu {
    top: 64px; /* Match new scrolled header height */
    height: calc(100vh - 64px);
  }
  
  /* Link color in mobile drawer must be white for readability on dark background */
  .nav-menu .nav-link {
    color: #f5f5f5;
  }
  
  .nav-menu .nav-link:hover {
    color: var(--accent-gold-light);
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(21, 128, 61, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(15, 23, 42, 0.8) 0%, transparent 50%);
  padding-top: 120px;
  overflow: hidden;
}

/* Decorative grid pattern */
.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.007) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.007) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

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

.hero-title {
  font-family: var(--font-sans);
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 85%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.highlight {
  display: block;
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.4rem;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

/* Statistics Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: linear-gradient(135deg, #ffffff, var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Hero Right Side - Shield Graphic */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-container {
  width: 380px;
  height: 440px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(21, 128, 61, 0.25);
  animation: spin 30s linear infinite;
}

.glow-ring.inner {
  width: 80%;
  height: 80%;
  border: 1px solid rgba(21, 128, 61, 0.1);
  animation: spin-reverse 20s linear infinite;
}

.shield-badge {
  background: linear-gradient(135deg, #101b33 0%, #070a12 100%);
  border: 2px solid var(--accent-gold);
  width: 250px;
  height: 290px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), var(--shadow-gold);
  z-index: 5;
  transition: var(--transition-smooth);
}

.shield-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), var(--shadow-gold-hover);
}

.shield-icon {
  font-size: 4rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(21, 128, 61, 0.3));
}

.shield-text-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-align: center;
}

.shield-text-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 600;
}

.floating-card {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: float 5s ease-in-out infinite;
  z-index: 10;
}

.floating-card.c1 {
  top: 15%;
  right: -5%;
  animation-delay: 0s;
}

.floating-card.c2 {
  bottom: 15%;
  left: -5%;
  animation-delay: 2.5s;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.float-text {
  display: flex;
  flex-direction: column;
}

.float-text span:first-child {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.float-text span:last-child {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-graphic {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-title span.highlight {
    font-size: 2.7rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  .shield-container {
    width: 290px;
    height: 350px;
  }
  .shield-badge {
    width: 200px;
    height: 232px;
  }
  .floating-card {
    padding: 0.7rem 1.2rem;
  }
  .floating-card.c1 { right: -2%; }
  .floating-card.c2 { left: -2%; }
}

/* Specialties / Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link svg {
  transition: var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Trust / Proof Badges Section */
.trust-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

.trust-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .trust-flex {
    justify-content: center;
  }
  .trust-item {
    width: calc(50% - 1.25rem);
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .trust-item {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Interactive Assessment Tool / Calculator */
.assessment-section {
  background: radial-gradient(circle at 10% 20%, rgba(21, 128, 61, 0.03) 0%, transparent 60%);
  position: relative;
}

.calculator-wrapper {
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.assessment-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-gold), 0 25px 50px rgba(0,0,0,0.5);
  border-radius: 12px;
  overflow: hidden;
}

/* Form Progress Bar */
.progress-bar-container {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  justify-content: space-between;
  position: relative;
}

.progress-line {
  position: absolute;
  top: 50%;
  left: 3rem;
  right: 3rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
  transform: translateY(-50%);
}

.progress-fill {
  position: absolute;
  top: 50%;
  left: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  z-index: 1;
  transform: translateY(-50%);
  width: 0%;
  transition: var(--transition-smooth);
}

.progress-step {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.progress-step.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(21, 128, 61, 0.3);
}

.progress-step.completed {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
}

/* Calculator Slides */
.calculator-form {
  padding: 3rem 2.5rem;
  min-height: 380px;
}

.calc-step {
  display: none;
}

.calc-step.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* Option Grid - Premium Radio Selection */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
}

.custom-radio {
  position: relative;
  display: block;
}

.custom-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.radio-bullet {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.radio-bullet::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-primary);
  transform: scale(0);
  transition: var(--transition-fast);
}

.radio-card:hover {
  border-color: rgba(21, 128, 61, 0.3);
  background: rgba(21, 128, 61, 0.02);
}

.custom-radio input[type="radio"]:checked + .radio-card {
  border-color: var(--accent-gold);
  background: rgba(21, 128, 61, 0.06);
  box-shadow: 0 0 15px rgba(21, 128, 61, 0.1);
}

.custom-radio input[type="radio"]:checked + .radio-card .radio-bullet {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
}

.custom-radio input[type="radio"]:checked + .radio-card .radio-bullet::after {
  transform: scale(1);
}

.radio-text {
  display: flex;
  flex-direction: column;
}

.radio-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.radio-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* Range Slider Styles */
.slider-group {
  margin: 3rem 0;
  text-align: center;
}

.amount-display {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(21, 128, 61, 0.2);
}

.range-input {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  margin-bottom: 2rem;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(21, 128, 61, 0.5);
  transition: var(--transition-fast);
}

.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--accent-gold-light);
}

.slider-helper-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Inputs & Form Fields styling */
.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(21, 128, 61, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Result Screen Styles */
.result-gauge-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
}

.gauge-meter {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.gauge-circle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.03);
}

.gauge-circle-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--accent-gold);
  border-right-color: var(--accent-gold);
  transform: rotate(-45deg);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gauge-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-serif);
}

.gauge-label {
  font-size: 0.65rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.result-status {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.result-details {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Navigation buttons */
.calc-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2.5rem;
  background: rgba(0, 0, 0, 0.1);
}

.btn-nav-disabled {
  opacity: 0;
  pointer-events: none;
}

/* Timeline / Methodology Section */
.methodology-timeline {
  position: relative;
  margin-top: 5rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--border-color), rgba(21, 128, 61, 0.3), var(--border-color));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content-wrapper {
  width: 50%;
  padding: 0 3rem;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content-wrapper {
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--accent-gold);
  box-shadow: 0 0 15px rgba(21, 128, 61, 0.4);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold-light);
}

.timeline-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.timeline-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(21, 128, 61, 0.1);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.timeline-card:hover .timeline-number {
  color: rgba(21, 128, 61, 0.25);
  transform: scale(1.1);
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.timeline-desc {
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 2rem;
  }
  .timeline-item {
    flex-direction: row !important;
  }
  .timeline-content-wrapper {
    width: 100% !important;
    padding-left: 4rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .timeline-dot {
    left: 2rem;
  }
}

/* Success Stories / Testimonials Section */
.testimonials-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0 auto;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 3.5rem;
  position: relative;
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(21, 128, 61, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 300;
}

.client-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.client-case {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  font-weight: 500;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 1.5rem;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background: rgba(21, 128, 61, 0.08);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--accent-gold);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2.2rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
}

/* FAQ Accordion Section */
.faq-accordion-wrapper {
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.accordion-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.8rem;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: rgba(21, 128, 61, 0.25);
}

.accordion-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--accent-gold);
}

.accordion-item.active {
  border-color: var(--accent-gold);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(0, 0, 0, 0.15);
}

.accordion-content-inner {
  padding: 1.5rem 2rem 2rem 2rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Secure Consultation Form / Contact Section */
.contact-section {
  background: radial-gradient(circle at 90% 80%, rgba(21, 128, 61, 0.03) 0%, transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  margin-top: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  display: flex;
  gap: 1.2rem;
}

.info-card-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  line-height: 1;
}

.info-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold-light);
  margin-bottom: 0.3rem;
}

.info-card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.secure-badge-box {
  margin-top: 4rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.secure-icon {
  font-size: 2.2rem;
  color: var(--success);
}

.secure-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.secure-text p {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Contact Form container */
.contact-form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.contact-form-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.checkbox-group {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.checkbox-label input {
  margin-top: 0.2rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 1.8rem;
  }
}

/* Footer Styles */
footer.main-footer {
  background: #04060a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 48px;
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a:hover {
  color: var(--accent-gold);
  padding-left: 3px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
}

.footer-contact-item i {
  color: var(--accent-gold);
  margin-top: 0.2rem;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.72rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--accent-gold);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Animations for on-scroll reveal (added dynamically via IntersectionObserver if wanted) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Team & About Us Styles */
.team-img-wrapper img {
  transform: scale(1);
  transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr !important;
  }
}
