/* ==================== VARIABLES ==================== */
:root {
    --blue: #1b6fc8;
    --blue-light: #2e8eed;
    --blue-dark: #0d4f9e;
    --green: #7ab648;
    --green-light: #91cc5a;
    --green-dark: #5a8c30;
    --dark: #111827;
    --dark-2: #1f2937;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--white);
    color: var(--dark);
    direction: rtl;
    text-align: right;
}

/* ==================== HERO VIDEO ==================== */
.hero-video-wrap {
    width: 100%;
    max-width: 560px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/9;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.4) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-light);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

/* ==================== NAVBAR ==================== */
nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 111, 200, 0.12);
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 42px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-links a:hover {
    color: var(--blue);
    background: rgba(27, 111, 200, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white) !important;
    border-radius: 10px !important;
    padding: 10px 22px !important;
    box-shadow: 0 4px 14px rgba(27, 111, 200, 0.35);
}

.nav-cta:hover {
    background: linear-gradient(
        135deg,
        var(--blue-dark),
        var(--blue)
    ) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(27, 111, 200, 0.45) !important;
}

/* ==================== HAMBURGER BUTTON ==================== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 1010;
}

.nav-hamburger:hover {
    background: rgba(27, 111, 200, 0.08);
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    background: #0a1628;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 80px;
    text-align: center;
}

/* Video background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 15, 35, 0.82) 0%,
        rgba(5, 15, 35, 0.65) 50%,
        rgba(5, 15, 35, 0.88) 100%
    );
}

.hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122, 182, 72, 0.15);
    border: 1px solid rgba(122, 182, 72, 0.35);
    color: var(--green-light);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 22px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--green-light), #b5e563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: "Cairo", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    font-family: "Cairo", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(122, 182, 72, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(122, 182, 72, 0.55);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: "Cairo", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-wrap {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.hero-logo-wrap::before {
    content: "";
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(122, 182, 72, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hero-logo-wrap::after {
    content: "";
    position: absolute;
    inset: -40px;
    border: 1px dashed rgba(27, 111, 200, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite reverse;
}

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

.hero-logo-wrap img {
    width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(27, 111, 200, 0.4));
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-num span {
    color: var(--green-light);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

/* ==================== SECTIONS COMMON ==================== */
.section {
    padding: 90px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(27, 111, 200, 0.08);
    border: 1px solid rgba(27, 111, 200, 0.2);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== ABOUT ==================== */
.about {
    background: var(--white);
}

/* New centered layout */
.about-center {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-center .section-label,
.about-center .section-title {
    text-align: center;
}

.about-center .about-actions {
    justify-content: center;
}

/* Keep old grid for fallback */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .section-label {
    text-align: right;
    display: inline-block;
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-2);
    transition: all 0.25s;
}

.feature-chip:hover {
    background: rgba(27, 111, 200, 0.08);
    color: var(--blue);
    transform: translateX(-4px);
}

.feature-chip .icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-card-main {
    background: linear-gradient(145deg, var(--dark), var(--dark-2));
    border-radius: 24px;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-card-main::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(122, 182, 72, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.about-card-main::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(
        circle,
        rgba(27, 111, 200, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.about-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white);
}

.about-card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.about-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    background: rgba(122, 182, 72, 0.15);
    border: 1px solid rgba(122, 182, 72, 0.3);
    color: var(--green-light);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}

/* ==================== STEPS ==================== */
.steps {
    background: var(--gray-light);
}

.steps-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 30px 0;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--blue-light),
        rgba(27, 111, 200, 0.1)
    );
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(27, 111, 200, 0.4);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 26px 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(27, 111, 200, 0.08);
    transition: all 0.3s ease;
}

.step-content:hover {
    box-shadow: 0 8px 30px rgba(27, 111, 200, 0.12);
    transform: translateX(-4px);
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title .badge {
    background: rgba(27, 111, 200, 0.1);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 500;
}

.step-list li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.step-note {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #b45309;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==================== PAYMENT ==================== */
.payment-section {
    background: var(--white);
}

.payment-card {
    max-width: 680px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--dark), #162340);
    border-radius: 24px;
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.payment-card::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(27, 111, 200, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.payment-card::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(
        circle,
        rgba(122, 182, 72, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.payment-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-title .icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(122, 182, 72, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.payment-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-row-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.payment-row-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    direction: ltr;
    text-align: left;
}

.payment-row-value.highlight {
    color: var(--green-light);
    font-size: 13px;
}

.payment-note {
    margin-top: 22px;
    padding: 14px 18px;
    background: rgba(122, 182, 72, 0.1);
    border: 1px solid rgba(122, 182, 72, 0.25);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==================== TERMS ==================== */
.terms {
    background: var(--gray-light);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.term-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--blue), var(--green));
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(27, 111, 200, 0.14);
}

.term-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(
        135deg,
        rgba(27, 111, 200, 0.1),
        rgba(27, 111, 200, 0.15)
    );
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.term-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.term-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.75;
}

/* ==================== CONTACT ==================== */
.contact {
    background: linear-gradient(145deg, #0a1628, #0e3568);
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(122, 182, 72, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.contact-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
}

.contact-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 48px;
    line-height: 1.75;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.contact-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-card-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-card-value {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
}

.contact-card-value.green {
    color: var(--green-light);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--dark);
    padding: 28px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 34px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-wrap {
        width: 220px;
        height: 220px;
    }

    .hero-logo-wrap img {
        width: 140px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .terms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    /* ---- Mobile Nav ---- */
    .nav-hamburger {
        display: flex;
    }

    nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px 20px;
        gap: 4px;
        border-bottom: 2px solid rgba(27, 111, 200, 0.15);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        z-index: 999;
        animation: slideDown 0.25s ease;
    }

    nav .nav-links.open {
        display: flex;
    }

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

    nav .nav-links li {
        width: 100%;
    }

    nav .nav-links a {
        display: flex;
        align-items: center;
        padding: 13px 16px;
        font-size: 15px;
        border-radius: 10px;
        color: var(--dark);
        font-weight: 600;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    nav .nav-links li:last-child a {
        border-bottom: none;
    }

    nav .nav-links a:hover {
        background: rgba(27, 111, 200, 0.07);
        color: var(--blue);
    }

    nav .nav-links .nav-cta {
        text-align: center;
        justify-content: center;
        margin-top: 10px;
        padding: 14px 22px !important;
        border-radius: 12px !important;
        border-bottom: none !important;
    }
}

@media (max-width: 600px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 28px 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== SCROLL ANIMATION ==================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== WHY SECTION ==================== */
.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-challenge,
.why-solution {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.why-challenge {
    border-top: 4px solid #f59e0b;
}

.why-solution {
    border-top: 4px solid var(--green);
}

.why-challenge-title,
.why-solution-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-icon {
    font-size: 22px;
}

.challenge-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(245, 158, 11, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.challenge-num {
    font-size: 12px;
    font-weight: 900;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-text {
    font-size: 14px;
    color: var(--dark-2);
    font-weight: 500;
    line-height: 1.6;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(122, 182, 72, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(122, 182, 72, 0.15);
}

.sol-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.sol-text {
    font-size: 14px;
    color: var(--dark-2);
    font-weight: 500;
    line-height: 1.6;
}

.why-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.arrow-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 6px 18px rgba(27, 111, 200, 0.35);
}

.arrow-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

/* ==================== FIELDS SECTION ==================== */
.fields-section {
    background: var(--gray-light);
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.field-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.field-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--c, var(--blue));
}

.field-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.field-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.field-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.field-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

/* ==================== MATURITY SECTION ==================== */
.maturity-section {
    background: var(--white);
}

.maturity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}

.maturity-card {
    background: var(--white);
    border-radius: 22px;
    padding: 34px 28px;
    border: 2px solid rgba(27, 111, 200, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.maturity-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to left, var(--blue), var(--green));
}

.maturity-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 35px rgba(27, 111, 200, 0.14);
    transform: translateY(-5px);
}

.maturity-card.featured {
    background: linear-gradient(145deg, var(--dark), #162340);
    border-color: transparent;
}

.maturity-card.featured::after {
    background: linear-gradient(to left, var(--green-light), var(--blue-light));
}

.maturity-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(27, 111, 200, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.featured-badge {
    color: var(--green-light);
    background: rgba(122, 182, 72, 0.15);
}

.maturity-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.maturity-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.maturity-card.featured .maturity-title {
    color: var(--white);
}

.maturity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.maturity-list li {
    font-size: 14px;
    color: var(--gray);
    padding-right: 18px;
    position: relative;
    line-height: 1.6;
}

.maturity-card.featured .maturity-list li {
    color: rgba(255, 255, 255, 0.7);
}

.maturity-list li::before {
    content: "▸";
    position: absolute;
    right: 0;
    color: var(--blue);
}

.maturity-card.featured .maturity-list li::before {
    color: var(--green-light);
}

.maturity-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    background: var(--gray-light);
    padding: 5px 14px;
    border-radius: 50px;
}

.featured-tag {
    color: var(--green-light);
    background: rgba(122, 182, 72, 0.15);
}

/* ==================== IMPACT SECTION ==================== */
.impact-section {
    background: linear-gradient(145deg, #0a1628, #0e3568);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(122, 182, 72, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.impact-section .section-label {
    background: rgba(122, 182, 72, 0.15);
    border-color: rgba(122, 182, 72, 0.3);
    color: var(--green-light);
}

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

.impact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.impact-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(122, 182, 72, 0.3);
}

.impact-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--green-light);
    line-height: 1;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.impact-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ==================== SCHEDULE SECTION ==================== */
.schedule-section {
    background: var(--gray-light);
}

.schedule-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.schedule-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 36px;
    box-shadow: 0 6px 18px rgba(27, 111, 200, 0.35);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule-item {
    display: grid;
    grid-template-columns: 110px 32px 1fr;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    position: relative;
}

.schedule-item:not(:last-child) .schedule-dot::after {
    content: "";
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(
        to bottom,
        currentColor,
        rgba(27, 111, 200, 0.1)
    );
}

.schedule-time {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    direction: ltr;
    padding-top: 4px;
}

.time-start {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.time-end {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.schedule-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.schedule-dot.blue {
    background: var(--blue);
}
.schedule-dot.green {
    background: var(--green);
}
.schedule-dot.orange {
    background: #f59e0b;
}
.schedule-dot.purple {
    background: #9333ea;
}
.schedule-dot.teal {
    background: #0891b2;
}
.schedule-dot.gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.schedule-content {
    background: var(--white);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.25s;
}

.schedule-content:hover {
    box-shadow: 0 8px 26px rgba(27, 111, 200, 0.1);
    transform: translateX(-4px);
}

.schedule-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.schedule-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
}

/* ==================== SUSTAINABILITY SECTION ==================== */
.sustain-section {
    background: var(--white);
}

.sustain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.sustain-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sustain-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to left, var(--blue), var(--green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.sustain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(27, 111, 200, 0.12);
}

.sustain-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

.sustain-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.sustain-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.75;
}

/* ==================== ABOUT ADDITIONS ==================== */
.about-quote {
    font-style: italic;
    font-weight: 700;
    font-size: 17px !important;
    color: var(--blue) !important;
    border-right: 3px solid var(--green);
    padding-right: 14px;
    margin-top: -6px;
}

.about-actions {
    margin-top: 26px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue);
    font-family: "Cairo", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid var(--blue);
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(27, 111, 200, 0.3);
}

/* ==================== CATEGORIES SECTION ==================== */
.categories-section {
    background: var(--gray-light);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.cat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cat-c, var(--blue));
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.cat-icon-wrap {
    width: 64px;
    height: 64px;
    background: color-mix(in srgb, var(--cat-c, var(--blue)) 12%, transparent);
    border-radius: 18px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cat-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.cat-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
}

.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cat-c, var(--blue));
    color: var(--white);
    font-family: "Cairo", sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
}

.cat-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.cat-notice {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(27, 111, 200, 0.07);
    border: 1px solid rgba(27, 111, 200, 0.18);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

/* ==================== NEWS SECTION ==================== */
.news-section {
    background: var(--white);
}

.news-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 820px;
    margin: 0 auto 28px;
}

.news-social-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.x-card {
    background: #000;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.x-card:hover {
    background: #111;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.li-card {
    background: #0a66c2;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.li-card:hover {
    background: #0856a8;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 102, 194, 0.35);
}

.nscard-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.nscard-text {
    flex: 1;
}

.nscard-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 3px;
}

.nscard-handle {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 6px;
    direction: ltr;
    text-align: right;
}

.nscard-desc {
    font-size: 13px;
    opacity: 0.65;
    line-height: 1.5;
}

.nscard-arrow {
    font-size: 22px;
    opacity: 0.5;
    flex-shrink: 0;
}

.news-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--blue);
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid var(--blue);
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==================== NEW FOOTER ==================== */
.footer-new {
    background: var(--dark);
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 50px;
    padding: 60px 5% 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-brand {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.footer-logo-img {
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-brand-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.4;
}

.footer-brand-sub {
    font-size: 13px;
    color: var(--green-light);
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand-org {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 6px;
}

.footer-brand-loc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green-light);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item:hover {
    color: var(--green-light) !important;
}

.footer-social-row {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.25s;
}

.footer-social-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--green-light);
}

.footer-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

/* ==================== RESPONSIVE NEW SECTIONS ==================== */
@media (max-width: 900px) {
    .hero-video-wrap {
        max-width: 100%;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-social-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-arrow {
        flex-direction: row;
        justify-content: center;
    }

    .arrow-icon {
        transform: rotate(90deg);
    }

    .fields-grid {
        grid-template-columns: 1fr 1fr;
    }

    .maturity-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sustain-grid {
        grid-template-columns: 1fr 1fr;
    }

    .schedule-item {
        grid-template-columns: 90px 28px 1fr;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }

    .fields-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .sustain-grid {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        grid-template-columns: 80px 24px 1fr;
        gap: 10px;
    }

    .impact-number {
        font-size: 38px;
    }
}

/* ==================== FRAMEWORK SECTION ==================== */
.framework-section {
    background: var(--gray-light);
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.framework-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(27, 111, 200, 0.1);
    border-color: rgba(27, 111, 200, 0.15);
}

.framework-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.framework-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.framework-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.85;
}

.framework-cta {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .framework-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .framework-grid {
        grid-template-columns: 1fr;
    }
    .fields-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==================== FOOTER TAGLINE ==================== */
.footer-tagline-wrap {
    background: linear-gradient(135deg, #0a1628 0%, #0d2a52 60%, #1b3d6e 100%);
    padding: 60px 5% 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-tagline-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(122, 182, 72, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.footer-tagline-line1 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}

.footer-tagline-line2 {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    color: var(--green-light);
    position: relative;
}

/* Responsive fields-grid for 10 items */
@media (max-width: 1100px) {
    .fields-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 750px) {
    .fields-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
