/* ============================================
   7 SECRETS LANDING PAGE - FUTURISTIC DESIGN
   Version 2.0 - Updated with fixes
   ============================================ */

/* CSS Variables */
:root {
    --s37-primary: #00f5a0;
    --s37-secondary: #00a8ff;
    --s37-accent: #7b2ff7;
    --s37-dark: #0a0a0f;
    --s37-dark-light: #1a1a2e;
    --s37-text: #f5f5f5;  /* VERY BRIGHT - almost white */
    --s37-text-muted: #d8d8e8;  /* MUCH LIGHTER - was #c5c5d5 */
    --s37-white: #ffffff;
    --s37-gradient: linear-gradient(135deg, var(--s37-primary), var(--s37-secondary));
    --s37-gradient-accent: linear-gradient(135deg, var(--s37-accent), var(--s37-secondary));
    --s37-shadow: 0 25px 80px rgba(0, 245, 160, 0.15);
    --s37-radius: 20px;
    --s37-font: 'Outfit', sans-serif;
    --s37-font-mono: 'Space Mono', monospace;
}

/* Reset */
.secrets-37-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.secrets-37-landing {
    font-family: var(--s37-font);
    background: var(--s37-dark);
    color: var(--s37-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px; /* BASE FONT SIZE - 20% bigger */
}

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

/* Navigation */
.s37-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.s37-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BIGGER LOGO */
.s37-logo img {
    height: 55px;
    transition: transform 0.3s ease;
}

.s37-logo:hover img {
    transform: scale(1.05);
}

.s37-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.s37-nav-menu a {
    color: var(--s37-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.s37-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--s37-gradient);
    transition: width 0.3s ease;
}

.s37-nav-menu a:hover {
    color: var(--s37-primary);
}

.s37-nav-menu a:hover::after {
    width: 100%;
}

.s37-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.s37-nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--s37-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.s37-hero {
    min-height: 100vh;
    padding: 80px 20px 60px; /* REDUCED TOP PADDING - was 100px */
    position: relative;
    display: flex;
    align-items: center;
}

.s37-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.s37-particles {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 245, 160, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(123, 47, 247, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.s37-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 245, 160, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 160, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

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

.s37-hero-content {
    animation: fadeInUp 1s ease;
}

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

.s37-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 245, 160, 0.1);
    border: 1px solid rgba(0, 245, 160, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px; /* 20% BIGGER - was ~14px */
    font-weight: 500;
    color: var(--s37-primary);
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 160, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 245, 160, 0.1); }
}

.s37-badge-icon {
    font-size: 18px;
}

.s37-title {
    font-size: clamp(2.8rem, 5vw, 3.8rem); /* 20% BIGGER */
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--s37-white);
}

.s37-highlight {
    color: var(--s37-primary);
    text-shadow: 0 0 30px rgba(0, 245, 160, 0.3);
}

.s37-number-highlight {
    display: inline-block;
    background: var(--s37-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    font-family: var(--s37-font-mono);
}

.s37-gradient-text {
    background: var(--s37-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s37-subtitle {
    font-size: 1.35rem; /* 20% BIGGER - was 1.15rem */
    color: var(--s37-text-muted);
    margin-bottom: 25px;
    line-height: 1.9;
}

.s37-subtitle strong {
    color: var(--s37-primary);
}

/* HERO IMAGE - Happy Entrepreneur */
.s37-hero-image {
    position: relative;
    margin: 25px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 245, 160, 0.2);
    border: 2px solid rgba(0, 245, 160, 0.3);
}

.s37-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.s37-hero-image:hover img {
    transform: scale(1.05);
}

.s37-hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--s37-primary);
    font-weight: 600;
    font-size: 14px;
}

.s37-trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.s37-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px; /* 20% BIGGER - was 15px */
    color: var(--s37-text-muted);
}

.s37-trust-icon {
    color: var(--s37-primary);
    font-weight: bold;
    font-size: 20px;
}

/* Form Card */
.s37-form-wrapper {
    position: relative;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.s37-form-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(0, 245, 160, 0.15), transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.s37-form-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(15, 15, 26, 0.98));
    border: 1px solid rgba(0, 245, 160, 0.2);
    border-radius: var(--s37-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--s37-shadow);
}

.s37-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--s37-gradient);
}

.s37-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.s37-form-header h3 {
    font-size: 1.9rem; /* 20% BIGGER - was 1.6rem */
    font-weight: 700;
    color: var(--s37-white);
    margin-bottom: 15px;
}

.s37-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 245, 160, 0.1);
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 17px; /* 20% BIGGER */
}

.s37-counter-icon {
    font-size: 22px;
}

.s37-counter-number {
    font-family: var(--s37-font-mono);
    font-weight: 700;
    color: var(--s37-primary);
    font-size: 21px; /* 20% BIGGER - was 18px */
}

.s37-counter-text {
    color: var(--s37-text-muted);
}

.s37-form-group {
    margin-bottom: 24px;
}

.s37-form-group label {
    display: block;
    font-size: 16px; /* 20% BIGGER - was 14px */
    font-weight: 600;
    color: var(--s37-text); /* BRIGHT */
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s37-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.s37-input-icon {
    position: absolute;
    left: 20px;
    font-size: 22px; /* BIGGER icons */
    opacity: 0.9;
    z-index: 2;
}

/* FIXED INPUT VISIBILITY - Text is now white and visible */
.s37-form input {
    width: 100%;
    padding: 20px 18px 20px 65px !important; /* MUCH MORE LEFT PADDING - icons are ~45px wide */
    background: rgba(255, 255, 255, 0.12) !important;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #ffffff !important;
    font-family: var(--s37-font);
    font-size: 18px; /* BIGGER FONT */
    transition: all 0.3s ease;
    -webkit-text-fill-color: #ffffff !important;
}

.s37-form input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important; /* MUCH BRIGHTER */
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7) !important;
    font-size: 17px;
    padding-left: 0 !important;
}

.s37-form input:focus {
    outline: none;
    border-color: var(--s37-primary);
    background: rgba(0, 245, 160, 0.15) !important;
    box-shadow: 0 0 25px rgba(0, 245, 160, 0.25);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.s37-form input:hover {
    border-color: rgba(0, 245, 160, 0.6);
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Autofill fix for webkit browsers */
.s37-form input:-webkit-autofill,
.s37-form input:-webkit-autofill:hover,
.s37-form input:-webkit-autofill:focus,
.s37-form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(26, 26, 46, 0.95) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.s37-submit-btn {
    width: 100%;
    padding: 22px 30px; /* BIGGER */
    background: var(--s37-gradient);
    border: none;
    border-radius: 12px;
    color: var(--s37-dark);
    font-family: var(--s37-font);
    font-size: 20px; /* 20% BIGGER - was 18px */
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.s37-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.s37-submit-btn:hover::before {
    left: 100%;
}

.s37-submit-btn:active {
    transform: translateY(0);
}

.s37-submit-btn.loading .s37-btn-text,
.s37-submit-btn.loading .s37-btn-icon {
    opacity: 0;
}

.s37-submit-btn.loading .s37-btn-loader {
    display: block;
}

.s37-btn-loader {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--s37-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

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

.s37-btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.s37-submit-btn:hover .s37-btn-icon {
    transform: translateX(5px);
}

.s37-form-footer {
    text-align: center;
    font-size: 16px; /* 20% BIGGER - was 14px */
    color: var(--s37-text-muted);
    margin-top: 22px;
}

/* Scroll Indicator */
.s37-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--s37-text-muted);
    font-size: 13px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.s37-scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--s37-primary);
    border-bottom: 2px solid var(--s37-primary);
    transform: rotate(45deg);
    margin: 10px auto 0;
    opacity: 0.7;
}

/* Floating CTA */
.s37-floating-cta {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s37-floating-cta.visible {
    bottom: 30px;
}

.s37-floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--s37-gradient);
    border: none;
    border-radius: 50px;
    color: var(--s37-dark);
    font-family: var(--s37-font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 245, 160, 0.4);
    animation: floatPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(0, 245, 160, 0.4); }
    50% { box-shadow: 0 15px 50px rgba(0, 245, 160, 0.6); }
}

.s37-floating-btn:hover {
    transform: scale(1.05);
}

/* Tools Section */
.s37-tools-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--s37-dark) 0%, var(--s37-dark-light) 100%);
    position: relative;
}

.s37-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.s37-section-badge {
    display: inline-block;
    padding: 10px 26px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50px;
    font-size: 15px; /* 20% BIGGER */
    font-weight: 600;
    color: var(--s37-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.s37-section-header h2 {
    font-size: clamp(2.6rem, 5vw, 3.5rem); /* 20% BIGGER */
    font-weight: 800;
    color: var(--s37-white);
    margin-bottom: 18px;
}

.s37-section-header p {
    font-size: 1.4rem; /* 20% BIGGER - was 1.2rem */
    color: var(--s37-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.s37-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.s37-tool-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 15, 26, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--s37-radius);
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s37-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--s37-gradient);
    transition: height 0.3s ease;
}

.s37-tool-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 160, 0.3);
    box-shadow: 0 30px 60px rgba(0, 245, 160, 0.15);
}

.s37-tool-card:hover::before {
    height: 4px;
}

.s37-tool-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.s37-tool-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(123, 47, 247, 0.2);
    border-radius: 50px;
    font-size: 14px; /* 20% BIGGER */
    font-weight: 700;
    color: var(--s37-accent);
    font-family: var(--s37-font-mono);
    margin-bottom: 15px;
}

.s37-tool-card h3 {
    font-size: 1.65rem; /* 20% BIGGER - was 1.4rem */
    font-weight: 700;
    color: var(--s37-white);
    margin-bottom: 18px;
}

.s37-tool-card p {
    font-size: 1.2rem; /* 20% BIGGER - was 1.05rem */
    color: var(--s37-text-muted);
    margin-bottom: 22px;
    line-height: 1.8;
}

.s37-tool-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.s37-tool-benefits li {
    font-size: 17px; /* 20% BIGGER - was 15px */
    color: var(--s37-text);
    padding: 7px 0;
}

.s37-tool-benefits li::before {
    color: var(--s37-primary);
    margin-right: 5px;
}

.s37-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--s37-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px; /* 20% BIGGER - was 15px */
    transition: all 0.3s ease;
}

.s37-tool-link span {
    transition: transform 0.3s ease;
}

.s37-tool-link:hover {
    color: var(--s37-secondary);
}

.s37-tool-link:hover span {
    transform: translateX(5px);
}

.s37-tools-cta {
    text-align: center;
    padding: 45px;
    background: rgba(0, 245, 160, 0.05);
    border: 1px dashed rgba(0, 245, 160, 0.3);
    border-radius: var(--s37-radius);
}

.s37-tools-cta p {
    font-size: 1.5rem; /* 20% BIGGER - was 1.3rem */
    color: var(--s37-text);
    margin-bottom: 22px;
}

.s37-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px; /* BIGGER */
    background: var(--s37-gradient);
    border: none;
    border-radius: 50px;
    color: var(--s37-dark);
    font-family: var(--s37-font);
    font-size: 19px; /* 20% BIGGER - was 17px */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s37-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 245, 160, 0.3);
}

/* CLIENTS SECTION - FASTER, BIGGER, LESS SPACING */
.s37-clients-section {
    padding: 80px 20px;
    background: var(--s37-dark);
    overflow: hidden;
}

.s37-clients-marquee {
    margin-top: 40px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.s37-marquee-track {
    overflow: hidden;
}

.s37-marquee-content {
    display: flex;
    gap: 25px; /* REDUCED GAP */
    animation: marquee 15s linear infinite; /* FASTER - was 30s */
}

/* BIGGER LOGOS, FULL COLOR, DARKEN ON HOVER */
.s37-marquee-content img {
    height: 70px; /* BIGGER - was 50px */
    width: auto;
    filter: none; /* FULL COLOR - removed grayscale */
    opacity: 1; /* FULL OPACITY */
    transition: all 0.3s ease;
}

.s37-marquee-content img:hover {
    filter: brightness(0.7); /* DARKEN ON HOVER */
    opacity: 0.8;
    transform: scale(1.05);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Founder Section */
.s37-founder-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--s37-dark-light) 0%, var(--s37-dark) 100%);
}

.s37-founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.6), rgba(15, 15, 26, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--s37-radius);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.s37-founder-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.1), transparent 70%);
}

.s37-founder-image {
    position: relative;
    z-index: 1;
}

.s37-founder-image img {
    width: 100%;
    border-radius: 20px;
    border: 3px solid rgba(0, 245, 160, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.s37-founder-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--s37-gradient);
    color: var(--s37-dark);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s37-founder-content {
    position: relative;
    z-index: 1;
}

.s37-founder-content h2 {
    font-size: 2.8rem; /* 20% BIGGER - was 2.4rem */
    font-weight: 800;
    color: var(--s37-white);
    margin-bottom: 12px;
}

.s37-founder-title {
    color: var(--s37-primary);
    font-size: 1.4rem; /* 20% BIGGER - was 1.2rem */
    font-weight: 600;
    margin-bottom: 28px;
}

.s37-founder-content p {
    color: var(--s37-text-muted);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.25rem; /* 20% BIGGER - was 1.1rem */
}

.s37-founder-content p strong {
    color: var(--s37-primary);
}

/* SOCIAL MEDIA LINKS FOR FOUNDER */
.s37-founder-social {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.s37-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 245, 160, 0.1);
    border: 1px solid rgba(0, 245, 160, 0.3);
    border-radius: 50%;
    color: var(--s37-primary);
    transition: all 0.3s ease;
}

.s37-social-link:hover {
    background: var(--s37-primary);
    color: var(--s37-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 245, 160, 0.3);
}

.s37-social-link svg {
    width: 20px;
    height: 20px;
}

.s37-founder-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.s37-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--s37-font-mono);
    background: var(--s37-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.s37-stat-label {
    font-size: 13px;
    color: var(--s37-text-muted);
}

/* Testimonials Section */
.s37-testimonials-section {
    padding: 100px 20px;
    background: var(--s37-dark);
    overflow: hidden;
}

.s37-testimonials-wrapper {
    margin-top: 50px;
}

.s37-testimonials-row {
    margin-bottom: 25px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.s37-testimonials-track {
    display: flex;
    gap: 25px;
    width: max-content;
}

.s37-row-left .s37-testimonials-track {
    animation: scrollLeft 40s linear infinite;
}

.s37-row-right .s37-testimonials-track {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.s37-testimonial-card {
    flex-shrink: 0;
    width: 380px;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 15, 26, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--s37-radius);
    padding: 30px;
    transition: all 0.3s ease;
}

.s37-testimonial-card:hover {
    border-color: rgba(0, 245, 160, 0.3);
    transform: scale(1.02);
}

.s37-testimonial-content {
    margin-bottom: 22px;
}

.s37-stars {
    color: #ffc107;
    font-size: 22px; /* 20% BIGGER - was 20px */
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.s37-testimonial-content p {
    font-size: 18px; /* 20% BIGGER - was 16px */
    color: var(--s37-text);
    line-height: 1.85;
    font-style: italic;
}

.s37-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.s37-testimonial-author img {
    width: 60px; /* BIGGER - was 55px */
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--s37-primary);
}

.s37-author-info {
    display: flex;
    flex-direction: column;
}

.s37-author-info strong {
    color: var(--s37-white);
    font-size: 18px; /* 20% BIGGER - was 16px */
}

.s37-author-info span {
    color: var(--s37-text-muted);
    font-size: 16px; /* 20% BIGGER - was 14px */
}

/* Final CTA Section */
.s37-final-cta {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--s37-dark) 0%, var(--s37-dark-light) 100%);
}

.s37-cta-card {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(145deg, rgba(0, 245, 160, 0.05), rgba(0, 168, 255, 0.03));
    border: 1px solid rgba(0, 245, 160, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.s37-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 245, 160, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.s37-cta-card:hover::before {
    opacity: 1;
}

.s37-cta-card h2 {
    font-size: clamp(2.6rem, 5vw, 3.5rem); /* 20% BIGGER */
    font-weight: 800;
    color: var(--s37-white);
    margin-bottom: 22px;
    position: relative;
}

.s37-cta-card p {
    font-size: 1.5rem; /* 20% BIGGER - was 1.3rem */
    color: var(--s37-text-muted);
    margin-bottom: 32px;
    position: relative;
}

.s37-cta-card p span {
    color: var(--s37-primary);
    font-weight: 700;
    font-family: var(--s37-font-mono);
}

.s37-cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 25px 60px; /* BIGGER */
    background: var(--s37-gradient);
    border: none;
    border-radius: 60px;
    color: var(--s37-dark);
    font-family: var(--s37-font);
    font-size: 22px; /* 20% BIGGER - was 20px */
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.s37-cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.s37-cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 245, 160, 0.4);
}

.s37-cta-button-large:hover::before {
    left: 100%;
}

.s37-cta-button-large .s37-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.s37-cta-button-large:hover .s37-arrow {
    transform: translateX(5px);
}

.s37-cta-subtext {
    margin-top: 20px !important;
    font-size: 14px !important;
    color: var(--s37-text-muted) !important;
}

/* Footer */
.s37-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.s37-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* BIGGER FOOTER LOGO */
.s37-footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.s37-footer-brand p {
    color: var(--s37-text-muted);
    font-size: 17px; /* 20% BIGGER - was 15px */
}

.s37-footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.s37-footer-links a {
    color: var(--s37-text-muted);
    text-decoration: none;
    font-size: 17px; /* 20% BIGGER - was 15px */
    transition: color 0.3s ease;
}

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

.s37-footer-contact p {
    color: var(--s37-text-muted);
    font-size: 17px; /* 20% BIGGER - was 15px */
    margin-bottom: 12px;
}

.s37-footer-contact a {
    color: var(--s37-primary);
    text-decoration: none;
}

.s37-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.s37-footer-bottom p {
    color: var(--s37-text-muted);
    font-size: 16px; /* 20% BIGGER - was 14px */
}

.s37-footer-social {
    display: flex;
    gap: 22px;
}

.s37-footer-social a {
    color: var(--s37-text-muted);
    text-decoration: none;
    font-size: 16px; /* 20% BIGGER - was 14px */
    transition: color 0.3s ease;
}

.s37-footer-social a:hover {
    color: var(--s37-primary);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .s37-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .s37-hero-content {
        text-align: center;
    }
    
    .s37-hero-image {
        max-width: 400px;
        margin: 25px auto;
    }
    
    .s37-trust-badges {
        justify-content: center;
    }
    
    .s37-tools-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .s37-founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .s37-founder-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .s37-founder-social {
        justify-content: center;
    }
    
    .s37-founder-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .s37-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .s37-nav-menu.active {
        display: flex;
    }
    
    .s37-nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .s37-nav-toggle {
        display: flex;
    }
    
    .s37-logo img {
        height: 45px;
    }
    
    .s37-hero {
        padding: 90px 15px 60px;
    }
    
    .s37-title {
        font-size: 1.8rem;
    }
    
    .s37-form-card {
        padding: 25px;
    }
    
    .s37-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .s37-testimonial-card {
        width: 320px;
    }
    
    .s37-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .s37-footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .s37-footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .s37-cta-card {
        padding: 50px 25px;
    }
    
    .s37-cta-button-large {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    .s37-marquee-content img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .s37-title {
        font-size: 1.6rem;
    }
    
    .s37-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .s37-counter {
        flex-direction: column;
        gap: 5px;
    }
    
    .s37-founder-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .s37-floating-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .s37-hero-image {
        margin: 20px auto;
    }
}

/* Utility Classes */
.s37-hidden {
    display: none !important;
}

/* Form Error States */
.s37-form input.error {
    border-color: #ff4757;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.s37-error-message {
    color: #ff4757;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.s37-error-message.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Success Animation */
.s37-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.s37-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.s37-success-content {
    text-align: center;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.s37-success-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.s37-success-content h3 {
    font-size: 2rem;
    color: var(--s37-primary);
    margin-bottom: 15px;
}

.s37-success-content p {
    color: var(--s37-text-muted);
    font-size: 1.1rem;
}
