 /* Hero Section */
        .hero {
            padding: 120px 0 100px;
            background: #0a0a0a;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,107,157,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .dark-hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .dark-hero-content h1 {
           font-family: "Domine", serif;
            font-size: 54px;
            line-height: 1.2;
            margin-bottom: 30px;
            color: white;
            background: linear-gradient(135deg, #ffffff 0%, #e8e6e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .dark-hero-content p {
            font-size: 18px;
            color: #b8b6b1;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-top: 50px;
            justify-content: center;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 14px 28px;
            border: 1px solid #3d3d3d;
            border-radius: 6px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: #ff6b9d;
            background: rgba(255,107,157,0.1);
        }

        /* Why LifeTrade Section */
        .why-lifetrade {
            padding: 100px 0;
            background: #202020;
        }

        .section-headline {
            font-family: "Domine", serif;
            font-size: 42px;
            line-height: 1.3;
            margin-bottom: 25px;
            color: white;
            text-align: center;
        }
        .section-sub-headline {
             font-family: "Domine", serif;
            font-size: 36px;
            line-height: 1.3;
            margin-bottom: 25px;
            color: white;
            text-align: center;
        }
        .section-intro {
            font-size: 18px;
            color: #b8b6b1;
            line-height: 1.8;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 80px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .feature-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid #2d2d2d;
            border-radius: 16px;
            padding: 40px;
            transition: transform 0.3s, border-color 0.3s, background 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255,107,157,0.3);
            background: rgba(255,255,255,0.05);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa06b 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .feature-icon svg {
            width: 26px;
            height: 26px;
            stroke: white;
            fill: none;
        }

        .feature-card h3 {
            font-family: "Domine", serif;
            font-size: 22px;
            margin-bottom: 15px;
            color: white;
        }

        .feature-card p {
            font-size: 15px;
            color: #b8b6b1;
            line-height: 1.7;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            background: #202020;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .step-card {
            background: rgb(0 0 0 / 32%);
            border: 1px solid #2d2d2d;
            border-radius: 16px;
            padding: 45px;
            position: relative;
        }
        .step-card ul {
            margin: 20px 0px 20px 30px;

        }
        .step-card ul li {
            font-size: 15px;
            color: #b8b6b1;
            line-height: 1.8;
        }
        .step-number {
            position: absolute;
            top: -15px;
            left: 40px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa06b 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Domine", serif;
            font-size: 18px;
            font-weight: 700;
            color: white;
        }

        .step-card h3 {
            font-family: "Domine", serif;
            font-size: 24px;
            margin-bottom: 15px;
            color: white;
            margin-top: 10px;
        }

        .step-card p {
            font-size: 15px;
            color: #b8b6b1;
            line-height: 1.8;
        }

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

        .faq-container {
            max-width: 800px;
            margin: 60px auto 0;
        }

        .faq-item {
            border: 1px solid #2d2d2d;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            background: rgba(255,255,255,0.02);
        }

        .faq-question {
            width: 100%;
            padding: 20px 50px 20px 24px;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
            position: relative;
        }

        .faq-question:hover {
            background: rgba(255,255,255,0.05);
        }

        .faq-question::after {
            content: '+';
            font-size: 24px;
            font-weight: 400;
            color: #999;
            position: absolute;
            right: 24px;
            transition: transform 0.3s, color 0.3s;
        }

        .faq-question.active::after {
            content: "−";
            transform: rotate(180deg);
            color: #ff6b9d;
        }

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

        .faq-answer.active {
            max-height: 500px;
            padding: 0 24px 20px 24px;
        }

        .faq-answer p {
            font-size: 15px;
            color: #b8b6b1;
            line-height: 1.7;
            margin: 0;
        }
         .faq-answer ul
        {
            margin: 20px 0px;
        }
        .faq-answer ul li {
              font-size: 15px;
            color: #b8b6b1;
            line-height: 1.7;
            margin: 0;
        }
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: #0a0a0a;
            text-align: center;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 60px;
            background: rgba(255,255,255,0.03);
            border: 2px solid #2d2d2d;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,107,157,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-box h2 {
            font-family: "Domine", serif;
            font-size: 42px;
            color: white;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            font-size: 18px;
            color: #b8b6b1;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .btn-large {
               background: linear-gradient(90deg, #FFD93D, #FF6B6B);
                color: #fff;
                padding: 15px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            z-index: 1;
        }

        .btn-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255,107,157,0.5);
        }

       /* Grid Columns */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .dimension-card {
            background: #202020;
            border: 1px solid #1a1a1a;
            padding: 30px;
            border-radius: 8px;
            transition: border-color 0.3s;
        }
        .text-center {
            text-align: center;
        }
        .dimension-card:hover {
            border-color: #ff6b9d;
        }

        .dimension-card h3 {
            font-size: 24px;
            color: #fff;
            margin-bottom: 10px;
            font-weight: 600;
              font-family: "Domine", serif;
            letter-spacing: 0.5px;
        }

        .dimension-card p {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
            margin: 0;
        }
        .what-this {
             background: #000;
        }
        @media (max-width: 768px) {
            .dark-hero-content h1 {
                font-size: 40px;
            }

            .features-grid,
            .steps-grid,
            .footer-grid,  .grid-3 {
                grid-template-columns: 1fr;
            }

            .section-headline {
                font-size: 36px;
            }

            .hero-buttons {
                flex-direction: column;
            }
        }