/* ===================================================
   WoofBook Sales Site — Premium, Apple-esque
   =================================================== */

:root {
    --terracotta: #9e3a22;
    --terracotta-light: #b75434;
    --terracotta-dark: #7f2c18;
    --terracotta-bg: rgba(158, 58, 34, 0.08);
    --cream: #F5EDE4;
    --cream-dark: #EDE2D4;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'DM Sans', 'Inter', -apple-system, sans-serif;

    --max-width: 1200px;
    --section-padding: 72px;
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---- Reset & Base ---- */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 3px;
    border-radius: 4px;
}

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

/* ---- Animations ---- */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--terracotta-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(169, 62, 35, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--gray-400);
    transform: translateY(-1px);
}

.btn-large {
    font-size: 1.1rem;
    padding: 18px 44px;
}

/* ---- Navigation ---- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h, 80px);
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
    transform-origin: left center;
}

.nav-logo-img {
    height: var(--logo-h, 44px);
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--gray-900);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-login {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    background: none;
    border: none;
    padding: 8px 4px;
    cursor: pointer;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-login:hover {
    color: var(--gray-900);
}

.nav-login--mobile {
    display: none;
}

.nav-cta--desktop {
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--terracotta);
    padding: 8px 22px;
    border-radius: 50px;
    transition: background var(--transition);
    white-space: nowrap;
}

.nav-cta--desktop:hover {
    background: var(--terracotta-light);
}

.nav-cta--mobile {
    display: none;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */

.hero {
    padding: 140px 40px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: var(--terracotta-bg);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-500);
    max-width: 680px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Screenshots ---- */

.screenshot-wrapper {
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 40px 80px rgba(0, 0, 0, 0.03);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-wrapper:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 24px 68px rgba(0, 0, 0, 0.08),
        0 48px 90px rgba(0, 0, 0, 0.04);
}

.screenshot {
    width: 100%;
    height: auto;
    display: block;
}

video.screenshot[data-screenshot="dashboard"] {
    aspect-ratio: 1280 / 1138;
}

/* ---- Testimonial ---- */

.testimonial-section {
    padding: var(--section-padding) 40px;
    max-width: 860px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 500;
    line-height: 1.6;
    color: var(--gray-800);
    letter-spacing: -0.01em;
    margin-bottom: 40px;
}


.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 12px;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ---- Feature Sections ---- */

.feature-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--section-padding) 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.feature-section--reversed {
    direction: rtl;
}

.feature-section--reversed > * {
    direction: ltr;
}

.feature-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 32px;
    text-wrap: pretty;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    font-size: 0.95rem;
    color: var(--gray-600);
    padding-left: 28px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    opacity: 0.6;
}

/* ---- Screenshot Duo ---- */

.screenshot-duo {
    position: relative;
}

.screenshot-duo > .screenshot-wrapper:first-child {
    position: relative;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.34, 1.45, 0.64, 1),
                box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-duo > .screenshot-wrapper:first-child:hover {
    transform: translate(-14px, -6px) rotate(-1.2deg) scale(1.04);
    z-index: 4;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 30px 80px rgba(0, 0, 0, 0.14),
        0 60px 120px rgba(0, 0, 0, 0.08);
}

.screenshot-duo:has(> .screenshot-wrapper:first-child:hover) .screenshot-wrapper--small {
    transform: translate(18px, 10px) rotate(4deg);
}

.screenshot-duo .screenshot-wrapper--small,
.screenshot-duo .screenshot-wrapper--zoom {
    position: absolute;
    bottom: -24px;
    right: -24px;
    z-index: 2;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.screenshot-duo .screenshot-wrapper--small {
    width: 260px;
    transform-origin: bottom right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-duo .screenshot-wrapper--small:hover {
    transform: scale(1.25);
    z-index: 3;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.18),
        0 30px 80px rgba(0, 0, 0, 0.12);
}

.screenshot-duo .screenshot-wrapper--zoom {
    width: 300px;
    cursor: zoom-in;
    transform-origin: bottom right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-duo .screenshot-wrapper--zoom:hover {
    transform: scale(1.7);
    z-index: 3;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.18),
        0 30px 80px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .screenshot-duo .screenshot-wrapper--small,
    .screenshot-duo .screenshot-wrapper--zoom {
        bottom: -16px;
        right: -8px;
    }

    .screenshot-duo .screenshot-wrapper--small {
        width: 170px;
    }

    .screenshot-duo .screenshot-wrapper--zoom {
        width: 190px;
    }

    .screenshot-duo .screenshot-wrapper--zoom:hover {
        transform: scale(1.5);
    }
}

/* ---- Everything Section ---- */

.everything-section {
    padding: var(--section-padding) 40px;
    background: var(--off-white);
}

.everything-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.everything-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.everything-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
}

.everything-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.everything-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}

.everything-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}


.everything-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.everything-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-500);
}

.coming-soon-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--terracotta);
    background: var(--terracotta-bg);
    padding: 3px 10px;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: 6px;
}

/* ---- Pricing Section ---- */

.pricing-section {
    padding: var(--section-padding) 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.pricing-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pricing-trial {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 10px 20px;
    background: var(--terracotta-bg);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-700);
    max-width: 100%;
    text-wrap: pretty;
}

.pricing-trial strong {
    color: var(--terracotta-dark);
    font-weight: 700;
}

.pricing-trial svg {
    width: 16px;
    height: 16px;
    color: var(--terracotta);
    flex-shrink: 0;
}

/* Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    cursor: pointer;
    transition: color var(--transition);
}

.toggle-label--active {
    color: var(--gray-900);
}

.toggle-save {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--terracotta);
    background: var(--terracotta-bg);
    padding: 2px 8px;
    border-radius: 50px;
}

.toggle-switch {
    width: 48px;
    height: 28px;
    background: var(--gray-200);
    border: none;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
}

.toggle-switch.active {
    background: var(--terracotta);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(20px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.pricing-card--popular {
    border: 2px solid var(--terracotta);
    box-shadow: 0 8px 40px rgba(169, 62, 35, 0.1);
}

.pricing-card--popular:hover {
    box-shadow: 0 12px 48px rgba(169, 62, 35, 0.15);
    border-color: var(--terracotta);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 24px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.plan-audience {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.pricing-card-price {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    transition: all 0.3s ease;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.price-annual-note {
    display: block;
    font-size: 0.8rem;
    color: var(--terracotta);
    font-weight: 500;
    margin-bottom: 24px;
    min-height: 1.2em;
}

.btn-plan {
    width: 100%;
    margin-bottom: 32px;
}

.plan-features {
    border-top: 1px solid var(--gray-100);
    padding-top: 24px;
}

.plan-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 12px;
    margin-top: 20px;
}

.plan-category:first-child {
    margin-top: 0;
}

.plan-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.plan-features li {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding-left: 22px;
    position: relative;
    line-height: 1.4;
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A93E23' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.plan-highlight {
    background: rgba(169, 62, 35, 0.05);
    border-radius: 10px;
    padding: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 16px 0;
}

.plan-highlight strong {
    color: var(--terracotta);
}

/* Pricing Extras */
.pricing-disclosure {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.55;
}

.pricing-disclosure a {
    color: var(--terracotta);
    font-weight: 600;
}

.pricing-disclosure a:hover {
    color: var(--terracotta-dark);
}

/* ---- CTA Section ---- */

.cta-section {
    padding: var(--section-padding) 40px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 32px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.cta-actions {
    margin-bottom: 16px;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ---- Footer ---- */

.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 40px 40px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 32px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
    .feature-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-section--reversed {
        direction: ltr;
    }

    .feature-screenshot {
        order: -1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
    }

    .nav-inner {
        height: 64px !important;
    }

    .nav-logo-img {
        height: 30px !important;
    }

    .nav-links {
        transform: none;
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        height: calc(100dvh - 64px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--gray-800);
    }

    .nav-actions .nav-login--desktop,
    .nav-cta--desktop {
        display: none;
    }

    .nav-actions {
        gap: 0;
    }

    .nav-login--mobile {
        display: inline-flex;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--gray-800);
        padding: 0;
        margin-top: 8px;
    }

    .nav-cta--mobile {
        display: inline-flex;
        font-size: 1rem;
        font-weight: 600;
        color: var(--white);
        background: var(--terracotta);
        padding: 14px 36px;
        border-radius: 50px;
        margin-top: 8px;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 24px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .testimonial-section,
    .feature-section,
    .everything-section,
    .cta-section,
    .pricing-section,
    .care-section {
        padding: var(--section-padding) 24px;
    }

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

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .legal-page {
        padding: 120px 20px 80px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 20px 28px;
    }
}

/* ---- Guest Care System intro + shared card base ---- */

.care-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding) 40px 0;
}

.care-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.care-header .feature-description {
    margin-bottom: 0;
}

/* ---- Feature Carousel (Guest Care, Overnight Operations) ---- */

.care-carousel-section {
    padding: 40px 0 var(--section-padding);
    overflow: hidden;
}

.care-carousel-wrapper {
    position: relative;
}

.care-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px max(40px, calc((100vw - 1120px) / 2)) 40px;
}

.care-carousel::-webkit-scrollbar {
    display: none;
}

.care-slide {
    flex: 0 0 min(1120px, calc(100vw - 120px));
    scroll-snap-align: center;
    background: var(--off-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 56px;
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 56px;
    align-items: center;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.03),
        0 20px 60px rgba(0, 0, 0, 0.05);
}

.care-slide-content {
    display: flex;
    flex-direction: column;
}

.care-slide-content .feature-label {
    margin-bottom: 16px;
}

.care-slide-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.8vw, 2.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.care-slide-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 24px;
    text-wrap: pretty;
}

/* Arrow buttons */

.care-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 12px 40px rgba(0, 0, 0, 0.08);
    transition: background var(--transition),
                transform var(--transition),
                opacity var(--transition);
}

.care-carousel-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.care-carousel-arrow[disabled] {
    opacity: 0;
    pointer-events: none;
}

.care-carousel-arrow svg {
    width: 22px;
    height: 22px;
    color: var(--gray-800);
}

.care-carousel-arrow--prev {
    left: max(20px, calc((100vw - 1120px) / 2 - 26px));
}

.care-carousel-arrow--next {
    right: max(20px, calc((100vw - 1120px) / 2 - 26px));
}

/* Pagination dots */

.care-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.care-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: var(--gray-200);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition),
                transform var(--transition),
                width var(--transition);
}

.care-dot:hover {
    background: var(--gray-400);
}

.care-dot--active {
    background: var(--terracotta);
    width: 28px;
    border-radius: 50px;
}

/* Responsive */

@media (max-width: 1024px) {
    .care-slide {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px;
    }

    .care-carousel {
        padding: 20px 24px 40px;
    }

    .care-slide {
        flex: 0 0 calc(100vw - 48px);
    }

    .care-carousel-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .care-slide {
        padding: 32px 24px;
    }
}

/* ---- Legal pages (Privacy, Terms) ---- */

.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 160px 24px 100px;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.75;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.legal-page .legal-updated {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-page p {
    margin-bottom: 18px;
}

.legal-page ul {
    margin: 0 0 20px 22px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page a:hover {
    color: var(--terracotta-dark);
}

.stripe-wordmark {
    height: 44px;
    width: auto;
    margin: 4px 0 24px;
}
