/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    --primary-color: #1a472a;
    --primary-dark: #0f2918;
    --secondary-color: #d4af37;
    --gold: #d4af37;
    --gold-light: #f4e4b0;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --gray: #666;
    --gray-light: #f9f9f9;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2918 0%, #1a472a 50%, #2d5a3d 100%);
    color: var(--text-light);
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 150px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, #c99d2e 100%);
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.3rem;
}

.cta-button.pulse {
    animation: fadeInUp 0.8s ease 0.8s both, pulse 2s infinite 1.5s;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
    }
}

.hero-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-note i {
    color: var(--warning);
    margin-left: 5px;
}

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

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

/* ===================================
   Pain Section
   =================================== */
.pain-section {
    padding: 100px 20px;
    background: var(--gray-light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--danger);
}

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

.pain-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pain-icon i {
    font-size: 2rem;
    color: var(--danger);
}

.pain-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pain-card p {
    color: var(--gray);
    line-height: 1.7;
}

.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
    border-right: 5px solid var(--danger);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.warning-box i {
    font-size: 2.5rem;
    color: var(--danger);
    flex-shrink: 0;
}

.warning-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ===================================
   Solution Section
   =================================== */
.solution-section {
    padding: 100px 20px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.service-card.featured {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 100%);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(26, 71, 42, 0.2);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #c99d2e 100%);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-tag.gold {
    background: linear-gradient(135deg, var(--gold) 0%, #c99d2e 100%);
    color: var(--primary-dark);
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-section .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ===================================
   For Whom Section
   =================================== */
.forwhom-section {
    padding: 100px 20px;
    background: var(--gray-light);
}

.forwhom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.forwhom-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.forwhom-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.forwhom-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.forwhom-card p {
    color: var(--gray);
    line-height: 1.7;
}

.not-for-box {
    background: var(--white);
    border: 3px solid var(--danger);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.not-for-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.not-for-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.not-for-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.not-for-box li::before {
    content: '✗';
    color: var(--danger);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.not-for-note {
    background: rgba(239, 68, 68, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    border-right: 4px solid var(--danger);
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    padding: 100px 20px;
    background: var(--white);
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    right: 40px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--gold) 100%);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(26, 71, 42, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 16px;
    flex: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(-5px);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===================================
   Proof Section
   =================================== */
.proof-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

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

.proof-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(26, 71, 42, 0.2);
}

.proof-icon i {
    font-size: 2rem;
    color: var(--white);
}

.proof-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-text {
    font-size: 1.05rem;
    color: var(--gray);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-light);
    transition: var(--transition);
}

.badge:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.badge span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.urgency-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 2px solid var(--warning);
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.urgency-box i {
    font-size: 2.5rem;
    color: var(--warning);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.urgency-box p {
    font-size: 1.1rem;
    color: var(--white);
    text-align: right;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-note i {
    color: var(--success);
    margin-left: 5px;
}

/* ===================================
   Registration Section
   =================================== */
.register-section {
    padding: 100px 20px;
    background: var(--gray-light);
}

.register-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.register-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 2.5rem;
    text-align: center;
}

.register-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.register-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.register-form {
    padding: 3rem 2.5rem;
    direction: rtl;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    direction: rtl;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    text-align: right;
    direction: rtl;
}

.form-group label i {
    color: var(--primary-color);
    order: -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
    direction: rtl;
    text-align: right;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    text-align: right;
    direction: rtl;
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 35px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Fix for RTL select dropdown */
.form-group select option {
    direction: rtl;
    text-align: right;
    padding: 10px;
}

.submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, #c99d2e 100%);
    color: var(--primary-dark);
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.form-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1.5rem;
    direction: rtl;
}

.form-privacy i {
    color: var(--success);
    margin-left: 5px;
}

.success-message {
    padding: 3rem 2.5rem;
    text-align: center;
}

.success-message i {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.2rem;
    color: var(--gray);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-section i {
    color: var(--gold);
    width: 20px;
    margin-left: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--gold);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom i {
    color: var(--danger);
}

.footer-bottom a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom a:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 20px 60px;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat {
        flex: 1;
        min-width: 120px;
    }
    
    .pain-grid,
    .services-grid,
    .why-grid,
    .forwhom-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        right: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .register-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
    }
    
    .register-header {
        padding: 2rem 1.5rem;
    }
}