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

:root {
    /* Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-light: #ffffff;

    --text-primary: #333333;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-dark: #000000;

    --accent-navy: #001f3f;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b8860b;
    --gradient-glow: linear-gradient(135deg, rgba(0, 31, 63, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    --gradient-button: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);

    /* Typography */
    --font-main: 'Inter', sans-serif;


    /* Spacing */
    --section-padding: 120px;
    --container-max-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Typography Scale */
h1 {
    font-size: 4.5rem;
    /* 72px */
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--accent-navy);
}

h2 {
    font-size: 3.5rem;
    /* 56px */
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--accent-navy);
}

h3 {
    font-size: 2rem;
    /* 32px */
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-navy);
}


p {
    font-size: 1.125rem;
    /* 18px */
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Reusable Components */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 12px;
}

.btn-primary {
    background: var(--accent-gold);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    background: var(--accent-gold-hover);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-navy);
    color: var(--accent-navy);
}

.btn-outline:hover {
    background: rgba(0, 31, 63, 0.05);
    border-color: var(--accent-navy);
}


/* Cards */
.card {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid rgba(0, 31, 63, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.05);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0, 31, 63, 0.05);
    color: var(--accent-navy);
    margin-bottom: 16px;
}

.accent {
    color: var(--accent-navy);
}

.shadow-navy {
    box-shadow: 0 0 20px rgba(0, 31, 63, 0.1);
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 31, 63, 0.03) 0%, rgba(212, 175, 55, 0) 70%);
    z-index: -1;
    filter: blur(80px);
}

/* VS List (Comparison List) */
.vs-list {
    margin-top: 24px;
}

.vs-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.5;
}

.vs-list li i,
.vs-list li svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    flex-shrink: 0;
    margin-top: 5px;
    opacity: 0.9;
    stroke-width: 2px !important;
}

@media (max-width: 768px) {
    .vs-list li {
        font-size: 1rem;
        gap: 12px;
        margin-bottom: 16px;
    }

    .vs-list li i,
    .vs-list li svg {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px;
        margin-top: 3px;
    }
}


/* Utils */
.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

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

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

/* Desktop Max Width container */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.75rem;
    }

    :root {
        --section-padding: 100px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    :root {
        --section-padding: 60px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .flex {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .card {
        padding: 32px 24px;
    }

    .container {
        padding: 0 20px;
    }
}

/* Enhanced Premium Form Styling */
.form-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 31, 63, 0.03) 0%, transparent 40%);
}

.form-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 80px;
    border: 1px solid rgba(0, 31, 63, 0.05);
    box-shadow: 0 40px 80px rgba(0, 31, 63, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 32px;
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-navy);
    margin-bottom: 12px;
    padding-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 18px 24px 18px 56px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-primary);
    background: #ffffff;
    border: 1px solid rgba(0, 31, 63, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1),
        0 0 0 4px rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.form-control:focus+i {
    color: var(--accent-gold);
}

.form-control::placeholder {
    color: rgba(0, 31, 63, 0.3);
}

.btn-premium {
    width: 100%;
    padding: 20px 40px;
    border-radius: 100px;
    background: var(--accent-navy);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.2);
    background: #002d5c;
}

.btn-premium:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .form-container {
        padding: 50px 24px;
        border-radius: 32px;
    }
}

.success-message {
    color: #10b981;
    font-weight: 600;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
}

.error-message {
    color: #ef4444;
    font-weight: 600;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.mt-24 {
    margin-top: 24px;
}

/* Final Attractive Polishes */
.form-container {
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    z-index: -1;
    border-radius: 42px;
    pointer-events: none;
}

/* Engagement Stepper */
.engagement-stepper {
    position: relative;
    margin: 0;
    padding: 0;
}

.engagement-stepper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
    opacity: 0.15;
}

.stepper-item {
    position: relative;
    margin-bottom: 64px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 48px;
}

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

.stepper-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.stepper-number {
    position: absolute;
    top: -24px;
    left: -40px;
    font-size: 6rem;
    font-weight: 900;
    color: var(--accent-navy);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.phase-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 48px;
    border: 1px solid rgba(0, 31, 63, 0.05);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.02);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.phase-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 40px 80px rgba(0, 31, 63, 0.06);
}

.phase-card.premium {
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, rgba(212, 175, 55, 0.01) 100%);
}

.phase-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 70%);
    pointer-events: none;
}

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

.phase-header h3 {
    margin-bottom: 0;
    font-size: 2.25rem;
}

.phase-status-badge {
    background: rgba(0, 31, 63, 0.05);
    color: var(--accent-navy);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.phase-card.premium .phase-status-badge {
    background: rgba(212, 175, 55, 0.12);
    color: #b8860b;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

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

.feature-item i,
.feature-item svg {
    color: var(--accent-gold);
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    margin-top: 5px;
    stroke-width: 2px !important;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.pricing-grid {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 31, 63, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-navy);
}

.phase-note {
    margin-top: 24px;
    padding: 20px 28px;
    background: rgba(212, 175, 55, 0.03);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 16px 16px 0;
    font-size: 0.95rem;
    color: var(--accent-navy);
    font-weight: 500;
    line-height: 1.6;
}

/* Sticky Layout Container */
.plans-layout-v2 {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    position: relative;
}

.plans-sticky-image {
    position: relative;
}

.plans-sticky-image img {
    position: sticky;
    top: 120px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.2;
    object-fit: contain;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 31, 63, 0.1);
    display: block;
    transition: transform 0.5s ease;
    z-index: 10;
}

@media (max-width: 1200px) {
    .plans-layout-v2 {
        gap: 40px;
    }

    .phase-card {
        padding: 32px;
    }
}

@media (max-width: 1024px) {
    .plans-layout-v2 {
        grid-template-columns: 1fr;
    }

    .phase-header h3 {
        font-size: 2rem;
    }

    .plans-sticky-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .engagement-stepper::before {
        display: none;
    }

    .stepper-item {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .phase-card {
        padding: 32px 20px;
        border-radius: 32px;
    }

    .stepper-number {
        left: 0;
        top: -30px;
        font-size: 4rem;
    }

    .phase-header h3 {
        font-size: 1.75rem;
    }

    .pricing-grid {
        gap: 24px;
    }

    .pricing-value {
        font-size: 1.25rem;
    }
}