/* ===========================
   PERFORMANCE NOTES
   - Animations use GPU-accelerated properties only
   - Backdrop-filter disabled on mobile
   - will-change applied strategically
   - Touch targets minimum 48x48px
   - Reduced motion support included
   =========================== */

/* ===========================
   MDA Establishment License Service Page
   Advanced SEO-Optimized Styling
   =========================== */

/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-dark: #1a1f3a;
    --secondary-dark: #252b4a;
    --deep-purple: #2d3561;
    --accent-gold: #B88035;
    --accent-gold-dark: #8c652f;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --cream: #F8F2EB;
    --cream-dark: #EDE4D8;
    --white: #FFFFFF;
    --text-light: #E5E7EB;
    --text-muted: #9CA3AF;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
    --font-serif: 'Libre Baskerville', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-light);
    background: var(--primary-dark);
    overflow-x: hidden;
}


/* Touch optimization */
button, a, .cta-button, .cta-primary, .cta-secondary {
    touch-action: manipulation;
}

/* Ensure min touch target sizes (48x48px) */
.nav-link, .cta-button {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 31, 58, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-text:hover {
    color: var(--accent-gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    padding: 12px 24px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Breadcrumb
   =========================== */
.breadcrumb-section {
    padding: 100px 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .separator {
    color: var(--border-medium);
}

.breadcrumb .current {
    color: var(--text-light);
    font-weight: 500;
}

/* ===========================
   Hero Section
   =========================== */
.hero-service {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-service::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184, 128, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    /* GPU-accelerated transform only */
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 24px;
    color: var(--accent-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    /* GPU-accelerated properties only */
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: slideInUp 0.8s ease-out 0.1s backwards;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 800px;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.cta-primary {
    padding: 16px 32px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-primary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--border-medium);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-secondary:hover {
    border-color: var(--accent-gold);
    background: rgba(184, 128, 53, 0.1);
    transform: translateY(-3px);
}

/* ===========================
   Trust Indicators
   =========================== */
.trust-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 128, 53, 0.1);
    border-radius: 50%;
    color: var(--accent-gold);
}

.trust-stat {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.trust-label {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===========================
   Section Styling
   =========================== */
.intro-section,
.packages-section,
.why-choose-section,
.process-section,
.comparison-section,
.gdpmd-iso-section,
.faq-section,
.cta-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===========================
   Introduction Section
   =========================== */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-light);
}

.intro-text strong {
    color: var(--white);
    font-weight: 600;
}

.checklist {
    list-style: none;
    margin: 32px 0;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--text-light);
}

.checklist li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-green);
}

/* ===========================
   Packages Section
   =========================== */
.packages-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.featured {
    border-color: var(--accent-gold);
    background: rgba(184, 128, 53, 0.05);
}

.package-card.featured::before {
    opacity: 1;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.package-header {
    margin-bottom: 32px;
}

.package-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.package-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-gold);
}

.package-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-serif);
}

.package-desc {
    font-size: 15px;
    color: var(--text-muted);
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.package-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-green);
}

.package-features li strong {
    color: var(--white);
}

.package-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.package-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.package-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: var(--transition);
}

.package-cta:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.payment-plans {
    margin-top: 48px;
}

.payment-card {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.payment-card svg {
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.payment-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.payment-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Benefits Grid
   =========================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 128, 53, 0.1);
    border-radius: 12px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===========================
   Process Timeline
   =========================== */
.process-section {
    background: rgba(255, 255, 255, 0.02);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, transparent 100%);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: var(--primary-dark);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-number {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

.timeline-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-duration {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-deliverables {
    list-style: none;
    padding: 0;
}

.timeline-deliverables li {
    font-size: 15px;
    color: var(--text-muted);
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.timeline-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* ===========================
   Comparison Table
   =========================== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(184, 128, 53, 0.1);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-gold);
}

.comparison-table td {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-light);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-table ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.comparison-table ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.comparison-note {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
}

.comparison-note svg {
    flex-shrink: 0;
    color: var(--accent-blue);
}

.comparison-note p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   GDPMD vs ISO Section
   =========================== */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.cert-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 36px;
    transition: var(--transition);
}

.cert-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cert-header h3 {
    font-size: 26px;
    color: var(--white);
    font-weight: 700;
}

.cert-badge {
    padding: 6px 12px;
    background: rgba(184, 128, 53, 0.2);
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 16px;
}

.cert-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cert-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}

.cert-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.cert-features li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.cert-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.cert-requirement {
    padding: 16px;
    background: rgba(184, 128, 53, 0.1);
    border-left: 3px solid var(--accent-gold);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-light);
}

.cert-decision-guide {
    margin-top: 48px;
}

.cert-decision-guide h3 {
    font-size: 32px;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.decision-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.decision-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.decision-scenario {
    margin-bottom: 20px;
}

.decision-scenario svg {
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.decision-scenario h4 {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
}

.decision-item p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.decision-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.decision-cta:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-item.active {
    border-color: var(--accent-gold);
    background: rgba(184, 128, 53, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--accent-gold);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 24px 24px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer ul {
    list-style: none;
    padding-left: 48px;
}

.faq-answer ul li {
    margin-bottom: 12px;
    position: relative;
}

.faq-answer ul li::before {
    content: '→';
    position: absolute;
    left: -24px;
    color: var(--accent-gold);
}

.faq-answer strong {
    color: var(--white);
    font-weight: 600;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, rgba(184, 128, 53, 0.1) 0%, rgba(45, 53, 97, 0.2) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.cta-benefit svg {
    color: var(--accent-green);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary-large {
    padding: 18px 36px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-primary-large:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-secondary-large {
    padding: 18px 36px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    border: 2px solid var(--border-medium);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-secondary-large:hover {
    border-color: var(--accent-gold);
    background: rgba(184, 128, 53, 0.1);
    transform: translateY(-3px);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--secondary-dark);
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-light);
}

.footer-cta {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.footer-cta h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-cta p {
    font-size: 16px;
    color: var(--text-muted);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.footer-col p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}


/* Performance: GPU acceleration hints */
.hero-badge, .hero-title, .hero-subtitle, .hero-cta-group {
    will-change: transform, opacity;
}

.package-card:hover,
.cta-primary:hover,
.cta-secondary:hover,
.cta-button:hover,
.back-to-top:hover,
.whatsapp-float:hover {
    will-change: transform;
}

/* Remove will-change after animation */
@media (max-width: 768px) {
    .hero-badge, .hero-title, .hero-subtitle, .hero-cta-group {
        will-change: auto;
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .packages-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Performance: Reduce backdrop-filter on mobile */
    .header {
        backdrop-filter: none;
        background: rgba(26, 31, 58, 0.98);
    }
    
    .header.scrolled {
        background: rgba(26, 31, 58, 1);
    }
    
    .main-nav {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .timeline::before {
        left: 16px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-marker {
        width: 48px;
        height: 48px;
    }
    
    .timeline-number {
        font-size: 20px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .comparison-table-wrapper {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
    
    .decision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .package-card {
        padding: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-primary-large,
    .cta-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .header,
    .back-to-top,
    .cta-buttons,
    .package-cta,
    .decision-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .hero-title {
        color: black;
    }
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    position: relative;
    z-index: 2;
}

.whatsapp-pulse {
    /* Disabled on mobile for performance */
    display: none;
}

@media (min-width: 769px) {
    .whatsapp-pulse {
        display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.7;
        animation: pulse-animation 2s infinite;
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}