/* =====================================================
   RyCart Partners Landing Page - Stylesheet
   Author: Rhyno Solution
   Version: 1.0
   ===================================================== */

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

:root {
    --primary-blue: #0d4f7a;
    --light-blue: #1a7fb8;
    --cyan: #00d4ff;
    --orange: #ff6b35;
    --silver: #e8ecf1;
    --white: #ffffff;
    --dark: #1a2332;
    --gray: #7f8c8d;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* =====================
   BACKGROUND EFFECTS
   ===================== */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--cyan);
    opacity: 0.1;
    animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* =====================
   LANGUAGE SELECTOR
   ===================== */
.lang-selector {
    position: fixed;
    top: 90px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--cyan);
}

.lang-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s;
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
    background: var(--cyan);
}

/* =====================
   HEADER
   ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: -1px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* DESKTOP NAVIGATION */
.nav {
    display: flex;
    gap: 0;
    align-items: center;
    background: var(--silver);
    border-radius: 50px;
    padding: 8px;
}

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s;
}

.nav a:hover {
    background: rgba(26, 127, 184, 0.1);
    color: var(--primary-blue);
}

.nav a.btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: white;
    margin-left: 10px;
    box-shadow: 0 5px 20px rgba(26, 127, 184, 0.3);
}

.nav a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 127, 184, 0.5);
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    background: var(--cyan);
    border: none;
    font-size: 28px;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
}

/* MOBILE NAVIGATION */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 999;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.3s;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--cyan);
    border: none;
    font-size: 32px;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
    background: var(--orange);
}

.mobile-nav a {
    display: block;
    padding: 18px 20px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 15px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    background: var(--silver);
    color: var(--primary-blue);
    transform: translateX(10px);
}

.mobile-nav a.btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: white;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 50px 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

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

.geometric-shape {
    position: absolute;
    border: 3px solid rgba(0, 212, 255, 0.6);
    animation: floatShape 12s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    border-radius: 20px;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 12%;
    border-radius: 50%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 55%;
    left: 3%;
    transform: rotate(45deg);
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg);
        opacity: 1;
    }
}

.pulse-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.7;
    animation: pulseLine 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px var(--cyan);
}

.line-1 {
    width: 400px;
    top: 25%;
    right: 0;
    animation-delay: 0s;
}

.line-2 {
    width: 300px;
    bottom: 35%;
    left: 0;
    animation-delay: 1.2s;
}

@keyframes pulseLine {
    0%, 100% { 
        transform: scaleX(0);
        opacity: 0;
    }
    50% { 
        transform: scaleX(1);
        opacity: 1;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

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

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.4));
    display: block;
}

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

.robot-placeholder {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 212, 255, 0.05));
    border-radius: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* =====================
   STATS SECTION
   ===================== */
.stats {
    background: white;
    padding: 80px 50px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--cyan);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 79, 122, 0.3),
                0 0 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================
   SECTIONS
   ===================== */
.section {
    padding: 120px 50px;
    position: relative;
    z-index: 1;
}

.section-white {
    background: white;
}

.section-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
}

.section-title {
    font-size: 52px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    margin-bottom: 80px;
    opacity: 0.8;
}

/* =====================
   HOW IT WORKS
   ===================== */
.steps-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.step-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.section-blue .step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 79, 122, 0.4);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange), #ff8c61);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.section-blue .step-title {
    color: white;
}

.step-desc {
    line-height: 1.7;
    opacity: 0.8;
}

/* =====================
   COMMISSIONS
   ===================== */
.commission-cards {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.commission-card {
    padding: 40px;
    border-radius: 25px;
    border: 3px solid;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.commission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.card-blue {
    background: linear-gradient(135deg, #e8f4f8, white);
    border-color: var(--cyan);
}

.card-orange {
    background: linear-gradient(135deg, #fff4e6, white);
    border-color: var(--orange);
}

.card-cyan {
    background: linear-gradient(135deg, #f0f9ff, white);
    border-color: var(--cyan);
}

.commission-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.commission-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-blue .commission-title {
    color: var(--primary-blue);
}

.card-orange .commission-title {
    color: var(--orange);
}

.card-cyan .commission-title {
    color: var(--primary-blue);
}

.commission-amount {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.card-blue .commission-amount {
    color: var(--primary-blue);
}

.card-orange .commission-amount {
    color: var(--orange);
}

.card-cyan .commission-amount {
    color: var(--primary-blue);
}

.commission-desc {
    color: var(--gray);
    line-height: 1.6;
}

/* TABLE */
.table-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--cyan);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
}

.table th {
    padding: 25px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-align: left;
}

.table td {
    padding: 25px;
    border-bottom: 1px solid var(--silver);
}

.table tbody tr:hover {
    background: var(--silver);
}

.amount {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-blue);
}

/* CASE STUDY */
.case-study {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.case-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.case-network {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.case-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
}

.network-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

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

.network-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.network-label {
    font-size: 14px;
    font-weight: 600;
}

.network-line {
    height: 30px;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.network-total {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.total-label {
    font-size: 20px;
    font-weight: 600;
}

.case-earnings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.earning-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.earning-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 10px;
}

.earning-label {
    font-size: 15px;
    opacity: 0.9;
}

.case-total {
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    text-align: center;
}

.total-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.total-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 10px;
}

.total-period {
    font-size: 32px;
}

.total-yearly {
    font-size: 22px;
    opacity: 0.95;
}

/* DASHBOARD INFO */
.dashboard-info {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: white;
    border-radius: 25px;
    border: 3px solid var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dashboard-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 26px;
    text-align: center;
}

.dashboard-subtitle {
    line-height: 1.8;
    color: var(--dark);
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.highlight-cyan {
    color: var(--cyan);
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.feature-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray);
}

/* =====================
   FORM
   ===================== */
.form-section {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--cyan);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--silver);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 50px 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    /* Styles for footer columns */
}

.footer-title {
    color: var(--cyan);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

    .hero-content h1 {
        font-size: 48px;
    }

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

    .geometric-shape,
    .pulse-line {
        display: none;
    }
}

@media (max-width: 768px) {
    /* HIDE DESKTOP NAV, SHOW HAMBURGER */
    .nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-container {
        padding: 15px 20px;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-tagline {
        font-size: 9px;
    }

    .lang-selector {
        top: 80px;
        right: 15px;
        padding: 8px 12px;
    }

    .lang-btn {
        font-size: 18px;
        padding: 4px 8px;
    }

    .section {
        padding: 80px 20px;
    }

    .hero {
        padding: 140px 20px 80px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

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

    .stat-card {
        padding: 25px 15px;
    }

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

    .stat-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

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

    .step-card {
        padding: 40px 25px;
    }

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

    .form-section {
        padding: 40px 25px;
    }

    .table-container {
        overflow-x: auto;
    }

    .table th,
    .table td {
        padding: 15px 10px;
        font-size: 13px;
        white-space: nowrap;
    }

    .amount {
        font-size: 18px;
    }

    .case-study {
        padding: 40px 25px;
    }

    .case-title {
        font-size: 28px;
    }

    .case-earnings {
        grid-template-columns: 1fr;
    }

    .total-amount {
        font-size: 42px;
    }

    .total-period {
        font-size: 24px;
    }

    .dashboard-info {
        padding: 30px 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .step-card {
        padding: 35px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .commission-icon {
        font-size: 48px;
    }

    .commission-title {
        font-size: 20px;
    }

    .commission-amount {
        font-size: 32px;
    }
}

/* =====================
   UTILITIES
   ===================== */
.text-center {
    text-align: center;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}