/*--------------------------------------------------------------
TABLE OF CONTENT
----------------------------------------------------------------
1.0 VARIABLES & DESIGN TOKENS
2.0 FOUNDATION
3.0 TYPOGRAPHY
4.0 LAYOUT
5.0 NAVIGATION
6.0 HERO SECTION
7.0 SOCIAL PROOF / TESTIMONIALS
8.0 FEATURES SECTION
9.0 PRICING SECTION
10.0 TRUST SECTION
11.0 FOOTER
12.0 FORMS & AUTH PAGES
13.0 CONTENT PAGES
14.0 ANIMATIONS
15.0 RESPONSIVE
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 VARIABLES & DESIGN TOKENS
--------------------------------------------------------------*/

:root {
    /* Colors */
    --coral: #E86C5D;
    --coral-light: #FFEBE8;
    --coral-dark: #C45547;
    --charcoal: #2D2D2D;
    --slate: #5A5A5A;
    --mist: #F8F7F5;
    --ivory: #FFFDF9;
    --stone: #E8E6E1;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --container-padding: 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;
}

/*--------------------------------------------------------------
2.0 FOUNDATION
--------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/*--------------------------------------------------------------
3.0 TYPOGRAPHY
--------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
}

h1 {
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: -1.5px;
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -1px;
}

h4 {
    font-size: 20px;
    letter-spacing: -0.5px;
}

p {
    color: var(--slate);
    font-size: 16px;
    line-height: 1.7;
}

a {
    color: var(--coral);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--coral-dark);
}

strong {
    font-weight: 600;
}

small {
    font-size: 13px;
}

.section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--slate);
    font-size: 18px;
    max-width: 600px;
}

/*--------------------------------------------------------------
4.0 LAYOUT
--------------------------------------------------------------*/

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/*--------------------------------------------------------------
5.0 NAVIGATION
--------------------------------------------------------------*/

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(255, 253, 249, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    border-bottom-color: var(--stone);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--font-display);
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-cta {
    background: var(--charcoal);
    color: white !important;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--coral) !important;
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.nav-menu-toggle {
    display: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 101;
}

.nav-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.nav-menu-toggle span:nth-child(1) { top: 0; }
.nav-menu-toggle span:nth-child(2) { top: 8px; }
.nav-menu-toggle span:nth-child(3) { top: 16px; }

/*--------------------------------------------------------------
6.0 HERO SECTION
--------------------------------------------------------------*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--coral-light) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text h1 span {
    color: var(--coral);
    font-style: italic;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: white;
    padding: 18px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 108, 93, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--coral-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 108, 93, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 2px solid var(--stone);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: var(--charcoal);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--stone);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral-light);
    color: var(--coral-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.dashboard-header {
    background: var(--mist);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--stone);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--stone);
}

.dashboard-dot:nth-child(1) { background: #FF6B6B; }
.dashboard-dot:nth-child(2) { background: #FFE066; }
.dashboard-dot:nth-child(3) { background: #51CF66; }

.dashboard-body {
    padding: 24px;
}

.dashboard-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.vendor-table {
    width: 100%;
    border-collapse: collapse;
}

.vendor-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate);
    border-bottom: 1px solid var(--stone);
    font-weight: 600;
}

.vendor-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--mist);
}

.vendor-name {
    font-weight: 500;
}

.vendor-email {
    color: var(--slate);
    font-size: 12px;
}

.split-badge {
    background: var(--coral-light);
    color: var(--coral-dark);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2E7D32;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
}

.vendor-balance {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--charcoal);
    font-size: 14px;
}

/*--------------------------------------------------------------
7.0 SOCIAL PROOF / TESTIMONIALS
--------------------------------------------------------------*/

.social-proof {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.review-card {
    background: var(--ivory);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--stone);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #FFB800;
    font-size: 18px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--coral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--coral);
    font-size: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0;
}

.author-info p {
    font-size: 13px;
    color: var(--slate);
    margin: 0;
}

/*--------------------------------------------------------------
8.0 FEATURES SECTION
--------------------------------------------------------------*/

.features {
    padding: 120px 0;
    background: var(--mist);
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header .section-subtitle {
    margin: 0 auto;
}

.feature-blocks {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-block:nth-child(even) {
    direction: rtl;
}

.feature-block:nth-child(even) > * {
    direction: ltr;
}

.feature-content {
    max-width: 480px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--coral);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 24px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.feature-desc {
    color: var(--slate);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--charcoal);
}

.feature-list li::before {
    content: '\2713';
    background: var(--coral-light);
    color: var(--coral);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-visual {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Split Config Visual */
.split-config {
    background: var(--mist);
    border-radius: var(--radius-md);
    padding: 24px;
}

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.config-title {
    font-weight: 600;
    font-size: 14px;
}

.config-badge {
    background: var(--coral);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.split-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--stone);
}

.split-row:last-child {
    border-bottom: none;
}

.split-vendor {
    font-size: 14px;
    font-weight: 500;
}

.split-percent {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--coral);
}

/* Payout Card Visual */
.payout-card {
    background: var(--charcoal);
    color: white;
    border-radius: var(--radius-md);
    padding: 24px;
}

.payout-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.payout-title {
    font-size: 13px;
    opacity: 0.7;
}

.payout-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
}

.payout-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.payout-schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.schedule-option {
    text-align: center;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.schedule-option.active {
    background: var(--coral);
}

/*--------------------------------------------------------------
9.0 PRICING SECTION
--------------------------------------------------------------*/

.pricing {
    padding: 120px 0;
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-size: 14px;
    color: var(--slate);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--charcoal);
    font-weight: 600;
}

.toggle-switch {
    width: 56px;
    height: 30px;
    background: var(--stone);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: var(--coral);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: left 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.toggle-switch.active .toggle-knob {
    left: 29px;
}

.save-badge {
    background: var(--coral-light);
    color: var(--coral);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--ivory);
    border: 1px solid var(--stone);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: var(--charcoal);
    color: white;
    border-color: var(--charcoal);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.plan-price span {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.6;
}

.plan-desc {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--coral-light);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.pricing-card.featured .check-icon {
    background: var(--coral);
    color: white;
}

.plan-cta {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-full);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    color: var(--charcoal);
    border: 2px solid var(--stone);
}

.plan-cta:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.pricing-card.featured .plan-cta {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

.pricing-card.featured .plan-cta:hover {
    background: white;
    color: var(--coral);
}

/*--------------------------------------------------------------
10.0 TRUST SECTION
--------------------------------------------------------------*/

.trust {
    padding: 100px 0;
    background: var(--mist);
    text-align: center;
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: white;
    font-size: 36px;
}

.trust p {
    font-size: 18px;
    color: var(--slate);
    margin-bottom: 16px;
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--charcoal);
}

.stat-label {
    font-size: 14px;
    color: var(--slate);
}

/*--------------------------------------------------------------
11.0 FOOTER
--------------------------------------------------------------*/

footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.5;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--coral);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/*--------------------------------------------------------------
12.0 FORMS & AUTH PAGES
--------------------------------------------------------------*/

.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.auth-card h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.auth-card > p {
    margin-bottom: 32px;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 32px 0;
    color: var(--slate);
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--stone);
}

.auth-divider span {
    padding: 0 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--stone);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.2s;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px var(--coral-light);
}

.form-group input::placeholder {
    color: var(--slate);
    opacity: 0.6;
}

.form-hint {
    font-size: 12px;
    color: var(--slate);
    margin-top: 8px;
}

.form-hint span {
    background: #FFF9C4;
    padding: 2px 6px;
    font-weight: 600;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    text-align: center;
}

/* Login split panel */
.login-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.login-panel {
    padding: 32px;
    background: var(--mist);
    border-radius: var(--radius-lg);
}

.login-panel h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.login-panel > p {
    margin-bottom: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------
13.0 CONTENT PAGES
--------------------------------------------------------------*/

.content-section {
    padding: 140px 0 80px;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-container h1 {
    margin-bottom: 40px;
}

.content-container h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.content-container p {
    margin-bottom: 16px;
}

.content-container ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-container li {
    margin-bottom: 8px;
    color: var(--slate);
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--stone);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item strong {
    display: block;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

/*--------------------------------------------------------------
14.0 ANIMATIONS
--------------------------------------------------------------*/

/* Animations removed - all elements visible by default */

/*--------------------------------------------------------------
15.0 RESPONSIVE
--------------------------------------------------------------*/

@media (max-width: 968px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        order: -1;
    }

    .dashboard-preview {
        transform: none;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block:nth-child(even) {
        direction: ltr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 32px;
    }

    .login-panels {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .login-panel:last-child {
        border-top: 1px solid var(--stone);
        padding-top: 32px;
    }
}

@media (max-width: 600px) {
    :root {
        --container-padding: 20px;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--ivory);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 24px;
        color: var(--charcoal);
    }

    .nav-links a.nav-cta {
        color: white;
    }

    .nav-menu-toggle {
        display: block;
        z-index: 101;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .features {
        padding: 80px 0;
    }

    .feature-blocks {
        gap: 80px;
    }

    .pricing {
        padding: 80px 0;
    }

    .pricing-card {
        padding: 32px;
    }

    .trust {
        padding: 80px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .auth-card {
        padding: 32px 24px;
    }
}

/* Utility class for backwards compatibility */
.ui-layout-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
