:root {
    --primary: #00472D;
    --primary-light: #00794C;
    --primary-dark: #00251a;
    --secondary: #FFB74D;
    --secondary-dark: #F57C00;
    --neutral-light: #f9f9f9;
    --neutral-mid: #e0e0e0;
    --text-dark: #333333;
    --text-light: #ffffff;
    --success: #28a745;
    --info-bg: #e6f7ff;
    --info-text: #005f80;
    --info-border: #b3e0ff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-dark: #6c757d;
    --transition: all 0.3s ease;
    /* Font sizes */
    --font-xs: 0.85rem;
    --font-sm: 0.95rem;
    --font-base: 1rem;
    --font-md: 1.1rem;
    --font-lg: 1.2rem;
    --font-xl: 1.5rem;
    --font-2xl: 2rem;
    --font-3xl: 2.5rem;
    --font-4xl: 3.5rem;
    /* Shadow system */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
    /* Border radius system */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-round: 50%;
    /* Spacing system */
    --space-xs: 1rem;
    --space-sm: 1.5rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--neutral-light);
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--gray-dark);
}

/* ░░░ NAVBAR – default ░░░ */
.navbar{
    background-color:var(--primary-dark);
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    padding:1rem 0;
    transition:var(--transition);
}

.navbar-brand{
    font-weight:700;
    font-size:1.8rem;
    color:var(--neutral-mid) !important;
    letter-spacing:-.5px;
}

.nav-link{
    color:var(--text-light) !important;
    font-weight:500;
    margin:0 .5rem;
    padding:.5rem .75rem !important;
    border-radius:4px;
    transition:var(--transition);
}
.nav-link:hover{
    color:var(--gray-100) !important;
    background:rgba(0,71,45,.05);
}
.nav-link.active{
    color:var(--gray-300) !important;
    background:rgba(0,71,45,.08);
}

/* ░░░ NAVBAR – when page is scrolled ░░░ */
.navbar-scrolled{
    /* darker background & thinner padding */
    background:var(--primary-dark);
    box-shadow:0 2px 6px rgba(0,0,0,.3);   /* proper shadow syntax */
}

/* override inner elements when scrolled */
.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link{
    color:var(--text-light) !important;
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active{
    color:var(--secondary) !important;
    background:rgba(255,255,255,.12);
}
/* ═══════════════════════════════════════════════
   NAVBAR LOGO
   ═══════════════════════════════════════════════ */

.navbar-brand {
    padding: 0.5rem 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--neutral-mid) !important;
    letter-spacing: -0.5px;
}

.navbar-logo {
    height: 40px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Scrolled state */
.navbar-scrolled .navbar-logo {
    height: 35px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 36px;
    }
}

@media (max-width: 767.98px) {
    .navbar-logo {
        height: 32px;
    }
    
    .navbar-brand {
        margin-right: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-logo {
        height: 28px;
    }
}
/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 6px rgba(0, 71, 45, 0.15);
}

.btn-primary-custom:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 71, 45, 0.2);
}

.btn-secondary-custom {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 4px 6px rgba(255, 183, 77, 0.2);
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 183, 77, 0.25);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-custom:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ─────────────────────────  HERO (v2)  ───────────────────────── */
.hero-section{
    /* richer diagonal gradient + subtle depth */
    background:linear-gradient(125deg,
                var(--primary-dark) 0%,
                var(--primary) 60%,
                var(--primary) 100%);
    color:var(--text-light);
    padding:10rem 0 6rem;
    position:relative;
    overflow:hidden;
    box-shadow:0 4px 30px rgba(0,0,0,.20);
    min-height:calc(100vh - 72px);   /* 72 px ≈ your navbar’s height; adjust if needed */
    display:flex;                    /* keeps content centred vertically   */
    align-items:center;              /* …even on ultra-wide screens        */
}

/* geometric “grid” pattern */
.hero-section::before{
    content:'';
    position:absolute; inset:0;
    background-image:
        radial-gradient(circle at 20% 30%,rgba(255,255,255,.10) 0%,transparent 8%),
        radial-gradient(circle at 85% 20%,rgba(255,255,255,.08) 0%,transparent 10%),
        radial-gradient(circle at 40% 80%,rgba(255,255,255,.05) 0%,transparent 15%),
        radial-gradient(circle at 70% 65%,rgba(255,255,255,.07) 0%,transparent 12%),
        linear-gradient(45deg,transparent 48%,rgba(255,255,255,.03) 49%,rgba(255,255,255,.03) 51%,transparent 52%);
    background-size:100px 100px,120px 120px,130px 130px,200px 200px,20px 20px;
    opacity:.6;
    z-index:0;
    animation:patternMove 60s linear infinite;
}

/* floating particles overlay */
.hero-section::after{
    content:'';
    position:absolute; inset:0;
    background-image:
        radial-gradient(circle at 10% 10%,rgba(255,255,255,.8) 0%,rgba(255,255,255,.8) .1%,transparent .2%),
        radial-gradient(circle at 20% 40%,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) .1%,transparent .2%),
        radial-gradient(circle at 30% 30%,rgba(255,255,255,.6) 0%,rgba(255,255,255,.6) .1%,transparent .2%),
        radial-gradient(circle at 40% 80%,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) .05%,transparent .15%),
        radial-gradient(circle at 50% 50%,rgba(255,255,255,.8) 0%,rgba(255,255,255,.8) .05%,transparent .15%),
        radial-gradient(circle at 80% 10%,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) .05%,transparent .15%),
        radial-gradient(circle at 85% 40%,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) .05%,transparent .15%),
        radial-gradient(circle at 90% 90%,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) .05%,transparent .15%),
        radial-gradient(circle at 15% 95%,rgba(255,255,255,.7) 0%,rgba(255,255,255,.7) .05%,transparent .15%);
    background-size:1000px 1000px;
    z-index:0;
    animation:floatingParticles 30s ease-in-out infinite alternate;
    box-shadow:inset 0 0 0 9999px rgba(0,0,0,.25);   /* 25 % darkening */
    pointer-events:none;                              /* keep it transparent for clicks */
}

/* inner content stays above the effects */
.hero-section .container{position:relative; z-index:1;}

/* enhanced heading & lead */
.hero-section h1{
    font-size:3.5rem;
    font-weight:700;
    margin-bottom:1.5rem;
    line-height:1.2;
    background:linear-gradient(90deg,#ffffff,#f0f0f0);
    -webkit-background-clip:text; background-clip:text;
    color:transparent;
    text-shadow:0 1px 3px rgba(0,0,0,.1);
    animation:fadeIn .8s ease-out both;
}
.hero-section .lead{
    font-size:1.25rem;
    margin:0 auto 2rem;
    max-width:700px;
    opacity:.95;
    animation:fadeIn .8s ease-out .2s both;
}

/* glassy invite form */
.hero-form{
    background:rgba(255,255,255,.05);
    padding:2rem;
    border-radius:16px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:
        0 10px 25px rgba(0,0,0,.10),
        0 5px 10px rgba(0,0,0,.05),
        inset 0 0 0 1px rgba(255,255,255,.10);
    transform:translateY(0);
    transition:transform .3s ease, box-shadow .3s ease;
    animation:slideUp .8s ease-out .4s both;
}
.hero-form:hover{
    box-shadow:
        0 15px 30px rgba(0,0,0,.12),
        0 8px 15px rgba(0,0,0,.06),
        inset 0 0 0 1px rgba(255,255,255,.15);
    transform:translateY(-5px);
}
.hero-form .form-control{
    margin-bottom:1rem;
    height:3.5rem;
    background:rgba(255,255,255,.9);
    border:none;
    border-radius:10px;
    padding:0 1rem;
    font-size:1rem;
    box-shadow:0 2px 5px rgba(0,0,0,.05);
    transition:all .3s ease;
}
.hero-form .form-control:focus{
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,255,255,.2);
    transform:translateY(-2px);
}

/* Section Styling */
.section-padding {
    padding: var(--space-2xl) 0;
}

.bg-light-custom {
    background-color: var(--gray-100);
}

/* Feature Cards */
.feature-card {
    background-color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--secondary);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(0, 71, 45, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
}

.feature-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Method Steps - Compact Version */

/* Methodology Flow Banner */
.methodology-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 71, 45, 0.08);
    margin: 0 auto 4rem;
    max-width: 700px;
    border: 2px solid var(--gray-200);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.flow-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 71, 45, 0.2);
}
.flow-icon svg {
    width: 24px;
    height: 24px;
}

.flow-step span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.flow-arrow {
    font-size: 24px;
    color: var(--secondary);
    font-weight: bold;
    margin: 0 5px;
}

/* Pillar Sections */
.pillar-section {
    margin-bottom: var(--space-xl);
    position: relative;
}

.pillar-badge {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0;
}

.pillar-phase {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pillar-name {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.pillar-text {
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.pillar-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
}
.pillar-svg-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 20px;
}

.pillar-svg-container svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 71, 45, 0.1));
    transition: var(--transition);
}

.pillar-svg-container svg:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 12px 25px rgba(0, 71, 45, 0.15));
}

/* Alternating layouts for visual variety */
.pillar-section:nth-child(odd) .secondary-svg {
    right: 5%;
    left: auto;
}

.pillar-section:nth-child(even) .secondary-svg {
    left: 5%;
    right: auto;
}

/* App Features */
.app-feature {
    margin-bottom: 4rem;
}

.app-feature h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.app-feature p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.app-feature .img-wrapper {
    position: relative;
    border-radius: 12px; /* Existing: Good */
    overflow: hidden;    /* Existing: Good, keeps contents neat */
    
    /* MODIFIED Shadow: Slightly softer and more spread out */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0,0,0,0.08); 
    
    transform: perspective(1000px) rotateY(-5deg); /* Existing: Good 3D tilt */
    transition: var(--transition); /* Existing: Good for smooth hover */

    /* NEW: Subtle border to help define the tilted edge */
    border: 1px solid rgba(0,0,0,0.05); /* Very light border, adjust color/opacity as needed */
}

.app-feature .img-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03); /* MODIFIED: Straighten, and now also slightly scale up */
    
    /* MODIFIED Shadow on hover: Make it more pronounced */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 10px 25px rgba(0,0,0,0.12);

    /* OPTIONAL NEW: Slightly adjust border on hover if desired */
    /* border-color: rgba(0,0,0,0.1); */
}

/* Ensure the image inside fills the wrapper and respects its border-radius */
.app-feature .img-wrapper img {
    display: block; /* Removes any bottom space if it's an inline element */
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    /* The 'rounded' class on your <img> tag should handle its own border-radius if needed, 
    but since img-wrapper has overflow:hidden, the wrapper's radius is key. */
}

/* Testimonials */
.testimonial-card {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 100px;
    color: rgba(0, 71, 45, 0.05);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.placeholder-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
}

.testimonial-card .author-info h5 {
    margin-bottom: 0;
    color: var(--primary);
}

.testimonial-card .author-info small {
    color: var(--gray-500);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}

.pilot-note {
    background-color: var(--info-bg);
    color: var(--info-text);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid var(--info-border);
    box-shadow: 0 5px 15px rgba(0, 95, 128, 0.1);
}

.pilot-note i {
    margin-right: 10px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* FAQ Section */
.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--text-light);
    border: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(0, 71, 45, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: var(--transition);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1500/800');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.cta-section .section-title {
    color: var(--text-light);
}

.cta-section .section-title::after {
    background-color: var(--secondary);
}

.cta-section .form-control {
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    margin-bottom: 1rem;
}
/* ═════════════════════════════════════════════════════════════
   MODERN PRICING SECTION - Ultra Minimal (Conflict-Free)
   ═════════════════════════════════════════════════════════════ */

/* ─── Income Range Slider ─── */
#pricing input[type="range"].form-range {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: var(--gray-300);
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

#pricing input[type="range"].form-range::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(
    to right,
    var(--primary) 0%,
    var(--primary) var(--range-progress, 0%),
    var(--gray-300) var(--range-progress, 0%),
    var(--gray-300) 100%
  );
  border-radius: 0;
}

#pricing input[type="range"].form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: var(--primary);
  border: 2px solid white;
  margin-top: -7px;
  box-shadow: 0 2px 6px rgba(0, 71, 45, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

#pricing input[type="range"].form-range:hover::-webkit-slider-thumb {
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(0, 71, 45, 0.4);
}

#pricing input[type="range"].form-range:active::-webkit-slider-thumb {
  background: var(--secondary);
}

/* Firefox slider */
#pricing input[type="range"].form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: var(--primary);
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 71, 45, 0.3);
  cursor: pointer;
}

/* ─── Slider Labels ─── */
#pricing .slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0;
}

#pricing .slider-labels span {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
  transition: all 0.3s ease;
}

#pricing .slider-labels span.active {
  color: var(--primary);
  font-weight: 700;
}

/* ─── Price Toggle Switch ─── */
.pricing-toggle {
  margin: 2rem 0;
}

.pricing-toggle-text {
  font-weight: 500;
  color: var(--gray-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.pricing-toggle-text.active {
  color: var(--primary);
  font-weight: 700;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  vertical-align: middle;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-400);
  transition: 0.4s;
  border-radius: 0;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 0;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.discount-badge {
  background-color: var(--secondary);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 0;
  vertical-align: middle;
}

/* ─── Main Pricing Table Container ─── */
.table-responsive {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--gray-300);
  transition: all 0.3s ease;
}

.table-responsive:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

#pricingTable {
  background: white;
  border-collapse: collapse;
  width: 100%;
  margin: 0;
  font-size: 0.95rem;
  border: none;
}

/* ─── Table Header ─── */
#pricingTable thead th {
    background-color: var(--primary-dark);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.5rem 1rem;
    border: none;
    border-bottom: 3px solid white;
    vertical-align: middle;
    text-align: center;
}

#pricingTable thead th:first-child {
  text-align: left;
}

/* ─── Category Section Headers ─── */
#pricingTable tr.pricing-category-header td {
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

/* ─── Dynamic Price Rows ─── */
#pricingTable tr#appPriceRow td,
#pricingTable tr#consultPriceRow td {
  background-color: #fffdf7;
  font-weight: 700;
  padding: 1.25rem 1rem;
  border: none;
  border-bottom: 1px solid var(--gray-200);
}

#pricingTable tr#appPriceRow td:first-child,
#pricingTable tr#consultPriceRow td:first-child {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 2px solid transparent;
}

#pricingTable tr#appPriceRow td:not(:first-child),
#pricingTable tr#consultPriceRow td:not(:first-child) {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

/* ─── Regular Table Cells - ALL have consistent borders ─── */
#pricingTable tbody td {
  padding: 0.875rem 1rem;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  border-left: 2px solid transparent;
  background-color: white;
  color: var(--text-dark);
  vertical-align: middle;
  transition: all 0.2s ease;
}

#pricingTable tbody td:first-child {
  font-weight: 500;
  text-align: left;
}

#pricingTable tbody td:not(:first-child) {
  text-align: center;
  color: var(--gray-dark);
  border-left: none;
}

/* ─── Alternating Rows (subtle) ─── */
#pricingTable tbody tr:nth-child(even):not(.pricing-category-header):not(#appPriceRow):not(#consultPriceRow) td {
  background-color: #fafafa;
}

/* ─── Hover Effects - SINGLE SOURCE OF TRUTH ─── */
#pricingTable tbody tr:hover:not(.pricing-category-header):not(#appPriceRow):not(#consultPriceRow) td {
  background-color: rgba(0, 71, 45, 0.03);
}

#pricingTable tbody tr:hover:not(.pricing-category-header):not(#appPriceRow):not(#consultPriceRow) td:first-child {
    border-left: 2px solid var(--primary);
}

/* ─── Checkmarks ─── */
#pricingTable td:contains("✔") {
  color: var(--success);
  font-size: 1.2rem;
  font-weight: 900;
}

/* ─── Responsive Design ─── */
@media (max-width: 991.98px) {
  #pricingTable {
    font-size: 0.9rem;
  }
  
  #pricingTable thead th,
  #pricingTable tbody td {
    padding: 0.75rem 0.5rem;
  }
  
  #pricingTable tr#appPriceRow td:not(:first-child),
  #pricingTable tr#consultPriceRow td:not(:first-child) {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .table-responsive {
    margin: 0 -15px;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }
  
  #pricingTable {
    font-size: 0.85rem;
  }
  
  #pricingTable thead th {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }
  
  #pricingTable tbody td {
    padding: 0.6rem 0.4rem;
  }
  
  #pricingTable tr.pricing-category-header td {
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
  }
  
  #pricingTable tr#appPriceRow td:not(:first-child),
  #pricingTable tr#consultPriceRow td:not(:first-child) {
    font-size: 0.95rem;
  }
  
  .discount-badge {
    display: block;
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  #pricingTable thead th:first-child,
  #pricingTable tbody td:first-child {
    min-width: 140px;
  }
}


/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    font-size: 1rem;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: block;
}

.footer-links h5 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-card, 
    .finception-method .step,
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 8rem 0 4rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
}

/* Toggle Switch Styling */
.pricing-toggle {
    margin: 30px 0;
}

.pricing-toggle-text {
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pricing-toggle-text.active {
    color: #0a2f1a;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    vertical-align: middle;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #0a2f1a;
}

input:focus + .slider {
    box-shadow: 0 0 1px #0a2f1a;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    background-color: #0a2f1a;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 15px;
    vertical-align: middle;
}

.period-small {
    font-size: 1rem;
    font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .pricing-toggle {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    .discount-badge {
        margin-top: 5px;
    }
}
/* ───────────── KEYFRAMES (add once) ───────────── */
@keyframes patternMove{
    0%{background-position:0 0,0 0,0 0,0 0,0 0;}
    100%{background-position:1000px 1000px,-500px 500px,500px -500px,-1000px -1000px,200px 200px;}
}
@keyframes floatingParticles{
    0%{background-position:0 0;}
    50%{background-position:30% 20%;}
    100%{background-position:10% 40%;}
}
@keyframes slideUp{
    from{opacity:0;transform:translateY(30px);}
    to{opacity:1;transform:translateY(0);}
}
@keyframes ripple{
    0%{transform:scale(0);opacity:.7;}
    20%{transform:scale(25);opacity:.5;}
    100%{transform:scale(40);opacity:0;}
}

.flash-popup {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4CAF50; /* Cor de sucesso */
            color: white;
            padding: 15px 20px;
            border-radius: 5px;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        .flash-popup.show {
            opacity: 1;
        }
        .flash-popup.error {
            background-color: #f44336; /* Cor de erro */
        }