:root {
    --primary: hsl(16, 84%, 58%);
    --primary-light: hsl(16, 84%, 70%);
    --primary-dark: hsl(16, 70%, 45%);
    --secondary: hsl(173, 70%, 40%);
    --secondary-dark: hsl(173, 70%, 32%);
    --bg-main: hsl(36, 35%, 96%);
    --text-main: hsl(222, 28%, 14%);
    --text-muted: hsl(215, 18%, 40%);
    --surface: hsl(0, 0%, 100%);
    --surface-alt: hsl(0, 0%, 97%);
    --border: hsl(215, 28%, 88%);
    --shadow: 0 12px 30px rgba(18, 23, 39, 0.08);
    --shadow-lg: 0 25px 50px rgba(18, 23, 39, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Sora', sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(255, 197, 165, 0.35), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(94, 234, 212, 0.25), transparent 40%),
        var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(255, 122, 89, 0.6);
    outline-offset: 3px;
}


/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Fraunces', serif;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

/* Navigation */
nav {
    padding: 1.25rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-badge {
    background: rgba(16, 185, 129, 0.12);
    color: var(--secondary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6.5rem 0 5.5rem;
    color: white;
    background: linear-gradient(135deg, #0f172a, #1f2937);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 520px;
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero .highlight {
    background: linear-gradient(120deg, #ffd6a5, #ff7a59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    background: white;
    color: var(--primary-dark);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Sora', sans-serif;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.primary-btn.filled {
    background: var(--primary);
    color: white;
}

.primary-btn.filled:hover {
    box-shadow: 0 12px 30px rgba(255, 122, 89, 0.35);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.pulse-glow {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-visual {
    position: relative;
    min-height: 360px;
    display: grid;
    gap: 1rem;
    max-width: 420px;
    justify-self: end;
}

.hero-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(12, 18, 36, 0.35);
}

.hero-card .card-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.7rem;
    opacity: 0.7;
}

.hero-card .card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 0.35rem;
}

.hero-card .card-meta {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.35rem;
}

.card-primary {
    background: rgba(255, 255, 255, 0.2);
}

.card-secondary {
    transform: translateX(24px);
}

.card-tertiary {
    transform: translateX(8px);
}

.hero-orbit {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    opacity: 0.4;
    transform: rotate(-8deg);
    z-index: 0;
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #ffb088;
    top: -100px;
    left: 0;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #5eead4;
    bottom: -80px;
    right: 5%;
}

/* Features */
.features-section {
    padding: 5.5rem 0;
}

.section-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-intro .section-subtitle {
    margin-bottom: 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    animation: fadeUp 0.8s ease backwards;
    animation-delay: var(--delay);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 122, 89, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 122, 89, 0.12);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* App Preview & Carousel */
.app-preview {
    padding: 5.5rem 0 6.5rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(250, 245, 240, 0.85));
}

.carousel-container {
    position: relative;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phones-viewport {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
}

.phones-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.phone-item {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.screen-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

/* Phone Mockup Styling */
.phone-mockup {
    width: 310px;
    height: 640px;
    background: #0f172a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 4px solid #374151;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 25px;
    background: #0f172a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 20;
}

.phone-screen {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 2.5rem 1.25rem 1.25rem;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.screen-gray {
    background: var(--surface-alt);
}

/* Carousel Buttons */
.carousel-btn {
    flex: 0 0 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.2s;
    z-index: 10;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

.dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* App Components */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.greeting {
    font-weight: 700;
    font-size: 1.25rem;
}

.date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.app-card {
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

.amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0.5rem 0;
}

.subtext {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.action-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 0.875rem;
    border: none;
}

.action-btn.primary {
    background: var(--primary);
    color: white;
}

.action-btn.secondary {
    background: var(--surface-alt);
    color: var(--text-main);
}

/* Internal Screen Components */
.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.screen-title {
    font-size: 1.25rem;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tabs {
    display: flex;
    background: var(--surface-alt);
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.tab.active {
    background: white;
    color: var(--text-main);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.booking-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
}

.booking-date {
    background: rgba(255, 122, 89, 0.12);
    color: var(--primary-dark);
    padding: 8px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.booking-date .day {
    font-size: 1.125rem;
    font-weight: 700;
}

.booking-date .month {
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 600;
}

.booking-info h4 {
    font-size: 0.9375rem;
    margin-bottom: 2px;
}

.booking-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.status-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
}

.status-badge.upcoming {
    background: rgba(94, 234, 212, 0.25);
    color: var(--secondary-dark);
}

.status-badge.pending {
    background: rgba(255, 186, 146, 0.4);
    color: var(--primary-dark);
}

.status-badge.paid {
    background: rgba(94, 234, 212, 0.25);
    color: var(--secondary-dark);
}

.search-bar {
    position: relative;
    margin-bottom: 1.25rem;
}

.search-bar svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar input {
    width: 100%;
    padding: 10px 10px 10px 36px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 0.875rem;
    outline: none;
}

.client-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.client-avatar.nike {
    background: var(--primary-dark);
}

.client-avatar.vogue {
    background: var(--secondary);
}

.client-avatar.zara {
    background: #1f2937;
}

.client-info h4 {
    font-size: 0.9375rem;
}

.client-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.balance-card h2 {
    font-size: 1.75rem;
    margin-top: 4px;
}

.inv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.amount-small {
    font-weight: 700;
}

.pending-text {
    color: var(--text-main);
}

.paid-text {
    color: var(--secondary);
}

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

.inv-footer .date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.profile-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    margin: 0 auto 12px;
    overflow: hidden;
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.125rem;
}

.stat span {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.menu-item:hover {
    background: var(--surface-alt);
}

.menu-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.menu-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 122, 89, 0.12);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.submit-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.02);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    min-height: 1.25rem;
    font-size: 0.9375rem;
    color: #e2e8f0;
}

.form-message.success {
    color: #a7f3d0;
}

.form-message.error {
    color: #fecaca;
}

/* Thank You Page */
.thanks-hero {
    padding: 6rem 0 6.5rem;
}

.thanks-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    padding: 3rem clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.early-access {
    padding: 5.5rem 0 6rem;
}

.early-card {
    max-width: 960px;
}

.early-badge {
    background: rgba(255, 122, 89, 0.18);
    color: var(--primary-dark);
}

.thanks-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(94, 234, 212, 0.2);
    color: var(--secondary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.thanks-card h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
}

.thanks-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.thanks-form {
    margin: 2rem 0;
    text-align: left;
}

.thanks-form.is-locked {
    opacity: 0.75;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.form-field input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thanks-form .submit-btn {
    background: var(--primary);
}

.thanks-form .submit-btn:hover {
    background: var(--primary-dark);
}

.thanks-form .form-message {
    color: var(--text-muted);
}

.thanks-form .form-message.success {
    color: var(--secondary-dark);
}

.thanks-form .form-message.error {
    color: #b91c1c;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 200;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1;
    width: min(90vw, 480px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.25s ease;
}

.modal.is-open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    background: rgba(94, 234, 212, 0.22);
    color: var(--secondary-dark);
}

.modal.is-error .modal-icon {
    background: rgba(255, 122, 89, 0.2);
    color: var(--primary-dark);
}

.modal-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.ghost-btn {
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ghost-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

footer {
    background: rgba(255, 255, 255, 0.85);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 5.5rem 0 4.5rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

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

    .hero-visual {
        order: 2;
        justify-self: center;
    }

    .card-secondary,
    .card-tertiary {
        transform: none;
    }

    .thanks-form .submit-btn {
        width: 100%;
        border-radius: 12px;
    }

    .phones-wrapper {
        padding-left: 20px;
        transform: none !important;
        gap: 1.5rem;
    }

    .carousel-btn {
        display: none;
    }

    .phones-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .phone-item {
        scroll-snap-align: center;
    }

    .carousel-dots {
        display: none;
    }

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

    .form-actions {
        justify-content: center;
    }
}
