/* Global Vars */
:root {
    --bg-color: #0d0d0d;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-teal: #00f2ea;
    --accent-pink: #ff0050;
    --gradient-main: linear-gradient(135deg, var(--accent-teal), var(--accent-pink));
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #050011;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    /* Background enhancement */
    background-image:
        radial-gradient(circle at 50% 0%, rgba(80, 0, 80, 0.4) 0%, transparent 70%),
        radial-gradient(circle at 10% 20%, rgba(50, 0, 80, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(100, 50, 0, 0.1) 0%, transparent 40%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #fff;
    /* Ensure white for all h1s or specifically override hero h1 later */
}

/* Specific Hero Title Background */
.hero-text h1 {
    display: block;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    color: #fff;
    margin-bottom: 1.5rem;
    backdrop-filter: none;
    text-align: left;
    font-size: 1.8rem;
    /* Reduced significantly from 3rem */
    line-height: 1.2;
    font-weight: 500;
    /* Regular weight for the main part */
}

.highlight-commission {
    display: block;
    /* Force new line */
    font-size: 2.8rem;
    /* Prominent size */
    font-weight: 800;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    /* Gold/Orange Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Utility classes for responsive visibility */
.mobile-cta-section {
    display: none;
}

.desktop-only-cta {
    display: block;
}

@media (max-width: 768px) {
    .mobile-cta-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-top: 2rem;
        width: 100%;
    }

    .mobile-cta-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #fff;
    }

    .mobile-cta-text p {
        font-size: 1rem;
        color: #a1a1aa;
    }

    .desktop-only-cta {
        display: none !important;
    }

    /* Hide the join-form section container on mobile as content is moved */
    #join-form {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(90deg, #FF8C00, #FF4500);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.logo-img {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    object-fit: cover;
    filter: contrast(1.1) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background 0.3s, padding 0.3s;
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    filter: drop-shadow(0 0 5px var(--accent-teal));
}

.logo span {
    font-weight: 300;
}

/* Top Banner */
.top-banner {
    background-color: #cc0000;
    /* Strong red */
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 2000;
    /* Ensure it covers the fixed header */
    width: 100%;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    padding: 6rem 0 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 80, 0.1);
    color: var(--accent-pink);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 0, 80, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Visual & Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    border: 8px solid #2a2a2a;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111, #000);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    position: relative;
}

/* Mockup UI Elements */
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-teal);
}

.chart-mini {
    height: 40px;
    background: linear-gradient(90deg, transparent 40%, rgba(0, 242, 234, 0.2) 100%);
    margin-top: 1rem;
    border-bottom: 2px solid var(--accent-teal);
    position: relative;
}

.chart-mini::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
}

.sales-notification {
    position: absolute;
    bottom: 3rem;
    left: 1rem;
    right: 1rem;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--glass-border);
    animation: slideUpFade 3s infinite;
    max-width: fit-content;
    white-space: nowrap;
}

@keyframes slideUpFade {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

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

.icon-check {
    width: 30px;
    height: 30px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8rem;
}

.sales-notification .text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.sales-notification strong {
    color: #fff;
}

.sales-notification span {
    color: #aaa;
    font-size: 0.75rem;
}

/* New Hero Elements Styles */

.hero-actions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hero-cta {
    background: linear-gradient(90deg, #FF6B00 0%, #FF2E00 100%);
    text-transform: uppercase;
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
    border-radius: 50px;
    color: #fff;
    width: auto;
    text-align: center;
}

.hero-cta:hover {
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
    transform: scale(1.02);
}

.cta-subtitle {
    font-size: 0.85rem;
    color: #aaa;
    margin-left: 0.5rem;
    font-weight: 500;
}

/* Features */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.f-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2a1b3d, #1a0f2e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eebb00;
    font-size: 1.2rem;
}

.f-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Visual Container & Badges */
.visual-container {
    position: relative;
    display: inline-block;
    z-index: 5;
}

.sales-notification {
    position: absolute;
    background: #fff;
    color: #000;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
    min-width: 180px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sn-icon {
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}



.sn-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    text-align: left;
}

.sn-label {
    font-weight: 700;
    /* Bolder */
    font-size: 0.7rem;
    color: #00e600;
    /* Bright Green */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sn-price {
    font-weight: 800;
    font-size: 0.95rem;
    color: #000;
    /* Contrast against white bg */
}

/* Adjusted Positions for larger image */
.sn-top-right {
    top: 40px;
    bottom: auto;
    right: -60px;
    left: auto;
    animation: float 4s ease-in-out infinite;
}

.sn-bottom-right {
    bottom: 80px;
    top: auto;
    right: -50px;
    left: auto;
    animation: float 5s ease-in-out infinite 1s;
}

.sn-mid-left {
    top: 55%;
    bottom: auto;
    left: -40px;
    right: auto;
    /* Reduced from -60px */
    animation: float 4.5s ease-in-out infinite 0.5s;
    z-index: 12;
}

.sn-top-left {
    top: 35%;
    bottom: auto;
    left: 10px;
    right: auto;
    /* Moved inward to overlap image instead of sticking out */
    animation: float 6s ease-in-out infinite 2s;
    z-index: 12;
}

.badge-gold {
    position: absolute;
    bottom: 0px;
    /* Lowered */
    left: -40px;
    /* Moved further left */
    width: 110px;
    /* Slightly larger */
    height: 110px;
    background: radial-gradient(circle, #fcde68, #aa771c);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 11;
    color: #332200;
    transform: rotate(-10deg);
    text-align: center;
}

.bg-title {
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1;
}

.bg-sub {
    font-weight: 700;
    font-size: 0.7rem;
}

.stars {
    font-size: 0.5rem;
    margin-top: 4px;
    color: #332200;
}

.badge-commission {
    position: absolute;
    right: -60px;
    background: #111;
    border: 2px solid #ffd700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    transform: rotate(5deg);
    z-index: 9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.badge-commission strong {
    color: #ffd700;
    font-size: 1.1rem;
    margin-left: 5px;
}

/* Mobile Notification */
.sn-mobile {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    min-width: 160px;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
    z-index: 10;
}

.sn-mobile-2 {
    left: 10%;
    transform: none;
    top: 20px;
    bottom: auto;
    animation: float 5s ease-in-out infinite;
    z-index: 9;
    scale: 0.9;
}

.sn-mobile-3 {
    left: 70%;
    right: auto;
    margin-left: -70px;
    width: fit-content;
    transform: none;
    top: auto;
    bottom: 40px;
    animation: float 4s ease-in-out infinite 1s;
    z-index: 9;
    scale: 0.95;
}

.hero-product-mobile {
    position: relative;
    /* Ensure it has space for the absolute notification */
    padding-bottom: 20px;
}

/* Sections General */
.section {
    padding: 5rem 0;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Benefits */
.benefits .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.benefits .card:hover .icon-box {
    background: var(--accent-pink);
    color: #fff;
    transform: scale(1.1);
}

/* Scrolling Banner */
.scrolling-banner {
    background: var(--accent-teal);
    color: #000;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: rotate(-2deg);
    margin: 3rem 0;
    width: 105%;
    left: -2.5%;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.banner-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.banner-content span {
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0 1rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    gap: 2rem;
    align-items: flex-start;
    transition: 0.3s;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-main);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Steps Mobile Optimization (~430px) */
@media (max-width: 450px) {
    .steps-container {
        gap: 1.5rem;
        /* Standardized spacing */
        width: 100%;
        padding: 0;
    }

    .step-item {
        flex-direction: column;
        /* Stack number and content */
        gap: 1rem;
        padding: 1.5rem;
        /* Increased internal padding */
        width: 100%;
        /* Full width */
        margin: 0;
        align-items: flex-start;
        text-align: left;
    }

    .step-number {
        font-size: 3rem;
        /* Slightly smaller for balance */
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.1);
        /* Better visibility */
    }

    .step-content {
        width: 100%;
    }

    .step-content h3 {
        font-size: 1.4rem;
        /* Highlighted title */
        color: #fff;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .step-content p {
        font-size: 1rem;
        line-height: 1.6;
        /* Comfortable reading */
        margin-bottom: 0;
    }

    /* Hero Mobile Optimization (~430px) */
    .hero {
        padding-top: 2rem !important;
        /* Reduced from default to pull content up */
        min-height: auto;
        /* Allow content to dictate height */
    }

    .badge {
        margin-top: 1rem;
        /* Slight top margin just in case */
        margin-bottom: 1rem;
    }

    .hero-text h1 {
        display: inline-block;
        /* Wraps background around text */
        background: linear-gradient(135deg, rgba(18, 14, 26, 0.9), rgba(36, 22, 45, 0.9));
        border: 1px solid #8A2BE2;
        border-radius: 20px;
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        color: #fff;
        margin-bottom: 2rem;
        backdrop-filter: blur(10px);
        /* Optional: adds to the glass feel */
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 90%;
        margin: 0 auto 1.5rem auto;
        /* Centered with bottom clearance */
        color: #ccc;
        /* Ensure good contrast */
    }
}

/* Form Section */
.form-section {
    background: radial-gradient(circle at center, rgba(255, 0, 80, 0.1) 0%, transparent 60%);
}

.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s;
}

.hero-product-mobile {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.hero-visual-desktop {
    display: none;
}

@media (min-width: 769px) {
    .hero-product-mobile {
        display: none !important;
    }

    .hero-visual-desktop {
        display: flex;
        justify-content: center;
        align-items: center;
        animation: float 6s ease-in-out infinite;
    }

    .hero-product-img {
        max-height: 680px;
        /* Increased further */
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
    }
}

/* Specific Hero adjustment for larger screens to reduce side whitespace */
@media (min-width: 1024px) {
    .hero .container {
        max-width: 1400px;
        /* Increase width to occupy more horizontal space */
        padding: 0 4rem;
        /* Balanced side padding */
    }

    .hero-content {
        gap: 2rem;
        /* Reduce gap to keep text and image visually connected */
        grid-template-columns: 1.1fr 0.9fr;
        /* Slight adjustment for balance */
    }
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: #111;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-header {
    margin-bottom: 2rem;
}

.affiliate-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #ddd;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.icon-success {
    font-size: 4rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    background: #050505;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-teal);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gradient-main);
    transform: translateY(-3px);
}

.copyright {
    color: #555;
    font-size: 0.8rem;
    margin-top: 2rem;
}

/* Animations Logic classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

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

.delay-300 {
    transition-delay: 0.3s;
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
        /* Reduced for mobile */
    }

    .highlight-commission {
        font-size: 2rem;
        /* Prominent on mobile */
    }

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

    .hero-text p {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero {
        padding-top: 4rem;
        min-height: auto;
    }

    .hero-actions-wrapper {
        align-items: center;
        width: 100%;
    }

    .hero-cta {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

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

    .form-wrapper {
        padding: 1.5rem;
    }

    .header-content {
        padding: 0 1rem;
    }
}

/* Benefits Card Layout (Global - Desktop & Mobile) */
.benefits .card {
    display: grid;
    grid-template-areas:
        "icon title"
        "text text";
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    text-align: left;
    padding: 2rem;
    /* Restore slightly larger padding for desktop, mobile query can override if needed */
    align-items: center;
}

.benefits .icon-box {
    grid-area: icon;
    width: 60px;
    /* Restore desktop size */
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.benefits .card h3 {
    grid-area: title;
    margin-bottom: 0;
    font-size: 1.5rem;
    /* Restore desktop size */
    text-align: left;
}

.benefits .card p {
    grid-area: text;
    text-align: left;
    margin-bottom: 0;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
}

@media (max-width: 768px) {
    .benefits .card {
        padding: 1.5rem;
    }

    .benefits .icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .benefits .card h3 {
        font-size: 1.2rem;
    }

    .benefits .card p {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
}