
/* SAV Capital Goal Planning - Complete Stylesheet */

:root {
    /* Brand Colors */
    --sav-green: #3CB54A;
    --sav-green-dark: #2d9639;
    --sav-green-light: #e8f5e9;
    --sav-navy: #1E2A4A;
    --sav-navy-light: #2d3a5a;
    
    /* Goal Colors */
    --goal-retirement: #f59e0b;
    --goal-education: #012665;
    --goal-marriage: #ec4899;
    --goal-vacation: #14b8a6;
    --goal-wealth: #3CB54A;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #718096;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px -2px rgba(30, 42, 74, 0.08);
    --shadow-md: 0 8px 24px -4px rgba(30, 42, 74, 0.12);
    --shadow-lg: 0 16px 48px -8px rgba(30, 42, 74, 0.15);
    --shadow-xl: 0 20px 60px -10px rgba(30, 42, 74, 0.2);
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--sav-green) 0%, var(--sav-green-dark) 100%);
    --gradient-navy: linear-gradient(135deg, var(--sav-navy) 0%, #151d33 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.top-bar {
    background: var(--sav-navy);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--sav-green);
}

.top-bar .divider {
    color: rgba(255, 255, 255, 0.3);
}

.main-nav {
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
}

.desktop-nav {
    display: none;
    gap: 32px;
}

.desktop-nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--sav-green);
}

.desktop-nav a.active {
    font-weight: 600;
}

.btn-nav {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-700);
}

.mobile-nav {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-nav a.active {
    color: var(--sav-green);
    font-weight: 600;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    .btn-nav {
        display: inline-flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .top-bar-content {
        gap: 24px;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--sav-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--sav-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--sav-green);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--gray-50);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
    background: transparent;
    color: var(--sav-navy);
    border: 2px solid var(--gray-300);
}

.btn-outline-dark:hover {
    border-color: var(--sav-green);
    color: var(--sav-green);
}

.btn-full {
    width: 100%;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    padding-top: 100px;
}

@media (min-width: 1024px) {
    .main-content {
        padding-top: 110px;
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

.section-white {
    background: var(--white);
}

.section-muted {
    background: var(--gray-50);
}

.section-navy {
    background: var(--gradient-navy);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    color: var(--sav-green);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-label-light {
    color: var(--sav-green);
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    /*font-weight: 700;*/
    color: var(--sav-navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-light {
    color: var(--white) !important;
}

.section-subtitle {
    font-size: 16px;
    /*color: var(--gray-500);*/
    line-height: 1.6;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.8);
}

.section-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.section-text-muted {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
}

.two-col-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 60px 0;
}

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

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.decoration-1 {
    top: 80px;
    right: 40px;
    width: 288px;
    height: 288px;
    background: rgba(255, 255, 255, 0.1);
}

.decoration-2 {
    bottom: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
}

.decoration-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.decoration-ring-1 {
    width: 600px;
    height: 600px;
}

.decoration-ring-2 {
    width: 800px;
    height: 800px;
    border-color: rgba(255, 255, 255, 0.05);
}

.hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
    margin-top: 20px;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    color: var(--white);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 20px;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: var(--white);
}

.feature-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: flex;
    }
}

.goals-circle {
    position: relative;
    width: 320px;
    height: 320px;
}

.outer-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sav-green);
}

.goal-card {
    position: absolute;
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card:hover {
    box-shadow: var(--shadow-xl);
}

.goal-emoji {
    font-size: 24px;
}

.goal-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--sav-navy);
    margin-top: 4px;
}

.goal-retirement {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.goal-education {
    top: 15%;
    right: 0;
    transform: translateX(50%);
    border: 2px solid rgba(14, 165, 233, 0.3);
}

.goal-marriage {
    bottom: 15%;
    right: 0;
    transform: translateX(50%);
    border: 2px solid rgba(236, 72, 153, 0.3);
}

.goal-vacation {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    border: 2px solid rgba(20, 184, 166, 0.3);
}

.goal-wealth {
    bottom: 15%;
    left: 0;
    transform: translateX(-50%);
    border: 2px solid rgba(60, 181, 74, 0.3);
}

.goal-home {
    top: 15%;
    left: 0;
    transform: translateX(-50%);
    border: 2px solid rgba(60, 181, 74, 0.3);
}
/* ========== WHAT IS GOAL PLANNING ========== */
.goal-planning-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

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

.goal-info-boxes {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .goal-info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

.goal-info-box {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s, transform 0.3s;
}

.goal-info-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.goal-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.goal-info-icon {
    width: 56px;
    height: 56px;
    background: var(--sav-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.goal-info-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sav-navy);
    line-height: 1.3;
}

.goal-info-list {
    list-style: none;
}

.goal-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.goal-info-list li:last-child {
    border-bottom: none;
}

.goal-info-list li svg {
    color: var(--sav-green);
    flex-shrink: 0;
}
.stats-card {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 16px 24px;
    display: flex;
    gap: 24px;
    align-items: center;
}

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

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--sav-green);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
}

/* ========== BENEFITS GRID ========== */
.benefits-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--sav-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--sav-green);
}

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--sav-navy);
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========== CATEGORIES ========== */
.categories-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s, transform 0.3s;
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.category-header {
    padding: 24px;
    color: var(--white);min-height: 200px;
}

.category-short {
    background: var(--goal-vacation);
}

.category-medium {
    background: var(--goal-education);
}

.category-long {
    background: var(--sav-green);
}

.category-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.category-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 14px;
    opacity: 0.9;
}
#goal-categories .category-title,#goal-categories .category-desc{
    color: var(--white) !important;
}
.category-body {
    padding: 24px;
}

.category-examples {
    margin-bottom: 20px;
}

.examples-label,
.funds-label..funds-list {
    font-size: 16px;
    font-weight: 600;
    color: var(--sav-navy);
    margin-bottom: 8px;
}

.examples-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 50px;
}

.funds-list {
    list-style: none;
}

.funds-list li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.funds-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--sav-green);
    border-radius: 50%;
}

/* ========== CALCULATOR ========== */
.calculator-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.calculator-grid {
    display: grid;
}

@media (min-width: 1024px) {
    .calculator-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.calculator-inputs {
    padding: 32px;
}

.calc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.calc-icon {
    width: 48px;
    height: 48px;
    background: var(--sav-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.calc-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sav-navy);
}

.calc-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.input-group {
    margin-bottom: 32px;
}

.input-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.input-label label {
    font-size: 14px;
    font-weight: 500;
    color: var(--sav-navy);
}

.input-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--sav-green);
}

.slider {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--sav-green);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--sav-green);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.input-range {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 8px;
}

.calculator-results {
    background: var(--gradient-hero);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-content {
    text-align: center;
    width: 100%;
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 8px;
}

.result-value {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.results-breakdown {
    margin-bottom: 24px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.breakdown-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breakdown-value {
    font-weight: 600;
    color: var(--white);
}

/* ========== REASONS GRID ========== */
.reasons-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reason-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.reason-card:hover {
    border-color: rgba(60, 181, 74, 0.3);
    box-shadow: var(--shadow-md);
}

.reason-card:hover .reason-icon {
    background: var(--sav-green);
    color: var(--white);
    transform: scale(1.1);
}

.reason-icon {
    width: 56px;
    height: 56px;
    background: var(--sav-green-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--sav-green);
    transition: all 0.3s;
}

.reason-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sav-navy);
    margin-bottom: 8px;
}

.reason-text {
    font-size: 16px;
    color: var(--gray-500);
}

/* ========== SIP SECTION ========== */
.sip-grid {
    display: grid;
    gap: 20px;
}
.sip-grid-8 {
    display: grid;
    gap: 20px;
}
@media (min-width: 640px) {
    .sip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sip-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sip-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .sip-grid-8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sip-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.sip-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sip-icon {
    width: 56px;
    height: 56px;
    background: var(--sav-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--white);
}

.sip-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.sip-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========== WHY SAV CAPITAL ========== */
.features-list {
    margin-top: 24px;
    margin-bottom: 32px;
}

.feature-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-list-icon {
    width: 48px;
    height: 48px;
    background: var(--sav-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sav-green);
}

.feature-list-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sav-navy);
    margin-bottom: 4px;
}

.feature-list-item p {
    font-size: 16px;
    color: var(--gray-500);
}

/* App Showcase */
.app-showcase {
    background: var(--gradient-hero);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.app-showcase-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.app-showcase-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.app-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.phone-frame {
    background: var(--sav-navy);
    border-radius: 24px;
    padding: 32px;
    max-width: 180px;
    margin: 0 auto;
    color: var(--sav-green);
}

.phone-frame .app-name {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
}

.phone-frame .app-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.app-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-buttons img {
    height: 48px;
    transition: opacity 0.3s;
}

.app-buttons img:hover {
    opacity: 0.8;
}

/* ========== CTA SECTION ========== */
.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-buttons {
    display: grid;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cta-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn-primary {
    background: var(--sav-green);
    color: var(--white);
}

.cta-btn-primary:hover {
    background: var(--sav-green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-btn-secondary {
    background: var(--sav-navy);
    color: var(--white);
}

.cta-btn-secondary:hover {
    background: var(--sav-navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-btn-outline {
    background: var(--white);
    color: var(--sav-navy);
    border: 2px solid var(--gray-300);
}

.cta-btn-outline:hover {
    border-color: var(--sav-green);
    color: var(--sav-green);
    transform: translateY(-3px);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--sav-navy);
    color: var(--white);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    height: 48px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-apps {
    display: flex;
    gap: 12px;
}

.footer-apps img {
    height: 40px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--sav-green);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact svg {
    color: var(--sav-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--sav-green);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding-top: 32px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 24px;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .section {
        padding: 60px 20px;
    }
    .hero-content {
        padding: 20px;
    }
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .top-bar {
        display: none;
    }
    
    .main-content {
        padding-top: 72px;
    }
}
.disclaimer {
    padding: 30px;
}
.plan-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    border: 2px solid #2ecc40;
    border-radius: 6px;
    padding: 15px 15px;
    text-align: center;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-card:hover {
    background: #f6fff7;
    transform: translateY(-5px);
}

.plan-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    color: #2ecc40;
}

.plan-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #003366;
}

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
    .plan-container {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* Tablets & small laptops */
@media (max-width: 1199px) and (min-width: 768px) {
    .plan-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .plan-card {
        padding: 12px 12px;
    }

    .plan-icon {
        font-size: 36px;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .plan-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .plan-card {
        padding: 20px 10px;
    }

    .plan-icon {
        font-size: 32px;
    }

    .plan-card p {
        font-size: 14px;
    }
    h2.section-title {
        font-size: 36px;
    }
}

/* Very small devices */
@media (max-width: 480px) {
    .plan-container {
        grid-template-columns: 1fr;
    }
     .hero-grid {padding-top: 75px;
    }
    .plan-card {
        padding: 18px 10px;
    }
}
