:root {
    --bg: #08111d;
    --text: #f4f1ea;
    --muted: rgba(244, 241, 234, 0.72);
    --border: rgba(244, 241, 234, 0.16);
    --pill: rgba(255, 255, 255, 0.08);
    --pill-hover: rgba(255, 255, 255, 0.14);
    --accent: #FF4925;
    --shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    --font-brand: "Milker", "Bebas Neue", sans-serif;
    --font-body: "Montserrat", sans-serif;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    font-family: var(--font-body);
    background: linear-gradient(180deg, #070d16 0%, #050a12 100%);
}

body.menu-open {
    overflow: hidden;
}

.landing,
.about-section,
.portfolio-section,
.stats-section,
.pricing-section,
.faq-section,
.insights-section,
.work-section,
.help-section,
.testimonial-section,
.cta-section {
    min-height: calc(100vh - var(--header-height));
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(8, 17, 29, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
    padding: 1rem clamp(1rem, 3vw, 2.4rem);
}

.brand {
    font-family: var(--font-brand);
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-status {
    grid-column: 2;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    white-space: nowrap;
}

.nav-status .hero-availability {
    padding: 0.32rem 0.62rem;
    font-size: 0.66rem;
}

.nav-status .hero-counter {
    padding: 0.28rem 0.58rem;
    font-size: 0.78rem;
}

.nav-actions {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
    grid-column: 3;
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--pill);
    padding: 0;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: var(--pill-hover);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.menu-toggle span {
    display: block;
    width: 1rem;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--text);
}

.talk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 3rem;
    padding: 0 2.2rem 0 1.1rem;
    border: 1px solid rgba(255, 73, 37, 0.45);
    border-radius: 999px;
    background: rgba(255, 73, 37, 0.12);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.talk-button:hover,
.talk-button:focus-visible {
    background: rgba(255, 73, 37, 0.22);
    border-color: rgba(255, 73, 37, 0.72);
    transform: translateY(-1px);
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    width: min(640px, 100vw);
    height: 100dvh;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(170deg, rgba(5, 10, 18, 0.98) 0%, rgba(9, 20, 35, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: -14px 0 34px rgba(0, 0, 0, 0.4);
    transform: translateX(102%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 280ms ease, opacity 220ms ease, visibility 0s linear 280ms;
    overflow-y: auto;
}

.navbar.is-open .menu {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 280ms ease, opacity 220ms ease, visibility 0s linear 0s;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    pointer-events: none;
    background: rgba(2, 5, 10, 0.55);
    opacity: 0;
    transition: opacity 260ms ease;
}

.navbar.is-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.menu-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.2rem, 2.8vw, 2rem);
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(1.8rem, 4vw, 3.8rem);
}

.menu-label {
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.menu-dot {
    width: 0.55rem;
    height: 0.55rem;
    background: var(--accent);
}

.menu-close {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.menu-close:hover,
.menu-close:focus-visible {
    border-color: rgba(255, 73, 37, 0.85);
    background: rgba(255, 73, 37, 0.14);
}

.menu-links {
    display: grid;
    gap: 0.2rem;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: clamp(0.6rem, 2vw, 1rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    font-size: clamp(2rem, 6.5vw, 4.4rem);
    font-weight: 800;
    font-family: var(--font-brand);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: color 200ms ease;
}

.menu-item::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 260ms ease;
}

.menu-item:hover,
.menu-item:focus-visible {
    color: rgba(244, 241, 234, 0.82);
}

.menu-item:hover::before,
.menu-item:focus-visible::before {
    width: 100%;
}

.menu-item.is-active::after {
    content: "";
    width: 0.56rem;
    height: 0.56rem;
    margin-left: 0.55rem;
    margin-top: 0.45rem;
    background: var(--accent);
}

.menu-contact {
    margin-top: auto;
    padding-top: clamp(1.8rem, 5vw, 3rem);
    padding-bottom: clamp(1.2rem, 4vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 73, 37, 0.06) 0%, rgba(255, 73, 37, 0.02) 100%);
}

.menu-section-label {
    display: block;
    margin-bottom: 0.62rem;
    color: rgba(244, 241, 234, 0.52);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.menu-email-link {
    display: block;
    margin-bottom: 1.8rem;
    color: var(--accent);
    font-size: clamp(1.1rem, 3.4vw, 2rem);
    font-weight: 700;
    transition: opacity 160ms ease;
}

.menu-email-link:hover,
.menu-email-link:focus-visible {
    opacity: 0.8;
}

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

.menu-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: clamp(0.82rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(244, 241, 234, 0.85);
    transition: transform 170ms ease, color 170ms ease;
}

.menu-social-link:hover,
.menu-social-link:focus-visible {
    color: var(--text);
    transform: translateX(3px);
}

.menu-arrow {
    color: rgba(244, 241, 234, 0.5);
}


.page-shell {
    width: 100%;
    margin: 0 auto;
    /* Adjust this first value to move the hero section up or down. */
    padding: clamp(2.2rem, 7vw, 4.5rem) clamp(1rem, 5vw, 4.2rem) 3rem;
}

.landing {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    padding-bottom: 6.2rem;
    background:
        linear-gradient(180deg, rgba(5, 9, 16, 0.72) 0%, rgba(5, 9, 16, 0.84) 100%),
        radial-gradient(circle at top left, rgba(255, 73, 37, 0.16), transparent 34%),
        radial-gradient(circle at top right, rgba(122, 167, 255, 0.14), transparent 28%),
        url("../images/pexels-tara-winstead-8386369.jpg") center / cover no-repeat;
}

.hero {
    max-width: 64rem;
    padding-top: 3rem;
}

.hero-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    width: min(33rem, 100%);
    margin: 0 0 0.95rem;
}

.hero-availability {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(244, 241, 234, 0.86);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero-availability-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #3fe27a;
    box-shadow: 0 0 0.65rem rgba(63, 226, 122, 0.7);
    animation: availability-blink 1200ms ease-in-out infinite;
}

.hero-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.68rem;
    border: 1px solid rgba(255, 73, 37, 0.4);
    border-radius: 999px;
    background: rgba(255, 73, 37, 0.08);
    color: var(--accent);
    font-family: var(--font-brand);
    font-size: 0.92rem;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes availability-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(0.86);
    }
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    max-width: 11ch;
}

.hero-caption {
    margin: 1rem 0 0;
    max-width: 40ch;
    color: var(--muted);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 2.9rem;
    padding: 0 2.25rem 0 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.hero-btn:hover,
.hero-btn:focus-visible {
    transform: translateY(-1px);
}

.btn-label {
    display: inline-block;
    transform: translateX(0);
    transition: transform 220ms ease;
}

.btn-icon {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translate(8px, -50%);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
    pointer-events: none;
}

.talk-button:hover .btn-label,
.talk-button:focus-visible .btn-label,
.hero-btn:hover .btn-label,
.hero-btn:focus-visible .btn-label {
    transform: translateX(-0.45rem);
}

.talk-button:hover .btn-icon,
.talk-button:focus-visible .btn-icon,
.hero-btn:hover .btn-icon,
.hero-btn:focus-visible .btn-icon {
    opacity: 1;
    transform: translate(0, -50%);
}

.hero-btn-primary {
    color: #111;
    background: var(--accent);
    border-color: rgba(255, 73, 37, 0.8);
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
    background: #ffd88c;
}

.hero-btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.about-section {
    position: relative;
    z-index: 4;
    width: 100%;
    margin: 0;
    padding: clamp(3.3rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7.2rem);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 73, 37, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(7, 15, 25, 0.99) 0%, rgba(6, 13, 22, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: clamp(1.6rem, 4vw, 2.4rem);
    text-align: center;
}

.about-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.8rem, 10vw, 9.2rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.about-tag {
    margin: 0;
    color: rgba(244, 241, 234, 0.52);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-reveal {
    margin: 0 auto;
    max-width: 60rem;
    padding: 0;
    border: none;
    background: transparent;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.8;
    color: rgba(244, 241, 234, 0.82);
    text-align: center;
}

.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.55em);
    filter: blur(3px);
    transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
    transition-delay: var(--word-delay, 0ms);
}

.about-reveal.is-visible .reveal-word {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.portfolio-section {
    width: 100%;
    padding: clamp(3.3rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7.2rem);
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 73, 37, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(6, 13, 22, 0.99) 0%, rgba(7, 15, 25, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
    position: relative;
}

.portfolio-tag {
    margin: 0 0 1rem;
    color: rgba(244, 241, 234, 0.52);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1rem, 4vw, 2.5rem);
    margin-bottom: clamp(1.6rem, 4vw, 2.8rem);
}

.portfolio-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.8rem, 10vw, 9.2rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.portfolio-subtitle {
    margin: 0.65rem 0 0;
    max-width: 34rem;
    color: rgba(244, 241, 234, 0.68);
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
    line-height: 1.58;
}

.portfolio-note {
    margin: 0;
    padding-bottom: 0.4rem;
    color: rgba(244, 241, 234, 0.48);
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 15rem;
}

.projects-container {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.project-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.2rem, 3vw, 2rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 240ms ease, background-color 240ms ease;
    cursor: pointer;
    position: relative;
}

.project-thumb {
    display: none;
}

.project-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.85rem;
}

.project-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.project-row:last-of-type {
    border-bottom: none;
}

.project-row:hover {
    color: rgba(244, 241, 234, 0.68);
    background: rgba(255, 255, 255, 0.02);
}

.project-name {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.6rem, 7vw, 6rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.project-meta {
    color: rgba(244, 241, 234, 0.48);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.portfolio-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 18.75rem;
    height: 23.75rem;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 240ms ease, transform 240ms ease;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-follower.is-visible {
    opacity: 1;
    transform: scale(1);
}

.cursor-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.35rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.cursor-badge {
    position: absolute;
    width: 5rem;
    height: 5rem;
    background: #4f46e5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 60;
}

.stats-section {
    width: 100%;
    padding: clamp(3.2rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7rem);
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 73, 37, 0.13), transparent 40%),
        linear-gradient(180deg, rgba(6, 13, 22, 0.99) 0%, rgba(5, 10, 18, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
}

.stats-tag {
    margin: 0 0 1rem;
    color: rgba(244, 241, 234, 0.55);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.stats-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1rem, 4vw, 2.8rem);
    margin-bottom: clamp(1.8rem, 4vw, 3.4rem);
}

.stats-title {
    margin: 0;
    max-width: 9ch;
    font-size: clamp(2.2rem, 9vw, 7.5rem);
    line-height: 0.88;
    font-family: var(--font-brand);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.stats-subtext {
    margin: 0;
    max-width: 26ch;
    color: var(--muted);
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    line-height: 1.55;
    text-align: right;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.stat-card {
    padding: clamp(1.2rem, 3vw, 2.2rem) clamp(0.8rem, 2vw, 1.4rem);
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.01);
    transition: background-color 240ms ease;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.stat-number {
    margin: 0 0 1.15rem;
    color: var(--text);
    font-family: var(--font-brand);
    font-size: clamp(2.3rem, 7.4vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: flex-end;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    font-variant-numeric: tabular-nums;
}

.stat-number::after {
    content: attr(data-suffix);
    color: var(--accent);
    margin-left: 0.08em;
}

.stat-label {
    margin: 0;
    color: rgba(244, 241, 234, 0.74);
    font-size: clamp(0.88rem, 1.7vw, 1.02rem);
    line-height: 1.5;
    text-transform: capitalize;
}

.pricing-section {
    width: 100%;
    padding: clamp(3.3rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7.2rem);
    background:
        radial-gradient(circle at 78% 8%, rgba(255, 73, 37, 0.09), transparent 42%),
        linear-gradient(180deg, rgba(7, 15, 25, 0.99) 0%, rgba(6, 13, 22, 1) 100%);
    /* Divider at the top edge of the Pricing section. */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1.9fr);
    gap: calc(clamp(1.25rem, 3.6vw, 2.8rem) + 0.5in);
    align-items: start;
}

.pricing-intro {
    min-height: clamp(34rem, 56vw, 40rem);
    display: flex;
    flex-direction: column;
    padding-right: clamp(0.8rem, 2vw, 1.6rem);
    min-width: 0;
}

.pricing-header {
    display: grid;
    gap: 0.6rem;
}

.pricing-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 8.6vw, 7rem);
    line-height: 0.84;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.pricing-subtitle {
    margin: 0.8rem 0 0;
    max-width: 40ch;
    color: rgba(244, 241, 234, 0.68);
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
    line-height: 1.58;
}

.pricing-tag {
    margin: 0;
    color: rgba(244, 241, 234, 0.52);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pricing-toggle {
    margin-top: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    width: min(100%, 18.5rem);
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.pricing-toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: rgba(244, 241, 234, 0.66);
    border-radius: 999px;
    padding: 0.58rem 0.7rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.pricing-toggle-btn span {
    color: var(--accent);
}

.pricing-toggle-btn.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.14);
}

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

.pricing-cards-pane {
    min-width: 0;
    overflow: hidden;
}

.pricing-custom-zone {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    gap: 0.9rem;
    align-content: start;
    padding-right: clamp(0.8rem, 2vw, 1.6rem);
}

@media (max-width: 1100px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .pricing-intro {
        min-height: auto;
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.2rem;
    }

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

    .pricing-custom-zone {
        grid-column: auto;
        grid-row: auto;
        padding-right: 0;
    }

    .pricing-card {
        min-height: 24rem;
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: clamp(34rem, 56vw, 40rem);
    padding: clamp(1.2rem, 2.2vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 220ms ease, background-color 220ms ease;
}

.pricing-card:hover {
    border-color: rgba(255, 73, 37, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-card.is-popular {
    border-color: rgba(255, 73, 37, 0.95);
}

.pricing-badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-card-title {
    margin: 0;
    font-size: clamp(1.5rem, 3.4vw, 2.1rem);
    line-height: 1;
}

.pricing-card-subtitle {
    margin: 0.5rem 0 1.4rem;
    color: rgba(244, 241, 234, 0.58);
    font-size: 0.92rem;
    line-height: 1.55;
}

.pricing-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.62rem;
}

.pricing-features li {
    display: flex;
    gap: 0.56rem;
    align-items: baseline;
    color: rgba(244, 241, 234, 0.76);
    font-size: 0.92rem;
    line-height: 1.45;
}

.pricing-features span {
    color: var(--accent);
    font-weight: 700;
}

.pricing-price {
    margin: 1.6rem 0 1.2rem;
    display: inline-flex;
    align-items: baseline;
    color: var(--text);
    font-family: var(--font-brand);
    font-size: clamp(2.4rem, 7vw, 4.4rem);
    line-height: 0.9;
}

.pricing-currency {
    margin-right: 0.05em;
    font-size: 0.48em;
}

.pricing-period {
    margin-left: 0.2em;
    color: rgba(244, 241, 234, 0.6);
    font-family: var(--font-body);
    font-size: 0.36em;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 73, 37, 0.45);
    background: rgba(255, 73, 37, 0.1);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
    background: rgba(255, 73, 37, 0.24);
    border-color: rgba(255, 73, 37, 0.78);
}

.pricing-custom-card {
    display: none;
    min-height: auto;
    margin-top: 0;
    padding: 1rem;
}

.pricing-custom-card.is-visible {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-custom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.2rem;
}

.pricing-cta-secondary {
    width: 100%;
    min-width: 0;
}

.pricing-custom-toggle-wrap {
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    padding-top: 0;
    width: min(100%, 18.5rem);
}

.pricing-custom-toggle {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-radius: 999px;
    padding: 0.85rem 1.65rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.pricing-custom-toggle:hover,
.pricing-custom-toggle:focus-visible {
    border-color: rgba(255, 73, 37, 0.74);
    background: rgba(255, 73, 37, 0.12);
}

.faq-section {
    width: 100%;
    padding: clamp(3.3rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7.2rem);
    background:
        radial-gradient(circle at 22% 8%, rgba(255, 73, 37, 0.09), transparent 42%),
        linear-gradient(180deg, rgba(7, 15, 25, 0.99) 0%, rgba(6, 13, 22, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1.9fr);
    gap: calc(clamp(1.25rem, 3.6vw, 2.8rem) + 0.5in);
    align-items: start;
}

.faq-intro {
    min-height: clamp(26rem, 52vw, 32rem);
    display: flex;
    flex-direction: column;
    padding-right: clamp(0.8rem, 2vw, 1.6rem);
    min-width: 0;
}

.faq-header {
    display: grid;
    gap: 0.6rem;
}

.faq-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 8.6vw, 7rem);
    line-height: 0.84;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.faq-subtitle {
    margin: 0.8rem 0 0;
    max-width: 40ch;
    color: rgba(244, 241, 234, 0.68);
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
    line-height: 1.58;
}

.faq-tag {
    margin: 0;
    color: rgba(244, 241, 234, 0.52);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.faq-panel-pane {
    min-width: 0;
    overflow: hidden;
}

.faq-items {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 260ms ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question-button {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.1rem;
    padding: clamp(1.2rem, 2.6vw, 2rem) 0;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.faq-question-text {
    flex: 1;
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    line-height: 1.3;
    color: rgba(244, 241, 234, 0.78);
    font-weight: 600;
    transition: color 220ms ease;
}

.faq-item:hover .faq-question-text,
.faq-item.is-open .faq-question-text {
    color: var(--text);
}

.faq-question-button::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
    flex-shrink: 0;
    transition: transform 260ms ease;
}

.faq-question-button[aria-expanded="true"]::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 360ms ease, opacity 260ms ease, padding 260ms ease;
}

.faq-item.is-open .faq-answer {
    max-height: 20rem;
    opacity: 1;
    padding: 0 0 clamp(1.2rem, 3vw, 2rem);
}

.faq-answer p {
    margin: 0;
    color: rgba(244, 241, 234, 0.72);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.65;
    max-width: 52ch;
}

@media (max-width: 1100px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .faq-intro {
        min-height: auto;
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.2rem;
    }
}

@media (max-width: 768px) {
    .faq-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .faq-question-text {
        font-size: clamp(1rem, 2.8vw, 1.25rem);
    }
}

.insights-section {
    width: 100%;
    padding: clamp(3.3rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7.2rem);
    background:
        radial-gradient(circle at 78% 88%, rgba(255, 73, 37, 0.09), transparent 42%),
        linear-gradient(180deg, rgba(6, 13, 22, 0.99) 0%, rgba(7, 15, 25, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.insights-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
}

.insights-header {
    display: grid;
    gap: 0.6rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.insights-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 11vw, 8rem);
    line-height: 0.84;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.insights-subtitle {
    margin: 0;
    max-width: 50ch;
    color: rgba(244, 241, 234, 0.68);
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
    line-height: 1.58;
}

.insights-tag {
    margin: 0;
    color: rgba(244, 241, 234, 0.52);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.insight-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.insight-card:hover {
    border-color: rgba(255, 73, 37, 0.5);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.insight-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insight-card-image {
    width: 100%;
    height: clamp(12rem, 20vw, 16rem);
    flex-shrink: 0;
}

.insight-card-featured .insight-card-image {
    height: clamp(14rem, 28vw, 22rem);
}

.insight-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1.2rem, 2.2vw, 2rem);
    flex: 1;
}

.insight-card-meta {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.insight-card-category {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 73, 37, 0.15);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.insight-card-date {
    color: rgba(244, 241, 234, 0.52);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.insight-card-title {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.3;
    font-weight: 700;
}

.insight-card-excerpt {
    margin: 0;
    color: rgba(244, 241, 234, 0.68);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.insight-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: gap 200ms ease, opacity 200ms ease;
}

.insight-card-link:hover {
    opacity: 0.8;
    gap: 0.6rem;
}

@media (max-width: 1100px) {
    .insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insight-card-featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .insights-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .insight-card-featured {
        grid-column: span 1;
    }

    .insight-card-image {
        height: clamp(10rem, 18vw, 14rem);
    }

    .insight-card-featured .insight-card-image {
        height: clamp(12rem, 20vw, 16rem);
    }
}

.work-section {
    width: 100%;
    padding: clamp(3.3rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7.2rem);
    background:
        radial-gradient(circle at 14% 92%, rgba(255, 73, 37, 0.09), transparent 42%),
        linear-gradient(180deg, rgba(6, 13, 22, 0.99) 0%, rgba(7, 15, 25, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.work-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
}

.work-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
}

.work-eyebrow {
    margin: 0 0 0.85rem;
    color: rgba(244, 241, 234, 0.48);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.work-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.8rem, 10vw, 9.2rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.work-title span {
    color: #e03020;
}

.work-note {
    max-width: 19rem;
    margin: 0;
    color: rgba(244, 241, 234, 0.44);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.75;
    padding-bottom: 0.45rem;
}

.work-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.work-card {
    min-height: clamp(26rem, 42vw, 34rem);
    padding: clamp(1.6rem, 2.3vw, 2.25rem) clamp(1.2rem, 2.2vw, 2rem) clamp(1.6rem, 2.5vw, 2.4rem);
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 17, 29, 0.98);
    transition: background-color 240ms ease, transform 240ms ease;
    position: relative;
    overflow: hidden;
}

.work-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.work-card:hover {
    transform: translateY(-2px);
}

.work-card:hover::after {
    opacity: 1;
}

.work-card > * {
    position: relative;
    z-index: 1;
}

.work-step-num {
    margin-bottom: clamp(2.2rem, 5vw, 4.8rem);
    font-family: var(--font-brand);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: rgba(244, 241, 234, 0.45);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.work-step-num::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e03020;
}

.work-step-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1.1rem;
    opacity: 0.58;
    color: rgba(244, 241, 234, 0.82);
    transition: opacity 300ms ease;
}

.work-card:hover .work-step-icon {
    opacity: 0.92;
}

.work-card-content {
    margin-top: 0;
}

.work-card-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(1.6rem, 3.1vw, 2.2rem);
    line-height: 1;
    text-transform: none;
    letter-spacing: 0.01em;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.work-card-desc {
    margin: 0;
    color: rgba(244, 241, 234, 0.48);
    font-size: clamp(0.84rem, 1.25vw, 0.95rem);
    line-height: 1.72;
    font-weight: 400;
    flex: 1;
    transition: color 280ms ease;
}

.work-card:hover .work-card-desc {
    color: rgba(244, 241, 234, 0.68);
}

.work-step-bar {
    margin-top: 1.8rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.work-step-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #e03020;
    transition: width 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:nth-child(1) .work-step-bar-fill {
    width: 25%;
}

.work-card:nth-child(2) .work-step-bar-fill {
    width: 50%;
}

.work-card:nth-child(3) .work-step-bar-fill {
    width: 75%;
}

.work-card:nth-child(4) .work-step-bar-fill {
    width: 100%;
}

.work-card:hover .work-step-bar-fill {
    width: 100%;
}

.help-section {
    width: 100%;
    padding: clamp(3.3rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7.2rem);
    background:
        radial-gradient(circle at 84% 14%, rgba(255, 73, 37, 0.09), transparent 42%),
        linear-gradient(180deg, rgba(7, 15, 25, 0.99) 0%, rgba(6, 13, 22, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.help-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
}

.help-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(1rem, 4vw, 3rem);
    margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.help-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 11vw, 8rem);
    line-height: 0.84;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.help-tag {
    margin: 0.5rem 0 0;
    color: rgba(244, 241, 234, 0.52);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.help-service-row {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 260ms ease;
}

.help-service-row:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.help-service-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.help-service-trigger {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.1rem;
    padding: clamp(1.2rem, 2.6vw, 2rem) 0;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.help-service-number {
    font-family: var(--font-brand);
    font-size: clamp(1.6rem, 4vw, 3rem);
    line-height: 0.9;
    color: rgba(244, 241, 234, 0.24);
    flex-shrink: 0;
}

.help-service-number span {
    color: var(--accent);
    margin-left: 0.08em;
}

.help-service-name {
    flex: 1;
    font-family: var(--font-brand);
    font-size: clamp(1.5rem, 5vw, 3.1rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.6);
    transition: color 220ms ease;
}

.help-service-row:hover .help-service-name,
.help-service-row.is-open .help-service-name {
    color: var(--text);
}

.help-service-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 360ms ease, opacity 260ms ease, padding 260ms ease;
}

.help-service-row:hover .help-service-panel,
.help-service-row.is-open .help-service-panel {
    max-height: 34rem;
    opacity: 1;
    padding: 0 0 clamp(1.2rem, 3vw, 2rem);
}

@media (hover: none) and (pointer: coarse) {
    .help-service-row:hover {
        background: transparent;
    }

    .help-service-row:hover .help-service-name {
        color: rgba(244, 241, 234, 0.6);
    }

    .help-service-row:hover .help-service-panel {
        max-height: 0;
        opacity: 0;
        padding: 0;
    }

    .help-service-row.is-open {
        background: rgba(255, 255, 255, 0.02);
    }

    .help-service-row.is-open .help-service-name {
        color: var(--text);
    }

    .help-service-row.is-open .help-service-panel {
        max-height: 52rem;
        opacity: 1;
        padding: 0 0 clamp(1.2rem, 3vw, 2rem);
    }
}

.help-service-image {
    width: 100%;
    height: clamp(13rem, 26vw, 20rem);
    object-fit: cover;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.help-service-copy h3 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.35rem, 3.4vw, 2.4rem);
    line-height: 1;
}

.help-service-copy p {
    margin: 0 0 1.1rem;
    color: rgba(244, 241, 234, 0.74);
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
    line-height: 1.62;
    max-width: 44ch;
}

.help-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.help-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.86rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(244, 241, 234, 0.68);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.brand-core-section {
    width: 100%;
    padding: clamp(3.3rem, 7vw, 6.2rem) 0 clamp(4.8rem, 10vw, 7.2rem);
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 73, 37, 0.09), transparent 42%),
        linear-gradient(180deg, rgba(6, 13, 22, 0.99) 0%, rgba(7, 15, 25, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-core-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
}

.brand-core-header {
    text-align: center;
    margin-bottom: clamp(1.8rem, 5vw, 3.8rem);
}

.brand-core-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 9vw, 6rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.brand-core-subtitle {
    margin: 0.9rem auto 0;
    max-width: 36rem;
    color: rgba(244, 241, 234, 0.68);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
}

.brand-core-card-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0.5rem 0 0;
}

.brand-core-card {
    position: relative;
    width: min(22rem, 100%);
    min-height: clamp(18rem, 36vw, 25rem);
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(160deg, #111b2a 0%, #08111d 100%),
        radial-gradient(circle at 0% 0%, rgba(255, 73, 37, 0.12), transparent 48%);
    box-shadow: -16px 0 44px rgba(0, 0, 0, 0.42);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
                border-color 220ms ease,
                box-shadow 300ms ease,
                opacity 220ms ease,
                filter 220ms ease,
                margin 300ms ease;
}

.brand-core-card:not(:first-child) {
    margin-left: -7rem;
}

.brand-core-card:hover {
    transform: translateY(-0.8rem) scale(1.01);
    z-index: 20 !important;
    border-color: rgba(255, 73, 37, 0.75);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.55);
    margin-right: 1.2rem;
}

.brand-core-card-container:hover .brand-core-card:not(:hover) {
    opacity: 1;
    filter: grayscale(0.4) blur(1.5px);
    transform: scale(0.96);
}

.brand-core-card-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-brand);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    color: rgba(244, 241, 234, 0.16);
}

.brand-core-card-content {
    position: relative;
    z-index: 2;
}

.brand-core-card-content h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-brand);
    font-size: clamp(1.4rem, 3.2vw, 2.15rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.brand-core-card-content p {
    margin: 0;
    color: rgba(244, 241, 234, 0.7);
    font-size: clamp(0.92rem, 1.6vw, 1.02rem);
    line-height: 1.62;
    max-width: 34ch;
}

.testimonial-section {
    width: 100%;
    padding: clamp(3.4rem, 7vw, 6.4rem) 0 clamp(4.8rem, 10vw, 7rem);
    background:
        radial-gradient(circle at 92% 10%, rgba(255, 73, 37, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(7, 14, 24, 0.99) 0%, rgba(5, 10, 18, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-content-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.testimonial-copy {
    min-height: clamp(18rem, 36vw, 28rem);
}

.testimonial-tag {
    margin: 0 0 0.65rem;
    color: rgba(244, 241, 234, 0.55);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.testimonial-quote-mark {
    color: var(--accent);
    font-family: var(--font-brand);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
}

.testimonial-carousel {
    position: relative;
    min-height: clamp(18rem, 34vw, 26rem);
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.testimonial-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.testimonial-quote {
    margin: 0 0 2rem;
    max-width: 22ch;
    color: var(--text);
    font-size: clamp(1.55rem, 4.2vw, 3.2rem);
    line-height: 1.08;
    font-weight: 700;
}

.testimonial-quote span {
    color: rgba(244, 241, 234, 0.5);
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-author-image {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.75rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial-author-details h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-author-details p {
    margin: 0.12rem 0 0;
    color: rgba(244, 241, 234, 0.58);
    font-size: 0.83rem;
}

.testimonial-mockup {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.5rem;
    padding: clamp(0.9rem, 2vw, 1.4rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(8, 17, 29, 0.88) 100%),
        radial-gradient(circle at 35% 30%, rgba(255, 73, 37, 0.12), transparent 55%);
    overflow: hidden;
}

.testimonial-laptop {
    display: block;
    width: 100%;
    transform: rotate(-5deg) translateY(0.6rem);
    filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.45));
    transition: transform 320ms ease;
}

.testimonial-mockup:hover .testimonial-laptop {
    transform: rotate(-2deg) translateY(0);
}

.bottom-scroll {
    position: absolute;
    left: clamp(1rem, 5vw, 4.2rem);
    bottom: 1.25rem;
    /* Change this width if you want the ticker shorter or longer. */
    width: min(5in, calc(100vw - clamp(2rem, 10vw, 8.4rem)));
    overflow: hidden;
    border-radius: 999px;
    padding: 0.55rem 0;
    background: rgba(7, 13, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.floating-counter {
    position: absolute;
    right: clamp(1rem, 5vw, 4.2rem);
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(255, 73, 37, 0.45);
    border-radius: 999px;
    background: rgba(7, 13, 22, 0.62);
    color: var(--accent);
    font-family: var(--font-brand);
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.floating-sprint-button {
    position: absolute;
    right: clamp(1rem, 5vw, 4.2rem);
    bottom: calc(1.5in + 0.2rem);
    width: 7.25rem;
    height: 7.25rem;
    border: 1px solid rgba(255, 73, 37, 0.5);
    border-radius: 50%;
    background: rgba(7, 13, 22, 0.7);
    color: var(--text);
    display: grid;
    place-items: center;
    padding: 0.8rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.floating-sprint-button:hover,
.floating-sprint-button:focus-visible {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 73, 37, 0.88);
    background: rgba(255, 73, 37, 0.12);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.floating-sprint-label {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 0.8rem;
    text-align: center;
    font-family: var(--font-brand);
    font-size: 0.82rem;
    line-height: 1.05;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 220ms ease, transform 220ms ease;
}

.floating-sprint-label-default {
    opacity: 1;
    transform: translateY(0);
}

.floating-sprint-label-hover {
    opacity: 0;
    transform: translateY(0.25rem);
    color: var(--accent);
}

.floating-sprint-button:hover .floating-sprint-label-default,
.floating-sprint-button:focus-visible .floating-sprint-label-default {
    opacity: 0;
    transform: translateY(-0.25rem);
}

.floating-sprint-button:hover .floating-sprint-label-hover,
.floating-sprint-button:focus-visible .floating-sprint-label-hover {
    opacity: 1;
    transform: translateY(0);
}

.bottom-scroll-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: bottom-scroll-move 16s linear infinite;
}

.bottom-scroll-item {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.74);
    white-space: nowrap;
}

@keyframes bottom-scroll-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-shell {
        padding: clamp(2.6rem, 10vw, 3.8rem) 0.85rem 1rem;
    }

    .landing {
        padding-bottom: 8.2rem;
    }

    .hero {
        width: 100%;
        max-width: none;
        padding-top: 0.4rem;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.3rem, 12vw, 4.2rem);
        line-height: 0.95;
    }

    .hero-caption {
        max-width: none;
        width: 100%;
    }

    .hero-status-row {
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 0.8rem;
    }

    .brand {
        font-size: clamp(1.15rem, 5.2vw, 1.45rem);
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .nav-status {
        justify-self: start;
        gap: 0.36rem;
    }

    .nav-status .hero-availability {
        font-size: 0.6rem;
        padding: 0.28rem 0.52rem;
    }

    .nav-status .hero-counter {
        font-size: 0.72rem;
        padding: 0.24rem 0.48rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .talk-button {
        display: none;
    }

    .menu {
        width: 100vw;
    }

    .menu-item {
        font-size: clamp(1.8rem, 12vw, 3.2rem);
    }

    .menu-social-grid {
        grid-template-columns: 1fr;
    }

    .bottom-scroll {
        left: 0.8rem;
        bottom: 0.8rem;
        width: min(4in, calc(100vw - 1.6rem));
    }

    .floating-counter {
        right: 0.8rem;
        bottom: 3.3rem;
        font-size: 0.85rem;
    }

    .floating-sprint-button {
        right: 0.8rem;
        bottom: 5.95rem;
        width: 6.2rem;
        height: 6.2rem;
    }

    .floating-sprint-label {
        font-size: 0.72rem;
    }

    .about-section {
        margin: 0;
        padding: 2.6rem 0 4.8rem;
    }

    .about-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .about-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.2rem;
    }

    .about-tag {
        margin-top: 0;
    }

    .about-title,
    .about-reveal {
        max-width: none;
    }

    .about-header {
        align-items: center;
        text-align: center;
    }

    .portfolio-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.2rem;
    }

    .portfolio-note {
        max-width: none;
        padding-bottom: 0;
    }

    .project-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .project-thumb {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.04);
    }

    .project-details {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .project-meta {
        white-space: normal;
    }

    .cursor-follower {
        display: none;
    }

    .stats-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .stats-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-subtext {
        max-width: none;
        text-align: left;
    }

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

    .pricing-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .pricing-intro {
        min-height: auto;
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.2rem;
    }

    .pricing-tag {
        margin-top: 0;
    }

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

    .pricing-card {
        min-height: auto;
        gap: 0.9rem;
    }

    .pricing-badge {
        position: static;
        display: inline-flex;
        align-self: flex-start;
        margin-bottom: 0.35rem;
    }

    .pricing-custom-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-custom-toggle-wrap {
        margin-top: 0.2rem;
        width: 100%;
    }

    .pricing-cta-secondary {
        width: 100%;
    }

    .work-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.2rem;
    }

    .work-note {
        max-width: none;
        padding-bottom: 0;
    }

    .work-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-card {
        min-height: 22rem;
    }

    .help-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .help-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.2rem;
    }

    .help-tag {
        margin-top: 0;
    }

    .help-service-trigger {
        align-items: center;
    }

    .help-service-name {
        font-size: clamp(1.25rem, 7.6vw, 2.1rem);
        line-height: 1.02;
    }

    .help-service-panel {
        grid-template-columns: 1fr;
    }

    .help-service-row:hover .help-service-panel,
    .help-service-row.is-open .help-service-panel {
        max-height: 52rem;
    }

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

    .brand-core-content {
        width: calc(100% - 1.7rem);
        padding: 0 0.85rem;
    }

    .brand-core-card-container {
        flex-direction: column;
        align-items: center;
        padding-top: 0;
    }

    .brand-core-card {
        width: min(28rem, 100%);
        min-height: 16rem;
        margin-left: 0 !important;
        margin-bottom: -5rem;
        box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.4);
    }

    .brand-core-card:hover {
        margin-right: 0;
        transform: translateY(-1.2rem);
    }

    .brand-core-card:last-child {
        margin-bottom: 0;
    }

    .stat-card:nth-child(2n) {
        border-right: none;
    }

    .testimonial-content-wrap {
        padding: 0 0.85rem;
        grid-template-columns: 1fr;
    }

    .testimonial-carousel {
        min-height: 22rem;
    }

    .testimonial-quote {
        max-width: none;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .faq-intro {
        min-height: auto;
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.2rem;
    }

    .faq-question-text {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
}

@media (max-width: 520px) {
    .pricing-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .pricing-toggle-btn {
        flex: 1;
        padding-inline: 0.6rem;
    }

    .work-track {
        grid-template-columns: 1fr;
    }

    .brand-core-card {
        margin-bottom: -3.8rem;
    }

    .work-card {
        min-height: 20rem;
    }

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

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .faq-question-button::after {
        display: none;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

.cta-section {
    width: 100%;
    padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(2.4rem, 5vw, 4rem);
    background:
        radial-gradient(circle at 30% 12%, rgba(255, 73, 37, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(7, 14, 24, 0.99) 0%, rgba(5, 10, 18, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4.2rem);
    display: flex;
    flex-direction: column;
}

.cta-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: flex-start;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.cta-title {
    margin: 0;
    font-family: "Montserrat", var(--font-body);
    font-size: clamp(2.8rem, 13vw, 8rem);
    line-height: 0.88;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text);
}

.cta-info {
    max-width: 480px;
    margin-top: clamp(1rem, 2vw, 2rem);
}

.cta-text {
    margin: 0 0 1.6rem;
    color: rgba(244, 241, 234, 0.75);
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    line-height: 1.65;
    font-weight: 400;
}

.email-btn-group {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.2vw, 0.95rem) clamp(2rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 73, 37, 0.5);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 180ms ease;
}

.email-btn:hover {
    background: rgba(255, 73, 37, 0.15);
    border-color: rgba(255, 73, 37, 0.85);
}

.arrow-circle {
    width: clamp(2.4rem, 4vw, 3rem);
    height: clamp(2.4rem, 4vw, 3rem);
    background: rgba(255, 73, 37, 0.12);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 260ms ease;
    border: 1px solid rgba(255, 73, 37, 0.3);
}

.arrow-circle:hover {
    background: rgba(255, 73, 37, 0.25);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.social-links-above {
    display: flex;
    gap: clamp(1.5rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link-item {
    font-size: clamp(0.75rem, 1.4vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 260ms ease;
    letter-spacing: 0.05em;
}

.social-link-item:hover {
    color: var(--accent);
    gap: 0.8rem;
}

.social-link-item svg {
    width: 1rem;
    height: 1rem;
}

.divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    width: 100%;
    margin: 2rem 0;
}

.footer-bottom {
    padding-top: 1.2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.brand-name {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
}

.copyright-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    justify-self: end;
}

.legal-text {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    color: rgba(244, 241, 234, 0.52);
    font-weight: 500;
}

@media (max-width: 1100px) {
    .cta-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-title {
        font-size: clamp(2.2rem, 14vw, 5rem);
    }

    .footer-bottom {
        grid-template-columns: auto;
        gap: 1.2rem;
    }

    .copyright-group {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    }

    .cta-content {
        padding: 0 0.85rem;
        width: calc(100% - 1.7rem);
    }

    .cta-info {
        max-width: 100%;
    }

    .social-links-above {
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .floating-counter {
        font-size: 0.78rem;
        padding: 0.32rem 0.62rem;
        bottom: 3.1rem;
    }

    .floating-sprint-button {
        bottom: 5.55rem;
        width: 5.8rem;
        height: 5.8rem;
    }

    .floating-sprint-label {
        font-size: 0.66rem;
    }

    .nav-status .hero-availability span:last-child {
        display: none;
    }

    .cta-title {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .email-btn-group {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .social-links-above {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Extra-small devices (compact phones) */
@media (max-width: 360px) {
    .nav-status {
        display: none;
    }

    .landing {
        padding-bottom: 10.5rem;
    }

    .navbar {
        padding: 0.75rem 0.7rem;
    }

    .menu-toggle {
        width: 2.65rem;
        height: 2.65rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 11vw, 2.4rem);
    }

    .hero-caption {
        font-size: 0.9rem;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .floating-counter {
        bottom: 3rem;
    }

    .floating-sprint-button {
        bottom: 6rem;
        width: 5.25rem;
        height: 5.25rem;
    }

    .floating-sprint-label {
        font-size: 0.6rem;
    }

    .pricing-title,
    .help-title,
    .about-title,
    .portfolio-title,
    .stats-title {
        font-size: clamp(1.9rem, 12vw, 2.7rem);
    }

    .pricing-toggle-btn {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

    .pricing-card-title {
        font-size: clamp(1.2rem, 6.8vw, 1.45rem);
    }

    .pricing-features li {
        font-size: 0.84rem;
    }

    .pricing-price {
        font-size: clamp(1.6rem, 10vw, 2.3rem);
    }

    .brand-core-card {
        min-height: 14rem;
        padding: 1rem;
        margin-bottom: -2.7rem;
    }

    .brand-core-card-content h3 {
        font-size: clamp(1.05rem, 7vw, 1.35rem);
    }

    .brand-core-card-content p {
        font-size: 0.84rem;
    }
}

/* Watch-like widths and very constrained UIs */
@media (max-width: 280px) {
    .bottom-scroll,
    .floating-counter,
    .floating-sprint-button,
    .cursor-follower,
    .testimonial-visual,
    .portfolio-note {
        display: none;
    }

    .page-shell,
    .about-content,
    .portfolio-content,
    .stats-content,
    .help-content,
    .brand-core-content,
    .work-content,
    .pricing-content,
    .faq-content,
    .insights-content,
    .testimonial-content-wrap,
    .cta-content {
        width: 100%;
        padding-left: 0.55rem;
        padding-right: 0.55rem;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 12vw, 1.9rem);
        line-height: 1;
    }

    .menu-item {
        font-size: clamp(1.15rem, 11vw, 1.6rem);
    }

    .stat-number {
        font-size: clamp(1.6rem, 12vw, 2.2rem);
    }

    .faq-question-text {
        font-size: 0.92rem;
    }

    .pricing-badge {
        font-size: 0.64rem;
    }
}

/* Short viewport heights (landscape phones / compact wearables) */
@media (max-height: 520px) {
    .landing,
    .about-section,
    .portfolio-section,
    .stats-section,
    .pricing-section,
    .faq-section,
    .insights-section,
    .work-section,
    .help-section,
    .testimonial-section,
    .cta-section {
        min-height: auto;
    }

    .menu {
        overflow-y: auto;
    }
}

/* Ultra-wide desktop */
@media (min-width: 1920px) {
    .navbar,
    .page-shell,
    .about-content,
    .portfolio-content,
    .stats-content,
    .help-content,
    .brand-core-content,
    .work-content,
    .pricing-content,
    .faq-content,
    .insights-content,
    .testimonial-content-wrap,
    .cta-content {
        max-width: 112rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: clamp(5rem, 8vw, 8rem);
    }
}

/* TV and large displays */
@media (min-width: 2560px) {
    body {
        font-size: 18px;
    }

    .navbar,
    .page-shell,
    .about-content,
    .portfolio-content,
    .stats-content,
    .help-content,
    .brand-core-content,
    .work-content,
    .pricing-content,
    .faq-content,
    .insights-content,
    .testimonial-content-wrap,
    .cta-content {
        max-width: 132rem;
    }

    .menu-item {
        font-size: clamp(3rem, 5vw, 5rem);
    }

    .pricing-card {
        min-height: clamp(34rem, 30vw, 46rem);
    }
}

/* 4K+ displays */
@media (min-width: 3840px) {
    body {
        font-size: 20px;
    }

    .navbar,
    .page-shell,
    .about-content,
    .portfolio-content,
    .stats-content,
    .help-content,
    .brand-core-content,
    .work-content,
    .pricing-content,
    .faq-content,
    .insights-content,
    .testimonial-content-wrap,
    .cta-content {
        max-width: 148rem;
    }
}