/* ============================================ 
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    color: #334155;
    line-height: 1.5;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0F172A;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 20px;
    color: #0F172A;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #0F172A;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 120px;
}

.logo-area {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.logo-img {
    height: 120px;
    width: 120px;
    border-radius: 60px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: #F8FAFC;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #16A34A;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #16A34A;
}

.nav-cta {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    color: #FFFFFF !important;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    margin-left: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    color: #FFFFFF !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #F8FAFC;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.btn-primary {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #F8FAFC;
    color: #F8FAFC;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(22, 163, 74, 0.2);
    border-color: #16A34A;
    color: #16A34A;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid #16A34A;
    color: #16A34A;
    padding: 10px 24px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #16A34A;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn-outline-dark:hover::before {
    width: 300%;
    height: 300%;
}

.btn-outline-dark:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* ============================================
   CONTAINERS & LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 10%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 1.40;
    filter: brightness(1.0) contrast(1.1);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1,
.hero p {
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero .btn-group {
    justify-content: center;
}

/* ============================================
   STRIP / BANNER
   ============================================ */
.strip-dark {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
background: linear-gradient(135deg, #0F172A 0%, #1E293B 10%);
    color: #F8FAFC;
    text-align: center;
    padding: 28px 16px;
    font-weight: 700;
    font-size: 1.4rem;
    border-top: 1px solid rgba(22, 163, 74, 0.2);
    border-bottom: 1px solid rgba(22, 163, 74, 0.2);
    position: relative;
    overflow: hidden;
}

.strip-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

/* ============================================
   CARDS & GRIDS - BEAUTIFUL ENHANCEMENTS
   ============================================ */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #16A34A;
    background: rgba(255, 255, 255, 1);
}

.icon-lg {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.value-card:hover .icon-lg {
    transform: scale(1.1);
}

/* Opportunity Cards - Premium Design */
.opportunity-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    min-width: 320px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16A34A, #F59E0B, #16A34A);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.opportunity-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #16A34A;
}

.opportunity-slider-wrapper {
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 32px 10px;
    position: relative;
    background: transparent;
    border-radius: 16px;
    padding: 8px;
}

.opportunity-slider {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: circularSlideLeft 25s linear infinite;
    padding: 4px;
}

@keyframes circularSlideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.opportunity-slider-wrapper:hover .opportunity-slider {
    animation-play-state: paused;
}

/* Badges */
.badge {
    display: inline-block;
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.badge-close {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.badge-trend {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.pricing-card-individual {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
}

.pricing-card-individual:hover {
    transform: translateY(-10px);
    border-color: #16A34A;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card-individual.highlight {
    border: 2px solid #16A34A;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
    position: relative;
    transform: scale(1.02);
}

.pricing-card-individual.highlight::before {
    content: "⭐ BEST VALUE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.price-tag-large {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    color: #0F172A;
    position: relative;
    display: inline-block;
}

.price-tag-large::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #16A34A, transparent);
}

.currency-badge {
    background: linear-gradient(135deg, #E6F0EA 0%, #D1E7DD 100%);
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    color: #16A34A;
}

.premium-lock {
    position: relative;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    border-radius: 24px;
    overflow: hidden;
}

/* ============================================
   LIVE & EVENTS SECTION
   ============================================ */
.scroll-x {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
}

.scroll-x > * {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.live-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.live-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.live-card:hover::before {
    opacity: 1;
}

.live-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #16A34A;
}

.speaker-img {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-radius: 50%;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 3px solid #16A34A;
    transition: transform 0.3s ease;
}

.live-card:hover .speaker-img {
    transform: scale(1.05) rotate(5deg);
}

/* ============================================
   FOR YOU SECTION
   ============================================ */
.for-you-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.for-you-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.for-you-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.for-you-box:hover::after {
    height: 100%;
}

.for-you-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
}

.for-you-box:hover h3,
.for-you-box:hover p {
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.for-you-box h3 {
    margin-bottom: 12px;
    color: #0F172A;
    transition: color 0.3s ease;
}

.for-you-box p {
    color: #334155;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    padding: 70px 24px 80px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-container-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
}

.video-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
    border-color: #16A34A;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 56px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.video-card:hover .play-overlay i {
    transform: scale(1.2);
    color: #16A34A;
}

.video-info {
    padding: 20px 20px 24px;
}

.video-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.video-info p {
    font-size: 0.85rem;
    color: #CBD5E1;
    line-height: 1.4;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.video-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 24px;
    max-width: 800px;
    width: 90%;
    padding: 24px;
    position: relative;
    border: 2px solid #16A34A;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-content iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: none;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 28px;
    color: #FFFFFF;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #F59E0B;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* ============================================
   TEXT & IMAGE SECTION
   ============================================ */
.text-image-section {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.responsive-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.responsive-img:hover {
    transform: scale(1.02);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0F172A;
    border-top: 1px solid rgba(22, 163, 74, 0.2);
    padding: 60px 24px 40px;
    color: #CBD5E1;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #16A34A, #F59E0B, #16A34A, transparent);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #F8FAFC;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #16A34A;
}

.footer-col p,
.footer-col a {
    text-align: justify;
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #16A34A;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 12px;
}

.social-icons a {
    font-size: 1.3rem;
    color: #94A3B8;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
    color: #FFFFFF;
    background: #16A34A;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 48px;
    margin-top: 48px;
    border-top: 1px solid rgba(22, 163, 74, 0.2);
    font-size: 0.75rem;
    color: #64748B;
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page {
    display: none;
    animation: fadeIn 0.4s ease;
}

.page.active-page {
    display: block;
}

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

/* ============================================
   TOUCH & INTERACTION
   ============================================ */
.nav-link,
.nav-cta,
.menu-toggle,
button,
a {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.nav-link:focus,
.nav-link:active,
.nav-cta:focus,
.nav-cta:active,
.menu-toggle:focus,
.menu-toggle:active,
button:focus,
button:active {
    background-color: rgba(22, 163, 74, 0.1) !important;
    color: #16A34A !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 850px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 16px 24px;
        gap: 12px;
    }
    
    .nav-links {
        gap: 20px;
        justify-content: center;
    }
    
    .container {
        padding: 48px 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        padding: 16px 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
        gap: 12px;
        background: #0F172A;
        padding: 20px;
        border-radius: 16px;
        border: 1px solid rgba(22, 163, 74, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }
    
    .responsive-img {
        max-width: 100%;
        width: 100%;
    }
    
    .responsive-image-wrapper {
        margin-top: 20px;
    }
    
    .text-image-section {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card-individual.highlight::before {
        font-size: 0.65rem;
        white-space: nowrap;
    }
}
i {
    color: #22c55e;
}

/* Term and conditions*/
.legal-page {
    background: #f8fafc;
    padding: 60px 0;
}

.legal-page-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.legal-header {
    margin-bottom: 50px;
}

.legal-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.legal-header p {
    font-size: 16px;
    color: #64748b;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #111827;
}

.legal-section p,
.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.legal-section ul {
    padding-left: 22px;
}

@media (max-width: 768px) {
    .legal-page-container {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .legal-header h2 {
        font-size: 30px;
    }

    .legal-section h3 {
        font-size: 20px;
    }
}
