@import url("https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap");
/* Sunsive Font Declarations - Using Web-TT files */
@font-face {
    font-family: "Sunsive";
    src: url("../../fonts/Sunsive-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sunsive";
    src: url("../../fonts/Sunsive-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sunsive";
    src: url("../../fonts/Sunsive-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sunsive";
    src: url("../../fonts/Sunsive-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary-50: #f2f9f6;
    --color-primary-100: #dff2ea;
    --color-primary-200: #bfe5d6;
    --color-primary-300: #99d5bd;
    --color-primary-400: #66c2a0;
    --color-primary-500: #016701;
    --color-primary-600: #198754;
    --color-primary-700: #016701;
    --color-primary-800: #0f4d3f;
    --color-primary-900: #0a352c;

    --color-secondary-50: #faf8ef;
    --color-secondary-100: #f3edd6;
    --color-secondary-200: #e6d9aa;
    --color-secondary-300: #d4c27f;
    --color-secondary-400: #c3b265;
    --color-secondary-500: #b6ae74;
    --color-secondary-600: #9e965e;
    --color-secondary-700: #7e774a;
    --color-secondary-800: #5e5937;
    --color-secondary-900: #403c25;
    
    --font-inter: "Inter", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;
    --font-arabic: '"IBM Plex Sans Arabic"', sans-serif;
    --font-sunsive: '"Sunsive"', sans-serif;

    --anim-float: float 6s ease-in-out infinite;
    --anim-gradient: gradient 15s ease infinite;
    --anim-pulse-glow: pulse-glow 2s ease-in-out infinite;
    --anim-shine: shine 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes shine {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

/* Global font family - Updated to include Sunsive */
* {
    font-family:
        "Sunsive", "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
}

/* Arabic/RTL Support */
.rtl {
    direction: rtl;
}

.font-arabic {
    font-family: "IBM Plex Sans Arabic", sans-serif;
}

.ar-text {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    line-height: 1.8;
}

.gradient-text {
    background: linear-gradient(90deg, #198754, #016701, #60a5fa);
    background-size: 300% 300%;
    animation: gradient 8s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-screen-gradient {
    background: linear-gradient(135deg, #198754, #016701);
}

.premium-gradient-bg {
    background: linear-gradient(135deg, #198754, #016701);
}

.card-hover {
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 24px;
}

.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.05);
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Floating animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes float-delayed {
    0%,
    100% {
        transform: translateY(0px) translateX(0);
    }

    50% {
        transform: translateY(20px) translateX(-10px);
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 10s ease-in-out infinite;
}

/* Bounce animation for scroll indicator */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-600 {
    animation-delay: 0.6s;
}

.animation-delay-800 {
    animation-delay: 0.8s;
}

.filter-btn.active {
    background-color: #198754;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.5);
}

.destination-card.hidden {
    display: none;
}

.destination-card.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.clip-path-polygon-\[50\%_0\%\2c _0\%_100\%\2c _100\%_100\%\] {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* FAQ Custom Styles */
.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #016701;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.faq-item[open]::before {
    transform: scaleX(1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-align: left;
    background: transparent;
    cursor: pointer;
    list-style: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: #016701;
    background: #eff6ff;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    min-width: 3rem;
    text-align: center;
}

.faq-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.faq-item[open] .faq-icon {
    background: #016701;
    color: white;
}

.faq-item[open] .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    animation: fadeIn 0.5s ease-out;
}

.answer-content {
    padding: 0 1.5rem 1.5rem;
}

/* Blog card styles */
.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
    border-color: #016701;
}

.blog-card h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    color: #111827;
}

.blog-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

.blog-card a {
    font-size: 14px;
    font-weight: 600;
    color: #198754;
}

/* Plan card styles */
.plan-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.25);
}

.plan-card-featured {
    position: relative;
    background: #198754;
    border-radius: 28px;
    padding: 36px;
    color: #fff;
    transform: scale(1.06);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #facc15;
    color: #1f2937;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.5);
}

/* Testimonial card styles */
.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-radius: 26px;
    padding: 34px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(37, 99, 235, 0.15);
    border-color: #93c5fd;
}

.testimonial-card-premium p {
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 26px;
    font-style: italic;
}

.testimonial-card-premium .user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-card-premium img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #e0e7ff;
    object-fit: cover;
}

.testimonial-card-premium h4 {
    font-weight: 700;
    color: #111827;
    font-size: 16px;
}

.testimonial-card-premium span {
    font-size: 13px;
    color: #6b7280;
}

/* Featured testimonial card */
.testimonial-card-premium.featured {
    background: linear-gradient(135deg, #198754, #016701);
    color: white;
    border: none;
    box-shadow: 0 35px 80px rgba(30, 64, 175, 0.3);
    transform: scale(1.02);
}

.testimonial-card-premium.featured p,
.testimonial-card-premium.featured h4,
.testimonial-card-premium.featured span {
    color: white;
}

.testimonial-card-premium.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 40px 90px rgba(30, 64, 175, 0.4);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #016701, #198754);
}

.filter-btn.active {
    background-color: #198754;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.5);
}

.destination-card {
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.destination-card:hover {
    text-decoration: none;
    color: inherit;
}

.destination-card.hidden {
    display: none;
}

.destination-card.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Make cards clickable with proper cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Remove outline on focus for better UX */
.destination-card:focus {
    outline: 2px solid #016701;
    outline-offset: 2px;
}

#mainNav,
#mainNavBox {
    transform: translateY(0px) !important;
    transition: none !important;
}

.offer-hidden {
    display: none !important;
}

.offer-slide-up {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.35s ease;
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.esim-section *,
.esim-section *::before,
.esim-section *::after {
    box-sizing: border-box;
}

.esim-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .esim-container {
        padding: 0 20px;
    }
}

#esim-destinations {
    background: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

#esim-destinations::before {
    content: "ESIM";
    position: absolute;
    top: -20px;
    right: -40px;
    font-size: 280px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(45, 90, 61, 0.05);
    letter-spacing: -20px;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.d-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(45, 90, 61, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    color: #016701;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: white;
    margin-bottom: 20px;
}

.d-tag-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4a8860;
    animation: dpulse 2s infinite;
}

@keyframes dpulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.d-headline {
    font-size: clamp(52px, 7vw, 72px);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 0.9;
    letter-spacing: -3px;
    margin: 0;
}

.d-headline em {
    font-style: normal;
    color: #016701;
    position: relative;
}

.d-headline em::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #c8e6a0;
    border-radius: 2px;
}

/* Search — kept for hero reuse */
.d-search-wrap {
    background: white;
    border: 1.5px solid rgba(45, 90, 61, 0.15);
    border-radius: 16px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 580px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.d-search-wrap:focus-within {
    border-color: #016701;
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.08);
}

.d-search-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #0a0a0a;
    background: transparent;
}

.d-search-wrap input::placeholder {
    color: #aaa;
}

.d-search-btn {
    padding: 12px 28px;
    background: #0a0a0a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition:
        background 0.2s,
        transform 0.15s;
}

.d-search-btn:hover {
    background: #016701;
    transform: scale(1.03);
}

.d-filter-tabs {
    display: flex;
    gap: 4px;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 4px;
    width: fit-content;
}

.d-filter-tab {
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.d-filter-tab.active {
    background: #016701;
    color: white;
    box-shadow: 0 2px 12px rgba(45, 90, 61, 0.3);
}

.d-filter-tab:not(.active):hover {
    color: #016701;
    background: #e8f0ea;
}

.d-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

.d-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s;
}

.d-card:hover {
    transform: translateY(-6px) rotate(-0.4deg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.d-card:hover .d-card-img {
    transform: scale(1.08);
}

.d-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.d-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.d-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.75) 0%,
        transparent 55%
    );
}

.d-card-flag {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.d-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.95);
    color: #0a0a0a;
}

.d-card-title {
    position: absolute;
    bottom: 14px;
    left: 14px;
    color: white;
}

.d-card-title h3 {
    font-family: "Clash Display", serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.d-card-title p {
    font-size: 11px;
    color: rgba(200, 230, 160, 0.9);
    margin-top: 2px;
}

.d-card-footer {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1.5px solid rgba(0, 0, 0, 0.04);
}

.d-card-info {
    font-size: 13px;
    font-weight: 500;
    color: #0a0a0a;
}

.d-card-sub {
    font-size: 11px;
    color: #aaa;
    margin-top: 1px;
}

.d-card-price {
    font-family: "Clash Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: #016701;
    letter-spacing: -0.5px;
}

.d-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 60px;
}

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

.d-stat {
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition:
        border-color 0.2s,
        transform 0.2s;
}

.d-stat:hover {
    border-color: #016701;
    transform: translateY(-2px);
}

.d-stat-num {
    font-family: "Clash Display", serif;
    font-size: 36px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2px;
    line-height: 1;
}

.d-stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.d-cta {
    margin-top: 80px;
    background: #016701;
    border-radius: 24px;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.d-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 80% 50%,
        rgba(200, 230, 160, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.d-cta-title {
    font-family: "Clash Display", serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: white;
    letter-spacing: -1.5px;
    line-height: 1.1;
    max-width: 480px;
}

.d-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.d-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.d-btn-primary {
    padding: 14px 32px;
    background: #c8e6a0;
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.d-btn-primary:hover {
    background: white;
    transform: scale(1.04);
}

.d-btn-ghost {
    padding: 14px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.d-btn-ghost:hover {
    border-color: white;
    color: white;
}

#esim-what {
    background: #f5eee9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#esim-what::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 90, 61, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.w-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.w-overline {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 20px;
}

.w-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2.5px;
    line-height: 0.92;
    margin-bottom: 28px;
}

.w-headline span {
    color: #016701;
}

.w-body {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    max-width: 480px;
    margin-bottom: 40px;
}

.w-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 44px;
    padding: 0;
}

.w-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(45, 90, 61, 0.1);
    border-radius: 14px;
    transition:
        background 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}

.w-feature:hover {
    background: white;
    border-color: rgba(45, 90, 61, 0.25);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.08);
}

.w-icon {
    width: 36px;
    height: 36px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #016701;
}

.w-icon svg {
    width: 16px;
    height: 16px;
}

.w-feat-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 2px;
}

.w-feat-sub {
    font-size: 12px;
    color: #888;
}

.w-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.w-btn-main {
    padding: 15px 34px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.w-btn-main:hover {
    background: #0a0a0a;
    transform: scale(1.04);
}

.w-btn-out {
    padding: 15px 30px;
    background: transparent;
    color: #016701;
    border: 1.5px solid rgba(45, 90, 61, 0.3);
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.w-btn-out:hover {
    border-color: #016701;
    background: rgba(45, 90, 61, 0.06);
}

.w-compat {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #aaa;
}

.w-cdot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.w-visual {
    position: relative;
    height: 540px;
}

@media (max-width: 900px) {
    .w-visual {
        height: 320px;
    }
}

.w-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.w-float {
    position: absolute;
    background: white;
    border: 1px solid rgba(45, 90, 61, 0.12);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.w-float.tl {
    top: 24px;
    left: -24px;
}

.w-float.br {
    bottom: 24px;
    right: -24px;
}

.w-float-val {
    font-family: "Clash Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: #016701;
    letter-spacing: -1px;
    line-height: 1;
}

.w-float-label {
    font-size: 11px;
    color: #999;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* HOW IT WORKS - CLEAN GREEN STYLES */
.hiw-section {
    background: #ffffff;
    padding: 100px 0;
    font-family: "DM Sans", "IBM Plex Sans Arabic", "Montserrat", sans-serif;
    position: relative;
    overflow: hidden;
}

.hiw-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .hiw-container {
        padding: 0 20px;
    }

    .hiw-section {
        padding: 60px 0;
    }
}

/* Header Styles */
.hiw-header {
    text-align: center;
    margin-bottom: 60px;
}

.hiw-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #016701;
    background: rgba(1, 103, 1, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hiw-title {
    font-family: "Clash Display", serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.hiw-title-green {
    color: #016701;
    position: relative;
    display: inline-block;
}

.hiw-title-green::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(1, 103, 1, 0.2);
    border-radius: 2px;
    z-index: -1;
}

.hiw-subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Grid */
.hiw-steps-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.hiw-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hiw-steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Step Cards */
.hiw-step-card {
    position: relative;
}

.hiw-step-number {
    width: 64px;
    height: 64px;
    background: #016701;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Clash Display", serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(1, 103, 1, 0.3);
    border: 4px solid white;
    transform: translateY(30px);
}

.hiw-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.hiw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(1, 103, 1, 0.1);
    border-color: rgba(1, 103, 1, 0.2);
}

.hiw-card-image {
    background: #f0f7f0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hiw-card-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.hiw-card:hover .hiw-card-img {
    transform: scale(1.08);
}

.hiw-card-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #016701;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hiw-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.hiw-card-content {
    padding: 32px 24px 28px;
}

.hiw-card-title {
    font-family: "Clash Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.hiw-card-title svg {
    width: 22px;
    height: 22px;
    color: #016701;
    flex-shrink: 0;
    stroke-width: 2;
}

.hiw-card-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Checklist */
.hiw-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hiw-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444444;
}

.hiw-check-icon {
    width: 20px;
    height: 20px;
    background: rgba(1, 103, 1, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #016701;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA Block */
.hiw-cta-block {
    background: #f5faf5;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(1, 103, 1, 0.15);
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .hiw-cta-block {
        padding: 40px 20px;
        border-radius: 30px;
    }
}

.hiw-cta-block::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(1, 103, 1, 0.05);
    pointer-events: none;
}

.hiw-cta-block::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(1, 103, 1, 0.05);
    pointer-events: none;
}

.hiw-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid rgba(1, 103, 1, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #016701;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.hiw-cta-badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.hiw-cta-title {
    font-family: "Clash Display", serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.hiw-cta-green {
    color: #016701;
}

.hiw-cta-text {
    font-size: 16px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Device Tags */
.hiw-device-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.hiw-device-tag {
    background: white;
    border: 1px solid rgba(1, 103, 1, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #444444;
    transition: all 0.2s ease;
}

.hiw-device-tag:hover {
    border-color: #016701;
    color: #016701;
    background: #f0f7f0;
}

/* Buttons */
.hiw-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.hiw-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(1, 103, 1, 0.25);
}

.hiw-button-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.hiw-button-primary:hover {
    background: #004d00;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(1, 103, 1, 0.35);
}

.hiw-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #016701;
    border: 1.5px solid rgba(1, 103, 1, 0.3);
    border-radius: 16px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hiw-button-secondary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.hiw-button-secondary:hover {
    border-color: #016701;
    background: #f0f7f0;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hiw-step-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
        transform: translateY(25px);
    }

    .hiw-card-content {
        padding: 28px 20px 24px;
    }

    .hiw-card-title {
        font-size: 18px;
    }

    .hiw-button-primary,
    .hiw-button-secondary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
    }
}

/* Animation classes (optional) */
.hiw-animate-1 {
    animation: fadeInUp 0.6s ease forwards;
}

.hiw-animate-2 {
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hiw-animate-3 {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hiw-animate-cta {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

body {
    font-family: "DM Sans", "IBM Plex Sans Arabic", "Montserrat", sans-serif;
}

.esim-container,
.s-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .esim-container,
    .s-container {
        padding: 0 20px;
    }
}

/* ── SECTION 2: WHAT IS ESIM ── */
#esim-what {
    background: #f5eee9;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif;
}

.w-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

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

.w-overline {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 16px;
}

.w-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2.5px;
    line-height: 1;
    margin-bottom: 24px;
}

.w-headline span {
    color: #016701;
}

.w-body {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 480px;
    margin-bottom: 32px;
}

.w-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    padding: 0;
}

.w-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(45, 90, 61, 0.1);
    border-radius: 14px;
}

.w-icon {
    width: 36px;
    height: 36px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #016701;
}

.w-icon svg {
    width: 16px;
    height: 16px;
}

.w-feat-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 2px;
}

.w-feat-sub {
    font-size: 12px;
    color: #888;
    display: block;
    line-height: 1.4;
}

.w-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.w-btn-main {
    padding: 14px 32px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.w-btn-out {
    padding: 14px 28px;
    background: transparent;
    color: #016701;
    border: 1.5px solid rgba(45, 90, 61, 0.3);
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.w-compat {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
}

.w-cdot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.w-visual {
    position: relative;
    height: 500px;
}

@media (max-width: 900px) {
    .w-visual {
        height: 320px;
    }
}

.w-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.w-float {
    position: absolute;
    background: white;
    border: 1px solid rgba(45, 90, 61, 0.12);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.w-float.tl {
    top: 24px;
    left: -24px;
}

.w-float.br {
    bottom: 24px;
    right: -24px;
}

.w-float-val {
    font-family: "Clash Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: #016701;
    letter-spacing: -1px;
    line-height: 1;
}

.w-float-label {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── HOW IT WORKS ── */
.hiw-section {
    background: #ffffff;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif;
}

.hiw-overline {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 12px;
}

.hiw-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2.5px;
    line-height: 1;
    margin-bottom: 12px;
}

.hiw-headline span {
    color: #016701;
}

.hiw-sub {
    font-size: 16px;
    color: #777;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .hiw-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hiw-step-num {
    width: 56px;
    height: 56px;
    background: #016701;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Clash Display", serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.3);
    border: 3px solid white;
}

.hiw-num-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: -28px;
    position: relative;
    z-index: 2;
}

.hiw-card {
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    overflow: hidden;
}

.hiw-img-area {
    background: #f5eee9;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hiw-img-area img {
    height: 120px;
    object-fit: contain;
}

.hiw-icon-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #016701;
}

.hiw-card-body {
    padding: 24px 20px 20px;
}

.hiw-card-title {
    font-family: "Clash Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hiw-card-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 16px;
}

.hiw-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hiw-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.hiw-check-icon {
    width: 18px;
    height: 18px;
    background: #e8f4ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hiw-check-icon svg {
    width: 9px;
    height: 9px;
    color: #016701;
}

.hiw-cta {
    margin-top: 60px;
    background: #f5eee9;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    border: 1.5px solid rgba(45, 90, 61, 0.1);
}

@media (max-width: 640px) {
    .hiw-cta {
        padding: 32px 20px;
    }
}

.hiw-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: white;
    border: 1.5px solid rgba(45, 90, 61, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #016701;
    margin-bottom: 16px;
}

.hiw-cta-title {
    font-family: "Clash Display", serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hiw-cta-title span {
    color: #016701;
}

.hiw-cta-sub {
    font-size: 14px;
    color: #777;
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.hiw-device-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.hiw-chip {
    padding: 6px 16px;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

.hiw-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hiw-cta-btn-primary {
    padding: 12px 28px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hiw-cta-btn-outline {
    padding: 12px 26px;
    background: white;
    color: #016701;
    border: 1.5px solid rgba(45, 90, 61, 0.25);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ── POPULAR PLANS ── */
.plans-section {
    background: #f5eee9;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif;
}

.plans-overline {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 12px;
}

.plans-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2.5px;
    line-height: 1;
    margin-bottom: 12px;
}

.plans-headline span {
    color: #016701;
}

.plans-sub {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

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

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

.plan-card-new {
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.plan-card-featured-new {
    background: #016701;
    border: 1.5px solid #016701;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4a843;
    color: #0a0a0a;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.pc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pc-flag {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.pc-flag-featured {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pc-name {
    font-family: "Clash Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.2;
}

.pc-name-light {
    font-family: "Clash Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.pc-sub {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

.pc-sub-light {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.pc-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.pc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f8f6;
    border-radius: 8px;
    font-size: 13px;
}

.pc-row-label {
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pc-row-label svg {
    width: 12px;
    height: 12px;
    color: #016701;
}

.pc-row-val {
    font-weight: 600;
    color: #0a0a0a;
    font-size: 12px;
}

.pc-row-dark {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
}

.pc-row-dark-label {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pc-row-dark-label svg {
    width: 12px;
    height: 12px;
    color: #c8e6a0;
}

.pc-row-dark-val {
    font-weight: 600;
    color: white;
    font-size: 12px;
}

.pc-price-wrap {
    padding: 12px 0;
    border-top: 1.5px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
}

.pc-price-wrap-dark {
    padding: 12px 0;
    border-top: 1.5px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
}

.pc-price {
    font-family: "Clash Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -1px;
    line-height: 1;
}

.pc-price span {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
}

.pc-price-light {
    font-family: "Clash Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
}

.pc-price-light span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.pc-btn {
    width: 100%;
    padding: 12px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.pc-btn-light {
    width: 100%;
    padding: 12px;
    background: #c8e6a0;
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.mt-auto-flex {
    margin-top: auto;
}

.cmp-section *,
.cmp-section *::before,
.cmp-section *::after,
.blog-section *,
.blog-section *::before,
.blog-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.s2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .s2-container {
        padding: 0 20px;
    }
}

.cmp-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
}

.cmp-overline {
    display: inline-block;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 16px;
}

.cmp-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2.5px;
    line-height: 0.92;
    margin-bottom: 16px;
}

.cmp-headline span {
    color: #016701;
}

.cmp-sub {
    font-size: 16px;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Table wrapper */
.cmp-table-wrap {
    margin-top: 56px;
    border-radius: 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

/* Table header */
.cmp-thead {
    background: #016701;
    display: grid;
    grid-template-columns: 1.8fr repeat(5, 1fr);
    gap: 0;
    padding: 0 24px;
}

@media (max-width: 900px) {
    .cmp-thead {
        display: none;
    }
}

.cmp-th {
    padding: 20px 12px;
    text-align: center;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.cmp-th:first-child {
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.cmp-th.us {
    background: rgba(200, 230, 160, 0.15);
    border-radius: 8px 8px 0 0;
    color: #c8e6a0;
}

/* Rows */
.cmp-row {
    display: grid;
    grid-template-columns: 1.8fr repeat(5, 1fr);
    gap: 0;
    padding: 0 24px;
    border-top: 1.5px solid rgba(0, 0, 0, 0.05);
    transition: background 0.15s;
}

.cmp-row:hover {
    background: #faf9f7;
}

@media (max-width: 900px) {
    .cmp-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 16px;
    }

    .cmp-row > *:first-child {
        grid-column: 1 / -1;
    }
}

.cmp-cell {
    padding: 18px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-align: center;
}

.cmp-cell:first-child {
    justify-content: flex-start;
}

.cmp-cell.highlight {
    background: rgba(45, 90, 61, 0.03);
    border-left: none;
    border-right: none;
}

/* Feature label */
.cmp-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cmp-feat-icon {
    width: 32px;
    height: 32px;
    background: #f5eee9;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #016701;
}

.cmp-feat-icon svg {
    width: 14px;
    height: 14px;
}

.cmp-feat-label {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}

/* Status icons */
.s-yes {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.s-yes .ic {
    width: 28px;
    height: 28px;
    background: #e8f4ec;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-yes .ic svg {
    width: 13px;
    height: 13px;
    color: #016701;
}

.s-yes span {
    font-size: 10px;
    color: #016701;
    font-weight: 600;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
}

.s-no {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.s-no .ic {
    width: 28px;
    height: 28px;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-no .ic svg {
    width: 13px;
    height: 13px;
    color: #dc2626;
}

.s-no span {
    font-size: 10px;
    color: #dc2626;
    font-weight: 600;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
}

.s-partial {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.s-partial .ic {
    width: 28px;
    height: 28px;
    background: #fffbeb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-partial .ic svg {
    width: 13px;
    height: 13px;
    color: #d97706;
}

.s-partial span {
    font-size: 10px;
    color: #d97706;
    font-weight: 600;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
}

.cmp-num {
    font-family: "Clash Display", serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
}

.cmp-num-sub {
    font-size: 10px;
    color: #aaa;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    display: block;
}

.cmp-tag {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
}

.cmp-tag.green {
    background: #e8f4ec;
    color: #016701;
}

.cmp-tag.gray {
    background: #f3f4f6;
    color: #555;
}

/* Highlighted column (us) */
.cmp-row > .cmp-cell.us-col {
    background: rgb(245 238 233);
}

/* Mobile provider label */
.cmp-mob-label {
    display: none;
}

@media (max-width: 900px) {
    .cmp-mob-label {
        display: block;
        font-size: 10px;
        color: #aaa;
        font-family:
            "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 4px;
    }
}

/* ═══════════════════════════
     BLOG — #f5eee9 bg
  ═══════════════════════════ */
.blog-section {
    background: #f5eee9;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
}

.blog-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 90, 61, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Blog header */
.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 56px;
}

.blog-overline {
    display: inline-block;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 14px;
}

.blog-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2.5px;
    line-height: 0.92;
    margin-bottom: 12px;
}

.blog-headline span {
    color: #016701;
}

.blog-sub {
    font-size: 15px;
    color: #777;
    max-width: 420px;
    line-height: 1.65;
}

.blog-view-btn {
    padding: 13px 28px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.blog-view-btn:hover {
    background: #0a0a0a;
    transform: scale(1.04);
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

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

/* Blog card */
.blog-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    display: block;
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s,
        border-color 0.2s;
}

.blog-card-new:hover {
    transform: translateY(-6px) rotate(-0.3deg);
    box-shadow: 0 24px 60px rgba(45, 90, 61, 0.12);
    border-color: rgba(45, 90, 61, 0.2);
}

.blog-card-new:hover .bc-img {
    transform: scale(1.07);
}

.bc-img-wrap {
    overflow: hidden;
    height: 200px;
}

.bc-img-wrap.tall {
    height: 230px;
}

.bc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-body {
    padding: 20px 22px 24px;
}

.bc-tag {
    display: inline-block;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #016701;
    background: #e8f4ec;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.bc-tag.featured {
    background: #016701;
    color: white;
}

.bc-title {
    font-family: "Clash Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.bc-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.bc-link {
    font-size: 13px;
    font-weight: 700;
    color: #016701;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    letter-spacing: 0.02em;
    transition: gap 0.2s;
}

.blog-card-new:hover .bc-link {
    gap: 10px;
}

.bc-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}

.blog-card-new:hover .bc-link svg {
    transform: translateX(2px);
}

@keyframes dpulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.ds-*,
.ds-*::before,
.ds-*::after {
    box-sizing: border-box;
}

.s3-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .s3-container {
        padding: 0 20px;
    }
}

@keyframes dpulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════
     DOWNLOAD APP — #f5eee9
  ═══════════════════════════ */
#dl-app {
    background: white;
    padding: 100px 0;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    position: relative;
    overflow: hidden;
}

#dl-app::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(45, 90, 61, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.dl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 28px;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    padding: 60px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .dl-inner {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        gap: 40px;
    }
}

.dl-overline {
    display: inline-block;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 16px;
}

.dl-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 20px;
}

.dl-headline span {
    color: #016701;
}

.dl-body {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 36px;
}

.dl-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dl-store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: #0a0a0a;
    color: white;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid transparent;
}

.dl-store-btn:hover {
    background: #016701;
    transform: scale(1.04);
}

.dl-store-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.dl-store-label {
    font-size: 10px;
    opacity: 0.7;
    display: block;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dl-store-name {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-top: 1px;
    font-family: "DM Sans", sans-serif;
}

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

.dl-visual img {
    width: 280px;
    max-width: 100%;
}

@media (max-width: 640px) {
    .dl-visual img {
        width: 200px;
    }
}

/* ═══════════════════════════
     FAQ — white
  ═══════════════════════════ */
#faq-section {
    background: #ffffff;
    padding: 100px 0;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    position: relative;
    overflow: hidden;
}

.faq-overline {
    display: inline-block;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 16px;
}

.faq-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2.5px;
    line-height: 0.92;
    margin-bottom: 16px;
}

.faq-headline span {
    color: #016701;
}

.faq-sub {
    font-size: 16px;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: start;
    margin-top: 56px;
}

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

/* FAQ accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item-new {
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    position: relative;
}

.faq-item-new[open] {
    border-color: #016701;
    box-shadow: 0 8px 32px rgba(45, 90, 61, 0.1);
}

.faq-sum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    transition: background 0.15s;
    gap: 16px;
}

.faq-sum::-webkit-details-marker {
    display: none;
}

.faq-sum:hover {
    background: #faf9f7;
}

.faq-sum-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-num-badge {
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 10px;
    font-weight: 700;
    color: #016701;
    background: #e8f4ec;
    padding: 5px 10px;
    border-radius: 8px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.faq-item-new[open] .faq-num-badge {
    background: #016701;
    color: white;
}

.faq-q-text {
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #f5f4f2;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.2s,
        transform 0.3s;
    color: #888;
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.faq-item-new[open] .faq-toggle {
    background: #016701;
    color: white;
}

.faq-item-new[open] .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-ans {
    padding: 0 22px 20px;
    animation: fadeDown 0.25s ease;
}

.faq-ans p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 12px;
}

.faq-ans p:last-child {
    margin-bottom: 0;
}

.faq-check-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.faq-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.faq-check-ic {
    width: 18px;
    height: 18px;
    background: #e8f4ec;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-check-ic svg {
    width: 9px;
    height: 9px;
    color: #016701;
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 0;
}

.faq-mini-card {
    background: #faf9f7;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
}

.faq-mini-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.faq-mini-card-title svg {
    width: 13px;
    height: 13px;
    color: #016701;
}

.faq-mini-card p {
    font-size: 12px;
    color: #888;
}

.faq-topup-row {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.faq-topup {
    flex: 1;
    text-align: center;
    background: #faf9f7;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 14px 10px;
}

.faq-topup-val {
    font-family: "Clash Display", serif;
    font-size: 22px;
    font-weight: 700;
    color: #016701;
    letter-spacing: -1px;
}

.faq-topup-label {
    font-size: 11px;
    font-weight: 600;
    color: #0a0a0a;
    margin-top: 3px;
}

.faq-topup-sub {
    font-size: 10px;
    color: #aaa;
}

.faq-security-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.faq-sec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #faf9f7;
    border-radius: 10px;
}

.faq-sec-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
}

.faq-sec-icon svg {
    width: 14px;
    height: 14px;
    color: #016701;
}

.faq-sec-title {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}

.faq-sec-desc {
    font-size: 11px;
    color: #888;
}

/* FAQ right sidebar */
.faq-sidebar {
    background: #f5eee9;
    border: 1.5px solid rgba(45, 90, 61, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    position: sticky;
    top: 24px;
}

.faq-sidebar-icon {
    width: 56px;
    height: 56px;
    background: #016701;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.faq-sidebar-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.faq-sidebar-title {
    font-family: "Clash Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.8px;
    margin-bottom: 6px;
}

.faq-sidebar-sub {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 28px;
}

.faq-support-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.faq-support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.faq-support-item:hover {
    border-color: #016701;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.08);
}

.faq-support-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-support-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.faq-support-label {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}

.faq-support-sub {
    font-size: 11px;
    color: #aaa;
}

.faq-support-arrow {
    margin-left: auto;
    color: #ccc;
    width: 14px;
    height: 14px;
    transition:
        color 0.2s,
        transform 0.2s;
}

.faq-support-item:hover .faq-support-arrow {
    color: #016701;
    transform: translateX(2px);
}

.faq-help-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.faq-help-btn:hover {
    background: #0a0a0a;
    transform: scale(1.02);
}

/* ═══════════════════════════
     CTA — #f5eee9
  ═══════════════════════════ */
#main-cta {
    background: #f5eee9;
    padding: 100px 0;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: #016701;
    border-radius: 28px;
    padding: 64px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .cta-card {
        grid-template-columns: 1fr;
        padding: 48px 36px;
        gap: 40px;
    }
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(200, 230, 160, 0.12) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.cta-card::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.cta-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8e6a0;
    animation: dpulse 2s infinite;
}

.cta-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    color: white;
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 18px;
}

.cta-headline span {
    color: #c8e6a0;
}

.cta-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn-main {
    padding: 15px 34px;
    background: #c8e6a0;
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-main:hover {
    background: white;
    transform: scale(1.04);
}

.cta-btn-out {
    padding: 15px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-out:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.cta-stats {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cta-stat-val {
    font-family: "Clash Display", serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

.cta-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.cta-visual {
    position: relative;
}

.cta-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 400px;
}

@media (max-width: 640px) {
    .cta-img {
        height: 260px;
    }
}

.cta-float {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.cta-float.top-right {
    top: -16px;
    right: -16px;
}

.cta-float.bot-left {
    bottom: -16px;
    left: -16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-float-val {
    font-family: "Clash Display", serif;
    font-size: 24px;
    font-weight: 700;
    color: #016701;
    letter-spacing: -1px;
    line-height: 1;
}

.cta-float-label {
    font-size: 10px;
    color: #aaa;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 2px;
}

.cta-float-icon {
    width: 36px;
    height: 36px;
    background: #e8f4ec;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-float-icon svg {
    width: 16px;
    height: 16px;
    color: #016701;
}

/* ═══════════════════════════
     BRAND PARTNERS — white
  ═══════════════════════════ */
#partners {
    background: #ffffff;
    padding: 72px 0;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    overflow: hidden;
}

.partners-overline {
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
}

.partners-title {
    font-family: "Clash Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.8px;
    margin-top: 8px;
}

.logo-viewport {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
}

.logo-viewport::before,
.logo-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.logo-viewport::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-viewport::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll 28s linear infinite;
    padding: 8px 0;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    height: 48px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(1);
    transition:
        opacity 0.3s,
        filter 0.3s;
}

.logo-track img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ═══════════════════════════
     NEWS / AS SEEN IN — #f5eee9
  ═══════════════════════════ */
#news-section {
    background: #f5eee9;
    padding: 100px 0;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    position: relative;
    overflow: hidden;
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.news-overline {
    display: inline-block;
    font-family: "IBM Plex Sans Arabic", "Montserrat", sans-serif !important;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #016701;
    margin-bottom: 14px;
}

.news-headline {
    font-family: "Clash Display", serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2px;
    line-height: 0.95;
}

.news-headline span {
    color: #016701;
}

.news-sub {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.news-view-btn {
    padding: 12px 24px;
    background: #016701;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.news-view-btn:hover {
    background: #0a0a0a;
    transform: scale(1.04);
}

.news-view-btn svg {
    width: 13px;
    height: 13px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1000px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.news-card {
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 28px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s,
        border-color 0.2s;
    text-decoration: none;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 90, 61, 0.1);
    border-color: rgba(45, 90, 61, 0.2);
}

.news-card-logo {
    height: 44px;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(1);
    transition:
        opacity 0.25s,
        filter 0.25s;
    width: 100%;
}

.news-card:hover .news-card-logo {
    opacity: 1;
    filter: grayscale(0);
}

.news-divider {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right, #016701, rgba(45, 90, 61, 0.1));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.news-card:hover .news-divider {
    transform: scaleX(1);
}

.news-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: #016701;
    color: white;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    justify-content: center;
    transition: background 0.2s;
}

.news-card:hover .news-read-btn {
    background: #0a0a0a;
}

.news-read-btn svg {
    width: 12px;
    height: 12px;
}
