/*
Theme Name: ACCT.AI Domain Landing
Theme URI: https://acct.ai
Author: ACCT.AI
Author URI: https://acct.ai
Description: Premium landing page theme for ACCT.AI domain — for sale or lease. Dark obsidian and gold aesthetic designed for the trillion-dollar accounting industry.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: acct-ai
Tags: one-page, landing-page, domain-sale, dark, premium
*/

/* ============ CSS VARIABLES ============ */
:root {
    --obsidian: #0a0a0c;
    --charcoal: #141418;
    --slate: #1e1e24;
    --graphite: #2a2a32;
    --steel: #6b6b7b;
    --silver: #9e9eae;
    --pearl: #d4d4e0;
    --ivory: #f0f0f5;
    --white: #ffffff;
    --gold: #c9a84c;
    --gold-light: #e0c872;
    --gold-dim: #8a6f2e;
    --emerald: #2dd4a8;
    --emerald-dim: #1a7a62;
    --accent-glow: rgba(201, 168, 76, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background: var(--obsidian);
    color: var(--pearl);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============ GRID BACKGROUND ============ */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 0%, var(--obsidian) 70%);
}

/* ============ FLOATING NUMBERS ============ */
.floating-numbers {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-num {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: rgba(201, 168, 76, 0.06);
    animation: floatUp linear infinite;
    white-space: nowrap;
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-10vh) rotate(5deg);
        opacity: 0;
    }
}

/* ============ NAVIGATION ============ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 12, 0.7);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    transition: all 0.4s ease;
}

.site-nav.scrolled {
    padding: 16px 48px;
    background: rgba(10, 10, 12, 0.92);
}

.nav-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 4px;
}

.nav-logo .tld {
    color: var(--silver);
    font-weight: 400;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border: 1px solid var(--gold-dim);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--obsidian);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

/* ============ HERO SECTION ============ */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 32px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.05);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 48px;
    animation: fadeSlideDown 0.8s ease-out 0.2s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(45, 212, 168, 0);
    }
}

.hero-domain {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(72px, 12vw, 160px);
    font-weight: 400;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 8px;
    letter-spacing: -3px;
    animation: fadeSlideDown 0.8s ease-out 0.4s both;
}

.hero-domain .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tld {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 8px;
    display: block;
    margin-bottom: 40px;
    animation: fadeSlideDown 0.8s ease-out 0.5s both;
}

.hero-tagline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--silver);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 24px;
    animation: fadeSlideDown 0.8s ease-out 0.6s both;
}

.hero-sub {
    font-size: 16px;
    color: var(--steel);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 56px;
    animation: fadeSlideDown 0.8s ease-out 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeSlideDown 0.8s ease-out 0.8s both;
}

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--obsidian);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
    color: var(--obsidian);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    border: 1px solid var(--graphite);
    color: var(--pearl);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--steel);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeSlideDown 0.8s ease-out 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ============ STATS SECTION ============ */
.stats-section {
    position: relative;
    z-index: 1;
    padding: 80px 48px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    background: rgba(20, 20, 24, 0.5);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(201, 168, 76, 0.1);
}

.stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value .unit {
    font-size: 28px;
    color: var(--gold);
}

.stat-label {
    font-size: 12px;
    color: var(--steel);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============ VALUE PROPOSITION ============ */
.value-section {
    position: relative;
    z-index: 1;
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--white);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 64px;
    max-width: 700px;
}

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

.value-card {
    background: rgba(30, 30, 36, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.06);
    padding: 48px 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    background: rgba(42, 42, 50, 0.8);
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.value-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.7;
}

/* ============ LEDGER LINE ============ */
.ledger-line {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(201, 168, 76, 0.1) 0px,
        rgba(201, 168, 76, 0.1) 8px,
        transparent 8px,
        transparent 16px
    );
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============ USE CASES ============ */
.usecases-section {
    position: relative;
    z-index: 1;
    padding: 120px 48px;
    background: rgba(20, 20, 24, 0.5);
    border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.usecases-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.usecases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
    gap: 40px;
}

.usecases-header p {
    max-width: 400px;
    font-size: 15px;
    color: var(--steel);
    line-height: 1.7;
    text-align: right;
}

.usecase-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.usecase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    background: rgba(30, 30, 36, 0.4);
    border: 1px solid rgba(201, 168, 76, 0.04);
    cursor: default;
    transition: all 0.3s ease;
}

.usecase-item:hover {
    background: rgba(42, 42, 50, 0.6);
    border-color: rgba(201, 168, 76, 0.12);
    padding-left: 52px;
}

.usecase-item h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--white);
    font-weight: 400;
}

.usecase-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--gold-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ============ OFFER SECTION ============ */
.offer-section {
    position: relative;
    z-index: 1;
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 64px;
}

.offer-card {
    background: rgba(30, 30, 36, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.06);
    padding: 56px 48px;
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.offer-card.featured {
    border-color: var(--gold-dim);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(30, 30, 36, 0.8));
}

.offer-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 0;
    right: 40px;
    background: var(--gold);
    color: var(--obsidian);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
}

.offer-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.offer-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 20px;
}

.offer-card > p {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.8;
    margin-bottom: 36px;
}

.offer-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--pearl);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-features li::before {
    content: '◆';
    color: var(--gold-dim);
    font-size: 8px;
}

.offer-features {
    margin-bottom: 40px;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.offer-btn-primary {
    background: var(--gold);
    color: var(--obsidian);
}

.offer-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
    color: var(--obsidian);
}

.offer-btn-outline {
    background: transparent;
    border: 1px solid var(--graphite);
    color: var(--pearl);
}

.offer-btn-outline:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 120px 48px;
    text-align: center;
    background: rgba(20, 20, 24, 0.5);
    border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
}

.contact-section .section-title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.contact-sub {
    font-size: 15px;
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    color: var(--pearl);
    background: rgba(30, 30, 36, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--steel);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--gold-dim);
    background: rgba(42, 42, 50, 0.6);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236b6b7b' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.contact-form select option {
    background: var(--charcoal);
    color: var(--pearl);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--obsidian);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.trust-note {
    margin-top: 24px;
    font-size: 12px;
    color: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-note svg {
    width: 14px;
    height: 14px;
}

/* ============ FOOTER ============ */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 40px 48px;
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--steel);
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 13px;
    color: var(--steel);
    transition: color 0.3s ease;
}

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

/* ============ SUCCESS MODAL ============ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--charcoal);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 48px;
    max-width: 520px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--steel);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold);
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(45, 212, 168, 0.1);
    border: 2px solid var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: var(--emerald);
}

.modal h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
}

.modal p {
    font-size: 14px;
    color: var(--steel);
    text-align: center;
    line-height: 1.7;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============ FORM MESSAGES ============ */
.form-success,
.form-error {
    padding: 16px 20px;
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
    display: none;
}

.form-success {
    background: rgba(45, 212, 168, 0.08);
    border: 1px solid var(--emerald-dim);
    color: var(--emerald);
}

.form-error {
    background: rgba(220, 60, 60, 0.08);
    border: 1px solid rgba(220, 60, 60, 0.3);
    color: #e06060;
}

/* ============ WORDPRESS ADMIN BAR FIX ============ */
body.admin-bar .site-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-nav {
        top: 46px;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .site-nav {
        padding: 20px 24px;
    }

    .site-nav.scrolled {
        padding: 14px 24px;
    }

    .hero-section {
        padding: 120px 24px 80px;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

    .value-section,
    .usecases-section,
    .offer-section,
    .contact-section {
        padding: 80px 24px;
    }

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

    .usecases-header {
        flex-direction: column;
    }

    .usecases-header p {
        text-align: left;
    }

    .site-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 32px 24px;
    }

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

@media (max-width: 480px) {
    .hero-domain {
        letter-spacing: -1px;
    }

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

    .stat-item::after {
        display: none;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .usecase-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px;
    }

    .usecase-item:hover {
        padding-left: 32px;
    }

    .offer-card {
        padding: 40px 28px;
    }
}
