    /* Sanal Numara Hero Section Styles */

    :root {
        --hero-bg-start: #f8faff;
        --hero-bg-end: #ffffff;
        --accent-color: #3a67ff;
        --accent-dark: #254eda;
        --text-primary: #111827;
        --text-secondary: #4b5563;
        --success-color: #10b981;
        --card-bg: rgba(255, 255, 255, 0.9);
        --card-border: rgba(255, 255, 255, 0.6);
        --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --shadow-glow: 0 0 20px rgba(58, 103, 255, 0.15);
    }

    .sanal-numara-hero-section {
        position: relative;
        padding: 40px 0 100px;
        background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    /* Background Elements */
    .sanal-numara-hero-section::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(58, 103, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .sanal-numara-hero-section::after {
        content: '';
        position: absolute;
        bottom: -10%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* Left Content */
    .hero-content {
        max-width: 600px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(58, 103, 255, 0.1);
        color: var(--accent-color);
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .hero-content h1 {
        font-size: 56px;
        line-height: 1.1;
        font-weight: 800;
        color: var(--text-primary);
        margin: 0 0 24px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: 32px;
    }

    .hero-features {
        list-style: none;
        padding: 0;
        margin: 0 0 40px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }

    .hero-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        color: var(--text-primary);
        font-weight: 500;
    }

    .check-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background: #d1fae5;
        color: var(--success-color);
        border-radius: 50%;
        font-size: 12px;
        flex-shrink: 0;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        margin-bottom: 48px;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: var(--accent-color);
        color: white;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px -5px rgba(58, 103, 255, 0.4);
    }

    .btn-primary:hover {
        background: var(--accent-dark);
        transform: translateY(-2px);
        box-shadow: 0 15px 25px -5px rgba(58, 103, 255, 0.5);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: white;
        color: var(--text-primary);
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        border: 1px solid #e5e7eb;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background: #f9fafb;
        border-color: #d1d5db;
        transform: translateY(-2px);
    }

    /* Review Cards Styling */
    .hero-reviews {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-top: 40px;
    }

    .review-card {
        background: white;
        padding: 16px 20px;
        border-radius: 16px;
        border: 1px solid #e5e7eb;
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-width: 180px;
    }

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

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .review-source {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .star-icon {
        color: #00b67a;
        /* Trustpilot Green */
    }

    .google-icon {
        color: #4285f4;
        /* Google Blue */
    }

    .source-name {
        font-weight: 700;
        font-size: 14px;
        color: var(--text-primary);
    }

    .review-score {
        font-weight: 800;
        font-size: 16px;
        color: var(--text-primary);
    }

    .review-stars {
        display: flex;
        gap: 2px;
        color: #fbbf24;
        /* Amber-400 */
        font-size: 12px;
    }

    .review-count {
        font-size: 12px;
        color: var(--text-secondary);
        font-weight: 500;
    }

    /* Right Content - Visuals */
    .hero-visual {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .orbit-system {
        position: relative;
        width: 600px;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Orbit Rings - Enlarged */
    .orbit-ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(58, 103, 255, 0.1);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ring-1 {
        width: 340px;
        height: 340px;
        animation: spin 25s linear infinite;
    }

    .ring-2 {
        width: 500px;
        height: 500px;
        animation: spin-reverse 35s linear infinite;
    }

    .ring-3 {
        width: 680px;
        height: 680px;
        border-style: dashed;
        opacity: 0.5;
        animation: spin 45s linear infinite;
    }

    @keyframes spin {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    @keyframes spin-reverse {
        from {
            transform: translate(-50%, -50%) rotate(360deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(0deg);
        }
    }

    /* Orbit Items (Flags) */
    .orbit-item {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
    }

    .country-card {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        background: white;
        border-radius: 50px;
        box-shadow: var(--shadow-lg);
        white-space: nowrap;
        transform: translate(-50%, -50%);
        animation: float 3s ease-in-out infinite;
        border: 1px solid rgba(255, 255, 255, 0.8);
        z-index: 5;
    }

    /*
    Fixing overlaps by distributing them better on rings and adjusting speeds.
    Item 1 & 4 on Ring 1 (Small)
    Item 2 & 3 on Ring 2 (Medium)
    Item 5 on Ring 3 (Large)
    */

    /* Ring 1 Items (Radius ~170px) */
    .item-1 {
        animation: orbit-ring-1 25s linear infinite;
    }

    .item-4 {
        animation: orbit-ring-1 25s linear infinite;
        animation-delay: -12.5s;
    }

    /* Opposite side */

    /* Ring 2 Items (Radius ~250px) */
    .item-2 {
        animation: orbit-ring-2 35s linear infinite reverse;
    }

    .item-3 {
        animation: orbit-ring-2 35s linear infinite reverse;
        animation-delay: -17.5s;
    }

    /* Opposite side */

    /* Ring 3 Items (Radius ~340px) */
    .item-5 {
        animation: orbit-ring-3 45s linear infinite;
    }

    @keyframes orbit-ring-1 {
        0% {
            transform: rotate(0deg) translateX(170px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(170px) rotate(-360deg);
        }
    }

    @keyframes orbit-ring-2 {
        0% {
            transform: rotate(0deg) translateX(250px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(250px) rotate(-360deg);
        }
    }

    @keyframes orbit-ring-3 {
        0% {
            transform: rotate(0deg) translateX(340px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(340px) rotate(-360deg);
        }
    }


    .country-card .flag {
        font-size: 20px;
    }

    .country-card .code {
        font-weight: 700;
        color: var(--text-primary);
    }

    .country-card .country {
        font-size: 12px;
        color: var(--text-secondary);
        text-transform: uppercase;
        font-weight: 600;
    }

    /* Phone Mockup */
    .phone-mockup {
        position: relative;
        width: 280px;
        height: 560px;
        background: #111827;
        border-radius: 45px;
        padding: 12px;
        box-shadow:
            0 0 0 2px #374151,
            0 25px 50px -12px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(58, 103, 255, 0.2);
        z-index: 10;
        transform: rotate(0deg);
        /* Straightened */
        transition: transform 0.3s ease;
    }

    .phone-mockup:hover {
        transform: translateY(-10px);
    }

    .phone-frame {
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 32px;
        overflow: hidden;
        position: relative;
    }

    .phone-notch {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 24px;
        background: #111827;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        z-index: 20;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
        background: #f3f4f6;
        display: flex;
        flex-direction: column;
        font-family: 'Inter', sans-serif;
    }

    /* Fake App UI */
    .app-header {
        background: white;
        padding: 35px 16px 16px;
        border-bottom: 1px solid #e5e7eb;
    }

    .app-status-bar {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #111827;
    }

    .status-icons {
        display: flex;
        gap: 6px;
    }

    .app-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .app-nav span {
        font-weight: 700;
        font-size: 16px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        background: #e5e7eb;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6b7280;
        font-size: 14px;
    }

    .app-content {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        position: relative;
    }

    .balance-card {
        background: linear-gradient(135deg, #3a67ff 0%, #254eda 100%);
        color: white;
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 24px;
        box-shadow: 0 10px 20px -5px rgba(58, 103, 255, 0.3);
    }

    .balance-card .label {
        display: block;
        font-size: 12px;
        opacity: 0.8;
        margin-bottom: 4px;
    }

    .balance-card .amount {
        font-size: 28px;
        font-weight: 700;
    }

    .active-numbers-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .active-numbers-title span {
        font-weight: 700;
        font-size: 14px;
    }

    .active-numbers-title a {
        font-size: 12px;
        color: var(--accent-color);
        text-decoration: none;
    }

    .number-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .number-item {
        background: white;
        padding: 12px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        border: 1px solid #f3f4f6;
    }

    .number-icon {
        width: 40px;
        height: 40px;
        background: #f9fafb;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .number-info {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .num-country {
        font-size: 10px;
        color: #6b7280;
        font-weight: 600;
        text-transform: uppercase;
    }

    .num-value {
        font-size: 13px;
        font-weight: 600;
        color: #111827;
    }

    .status-badge {
        font-size: 10px;
        padding: 4px 8px;
        border-radius: 20px;
        font-weight: 600;
    }

    .status-badge.active {
        background: #d1fae5;
        color: #059669;
    }

    .loader-dots span {
        display: inline-block;
        width: 4px;
        height: 4px;
        background: #9ca3af;
        border-radius: 50%;
        margin: 0 1px;
        animation: bounce 1.4s infinite ease-in-out both;
    }

    .loader-dots span:nth-child(1) {
        animation-delay: -0.32s;
    }

    .loader-dots span:nth-child(2) {
        animation-delay: -0.16s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: scale(0);
        }

        40% {
            transform: scale(1);
        }
    }

    .fab-button {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        background: var(--accent-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(58, 103, 255, 0.4);
        cursor: pointer;
        transition: transform 0.2s;
    }

    .fab-button:hover {
        transform: scale(1.1);
    }

    .app-bottom-nav {
        background: white;
        padding: 16px;
        display: flex;
        justify-content: space-around;
        border-top: 1px solid #e5e7eb;
    }

    .nav-item {
        color: #9ca3af;
        font-size: 20px;
        cursor: pointer;
    }

    .nav-item.active {
        color: var(--accent-color);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
            padding: 0 20px;
            width: 100%;
        }

        .hero-content {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-visual {
            order: -1;
            height: 450px;
            margin-bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            overflow: hidden;
            /* Prevent overflow from orbit */
        }

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

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

        .hero-reviews {
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .orbit-system {
            transform: scale(0.7);
        }
    }

    @media (max-width: 640px) {
        .hero-content h1 {
            font-size: 32px;
            /* Smaller font for mobile */
            word-wrap: break-word;
        }

        .hero-description {
            font-size: 16px;
        }

        .hero-actions {
            flex-direction: column;
            width: 100%;
            gap: 12px;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .orbit-system {
            transform: scale(0.5);
            /* Smaller scale for mobile */
        }

        .hero-visual {
            height: 350px;
            /* Reduced height for scaled orbit */
        }
    }

    /* How It Works Section */
    .how-it-works-section {
        padding: 100px 0;
        background: white;
        position: relative;
        overflow: hidden;
    }

    .steps-container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        margin-top: 60px;
        position: relative;
    }

    .step-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .step-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .step-illustration {
        position: relative;
        width: 140px;
        height: 140px;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-bg {
        width: 100px;
        height: 100px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: var(--accent-color);
        box-shadow: 0 15px 35px rgba(58, 103, 255, 0.15);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        z-index: 2;
        border: 1px solid #f0f4ff;
        position: relative;
    }

    .icon-bg::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 50%;
        border: 1px dashed rgba(58, 103, 255, 0.3);
        animation: spin-slow 10s linear infinite;
    }

    @keyframes spin-slow {
        to {
            transform: rotate(360deg);
        }
    }

    .step-item:hover .icon-bg {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(58, 103, 255, 0.25);
        color: var(--accent-dark);
    }

    .step-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        border: 4px solid white;
        z-index: 3;
        box-shadow: 0 5px 15px rgba(58, 103, 255, 0.3);
    }

    .step-item h3 {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 12px;
    }

    .step-item p {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Stylish Arrows */
    .step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 60px;
        position: relative;
        z-index: 1;
    }

    .arrow-container {
        width: 40px;
        height: 40px;
        background: #f8faff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        font-size: 14px;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .arrow-container::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 1px solid var(--accent-color);
        opacity: 0.3;
        animation: ripple 1.5s infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    .desktop-arrow,
    .mobile-arrow {
        display: none;
        /* Default hidden */
    }

    /* Desktop View */
    @media (min-width: 993px) {
        .desktop-arrow {
            display: block;
            animation: slide-right 1.5s ease-in-out infinite;
        }
    }

    @keyframes slide-right {

        0%,
        100% {
            transform: translateX(-2px);
        }

        50% {
            transform: translateX(2px);
        }
    }

    /* Staggered Animation Delays */
    .step-1 {
        transition-delay: 0s;
    }

    .step-2 {
        transition-delay: 0.2s;
    }

    .step-3 {
        transition-delay: 0.4s;
    }

    /* Responsive How It Works */
    @media (max-width: 992px) {
        .steps-container {
            flex-direction: column;
            align-items: center;
            gap: 60px;
        }

        .step-item {
            width: 100%;
            max-width: 500px;
            transform: translateY(30px);
        }

        .step-arrow {
            padding: 0;
            height: 40px;
        }

        .step-arrow {
            transform: none;
        }

        .desktop-arrow {
            display: none;
        }

        .mobile-arrow {
            display: block;
            animation: slide-down 1.5s ease-in-out infinite;
        }
    }

    @keyframes slide-down {

        0%,
        100% {
            transform: translateY(-2px);
        }

        50% {
            transform: translateY(2px);
        }
    }

    .pricing-container {
        background: white;
        border-radius: 24px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        overflow: hidden;
        border: 1px solid #e5e7eb;
        max-width: 1000px;
        margin: 0 auto;
    }

    .pricing-list-header {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        padding: 20px 32px;
        background: #f9fafb;
        border-bottom: 1px solid #e5e7eb;
        font-weight: 600;
        color: var(--text-secondary);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .pricing-list {
        display: flex;
        flex-direction: column;
    }

    .pricing-item {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        align-items: center;
        padding: 20px 32px;
        border-bottom: 1px solid #f3f4f6;
        transition: background-color 0.2s ease;
    }

    .pricing-item:last-child {
        border-bottom: none;
    }

    .pricing-item:hover {
        background-color: #f8faff;
    }

    .country-info {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .country-info .flag {
        font-size: 24px;
    }

    .country-info .name {
        font-weight: 600;
        color: var(--text-primary);
        font-size: 16px;
    }

    .country-code {
        color: var(--text-secondary);
        font-weight: 500;
        font-family: monospace;
        font-size: 15px;
    }

    .price {
        font-weight: 700;
        color: var(--text-primary);
        font-size: 16px;
    }

    .action {
        display: flex;
        justify-content: flex-end;
    }

    .btn-buy {
        display: inline-block;
        padding: 8px 24px;
        background: var(--accent-color);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    .btn-buy:hover {
        background: var(--accent-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(58, 103, 255, 0.2);
    }

    /* Responsive Pricing */
    @media (max-width: 768px) {
        .pricing-list-header {
            display: none;
        }

        .pricing-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            padding: 24px;
            position: relative;
        }

        .country-info {
            width: 100%;
        }

        .country-code::before {
            content: 'Alan Kodu: ';
            color: var(--text-secondary);
            font-weight: 400;
            font-family: 'Inter', sans-serif;
        }

        .price::before {
            content: 'Fiyat: ';
            color: var(--text-secondary);
            font-weight: 400;
        }

        .action {
            width: 100%;
            justify-content: flex-start;
            margin-top: 8px;
        }

        .btn-buy {
            width: 100%;
            text-align: center;
            padding: 12px;
        }

        /* Absolute positioning for price to save space on mobile if desired, 
        but stacked is safer for long names. Let's keep stacked for clarity. */
    }

    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 80px;
    }

    .section-header h2 {
        font-size: 42px;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .section-header p {
        font-size: 18px;
        color: var(--text-secondary);
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 400px 1fr;
        gap: 40px;
        align-items: center;
        position: relative;
    }

    .features-column {
        display: flex;
        flex-direction: column;
        gap: 40px;
        z-index: 2;
    }

    /* Feature Cards */
    .feature-card {
        background: white;
        padding: 24px;
        border-radius: 20px;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
        border: 1px solid #f3f4f6;
        display: flex;
        gap: 20px;
        transition: all 0.3s ease;
        position: relative;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -10px rgba(58, 103, 255, 0.15);
        border-color: rgba(58, 103, 255, 0.3);
    }

    .feature-number {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 18px;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(58, 103, 255, 0.3);
    }

    .feature-content h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0 0 8px;
    }

    .feature-content p {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.5;
        margin: 0;
    }

    /* Central Illustration */
    .center-col {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .central-illustration {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .connection-hub {
        position: relative;
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .hub-core {
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: var(--accent-color);
        box-shadow: 0 0 30px rgba(58, 103, 255, 0.2);
        z-index: 5;
        position: relative;
    }

    .hub-ring {
        position: absolute;
        border-radius: 50%;
        border: 2px solid var(--accent-color);
        opacity: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ring-inner {
        width: 100%;
        height: 100%;
        animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

    .ring-outer {
        width: 100%;
        height: 100%;
        animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        animation-delay: 1s;
    }

    @keyframes pulse-ring {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.5;
            border-width: 4px;
        }

        100% {
            transform: translate(-50%, -50%) scale(2.5);
            opacity: 0;
            border-width: 0px;
        }
    }

    /* Connector Lines */
    .connector-line {
        position: absolute;
        background: linear-gradient(90deg, var(--accent-color), transparent);
        height: 2px;
        width: 100px;
        top: 50%;
        left: 50%;
        transform-origin: 0 50%;
        z-index: 1;
        opacity: 0.3;
    }

    /* Positioning lines to point towards cards roughly */
    .line-1 {
        transform: rotate(200deg) translateX(40px);
        width: 140px;
    }

    /* Top Left */
    .line-2 {
        transform: rotate(180deg) translateX(40px);
        width: 160px;
    }

    /* Mid Left */
    .line-3 {
        transform: rotate(160deg) translateX(40px);
        width: 140px;
    }

    /* Bot Left */
    .line-4 {
        transform: rotate(-20deg) translateX(40px);
        width: 140px;
    }

    /* Top Right */
    .line-5 {
        transform: rotate(0deg) translateX(40px);
        width: 160px;
    }

    /* Mid Right */
    .line-6 {
        transform: rotate(20deg) translateX(40px);
        width: 140px;
    }

    /* Bot Right */

    /* CTA */
    .features-cta {
        text-align: center;
        margin-top: 60px;
    }

    .btn-large {
        padding: 18px 48px;
        font-size: 18px;
        border-radius: 50px;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .features-grid {
            grid-template-columns: 1fr 300px 1fr;
            gap: 20px;
        }
    }

    @media (max-width: 992px) {
        .features-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .center-col {
            order: -1;
            /* Move illustration to top */
            height: 200px;
        }

        .central-illustration {
            height: 200px;
        }

        .connector-line {
            display: none;
            /* Hide lines on mobile */
        }

        .features-column {
            gap: 20px;
        }
    }

    /* FAQ Section */
    .faq-section {
        padding: 100px 0;
        background: #f9fafb;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .faq-item {
        background: white;
        border-radius: 16px;
        border: 1px solid #e5e7eb;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--accent-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
        padding: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        background: white;
        transition: background-color 0.2s;
    }

    .faq-question h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
        line-height: 1.4;
    }

    .faq-question i {
        color: var(--text-secondary);
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question {
        background: #f8faff;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
        color: var(--accent-color);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 24px;
    }

    .faq-answer p {
        margin: 0;
        color: var(--text-secondary);
        line-height: 1.6;
        font-size: 15px;
    }