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

:root {
    --black: #0A0A0A;
    --dark: #1C1C1C;
    --warm-white: #F7F4EF;
    --white: #FFFFFF;
    --muted: #888888;
    --border: #E8E3DC;
    --accent: #22D07A;
    --accent-dim: rgba(34, 208, 122, 0.12);
    --serif: 'Inter', -apple-system, sans-serif;
    --sans: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

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

/* ─── NAVIGATION ───────────────────────────────────── */
#main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 56px;
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

#main-nav.nav-solid {
    padding: 16px 56px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
    transition: color 0.35s;
}

#main-nav.nav-solid .nav-logo {
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.2px;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: #fff;
}

#main-nav.nav-solid .nav-links a {
    color: var(--muted);
}

#main-nav.nav-solid .nav-links a:hover {
    color: var(--dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-login {
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s;
}

.nav-login:hover {
    color: #fff;
}

#main-nav.nav-solid .nav-login {
    color: var(--muted);
}

#main-nav.nav-solid .nav-login:hover {
    color: var(--dark);
}

.nav-btn {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: #fff;
    color: var(--dark);
    transition: background 0.25s, color 0.25s;
}

.nav-btn:hover {
    background: #eee;
}

#main-nav.nav-solid .nav-btn {
    background: var(--dark);
    color: #fff;
}

#main-nav.nav-solid .nav-btn:hover {
    background: #333;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 130px 48px 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    will-change: transform;
}

.hero-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 80%, rgba(34, 208, 122, 0.07) 0%, transparent 100%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
}

/* ── eyebrow ── */
.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-eyebrow.show {
    opacity: 1;
    transform: none;
}

/* ── headline ── */
.hero-h1 {
    font-family: var(--sans);
    font-size: clamp(42px, 8.5vw, 50px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 30px;
}

.hero-h1 .word-line {
    display: block;
    overflow: hidden;
}

.hero-h1 .word-inner {
    display: block;
    transform: translateY(105%);
    transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-h1 .word-inner.show {
    transform: translateY(0);
}

.hero-h1 em {
    font-style: italic;
    color: var(--accent);
}

/* ── sub ── */
.hero-sub {
    font-size: 16.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto 44px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.75s ease 0.65s, transform 0.75s ease 0.65s;
}

.hero-sub.show {
    opacity: 1;
    transform: none;
}

/* ── CTA row ── */
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 72px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.75s ease 0.85s, transform 0.75s ease 0.85s;
}

.hero-ctas.show {
    opacity: 1;
    transform: none;
}

.btn-solid {
    display: inline-block;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: #fff;
    color: var(--dark);
    transition: background 0.25s, transform 0.2s;
}

.btn-solid:hover {
    background: #f0ede8;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    padding: 15px 36px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.75);
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    transform: translateY(-1px);
}

/* ─── HERO BROWSER MOCKUP ────────────────────────── */
.hero-mockup-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1060px;
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 1s ease 1.05s, transform 1s ease 1.05s;
}

.hero-mockup-wrap.show {
    opacity: 1;
    transform: translateY(0);
}

.browser {
    background: #181818;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 48px 100px rgba(0, 0, 0, 0.85),
        0 12px 30px rgba(0, 0, 0, 0.6);
}

.browser-chrome {
    background: #222222;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.b-dots {
    display: flex;
    gap: 6px;
}

.b-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.b-dot:nth-child(1) {
    background: #FF5F57;
}

.b-dot:nth-child(2) {
    background: #FEBC2E;
}

.b-dot:nth-child(3) {
    background: #28C840;
}

.b-url {
    flex: 1;
    background: #1A1A1A;
    border-radius: 5px;
    padding: 5px 14px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.32);
    text-align: center;
    letter-spacing: 0.2px;
}

.b-spacer {
    width: 60px;
}

/* ── inner fake site ── */
.b-site {
    width: 100%;
    aspect-ratio: 16 / 7.2;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0e0b1f 0%, #0d1929 55%, #071520 100%);
}

/* glow orbs */
.b-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
    pointer-events: none;
}

.b-orb-1 {
    width: 320px;
    height: 320px;
    background: rgba(110, 70, 200, 0.25);
    top: -80px;
    left: -60px;
}

.b-orb-2 {
    width: 240px;
    height: 240px;
    background: rgba(60, 110, 200, 0.18);
    bottom: -60px;
    right: 80px;
}

.b-orb-3 {
    width: 160px;
    height: 160px;
    background: rgba(196, 170, 135, 0.12);
    top: 30px;
    right: 200px;
}

/* fake site nav */
.b-nav {
    position: relative;
    z-index: 2;
    padding: 16px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.b-nav-logo {
    width: 74px;
    height: 10px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 3px;
}

.b-nav-links {
    display: flex;
    gap: 18px;
}

.b-nav-link {
    width: 34px;
    height: 7px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 3px;
}

.b-nav-cta {
    width: 66px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

/* fake site hero */
.b-hero-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 40px 20px;
    text-align: center;
    gap: 10px;
}

.b-tag {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.85;
}

.b-headline {
    font-family: var(--serif);
    font-size: clamp(14px, 2.8vw, 32px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.b-sub-bar {
    width: 180px;
    height: 7px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.b-sub-bar2 {
    width: 130px;
    height: 7px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 4px;
}

.b-buttons {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.b-btn-fill {
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 2px;
    font-size: 9.5px;
    font-weight: 600;
    color: #0e0b1f;
}

.b-btn-ghost {
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.65);
}

/* preview cards row */
.b-cards-row {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    padding: 0 36px;
    margin-top: 4px;
}

.b-card {
    flex: 1;
    border-radius: 4px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.b-card-inner {
    padding: 10px 12px;
}

.b-card-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 5px;
}

.b-card-line.w50 {
    width: 50%;
}

.b-card-line.w80 {
    width: 80%;
}

.b-card-accent {
    height: 4px;
    width: 28px;
    border-radius: 2px;
    background: var(--accent);
    opacity: 0.5;
}

/* ─── COROUSEL SECTION ─────────────────────────────────── */
.corousel-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* gap: 0.1rem; */
    width: 100vw;
    margin: 0rem 0rem 1.5rem 0rem;
    /* background-color: white; */
    justify-content: center;
}

.corousel-section .item{
    border-radius: 12px;
    min-height: 32rem;
    min-width: 45rem;
    /* background: white; */
    /* background: url("https://media-www.sqspcdn.com/images/pages/homepage-2025/grow-your-business/invoicing-desktop-2500w.webp"); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.corousel-section .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.corousel-section .left{
    /* background-image: url("https://media-www.sqspcdn.com/images/pages/homepage-2025/grow-your-business/invoicing-mobile-2500w.webp"); */
    transform: rotate(-3deg) scale(.85) translateY(3rem);
}

.corousel-section .item :nth-child(2){
    /* background-image: url("https://media-www.sqspcdn.com/images/pages/homepage-2025/grow-your-business/invoicing-mobile-2500w.webp"); */
}

.corousel-section .right{
    /* background-image: url("https://media-www.sqspcdn.com/images/pages/homepage-2025/grow-your-business/invoicing-tablet-2500w.webp"); */
    transform: rotate(3deg) scale(.85) translateY(3rem);
}

.corousel-section .left img,
.corousel-section .right img {
    filter: blur(3px);
    opacity: 0.75;
}

/* ─── LOGOS BAR ─────────────────────────────────── */
.logos-bar {
    background: var(--warm-white);
    padding: 52px 56px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    display: none;
}

.logos-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 32px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
}

.logo-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: #c8c4be;
    letter-spacing: -0.3px;
    cursor: default;
    transition: color 0.3s;
}

.logo-name:hover {
    color: var(--dark);
}

/* ─── SECTION SHARED ───────────────────────────── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-h2 {
    font-family: var(--sans);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--dark);
}

.section-sub {
    font-size: 15.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 14px;
}

/* ─── REVEAL ANIMATION ─────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: 0.1s;
}

.reveal.d2 {
    transition-delay: 0.2s;
}

.reveal.d3 {
    transition-delay: 0.3s;
}

/* ─── TEMPLATES ─────────────────────────────────── */
.templates-section {
    padding: 120px 0 100px;
    background: var(--warm-white);
    overflow: hidden;
}

.templates-section .bottom {
    margin-top: 2.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
}

.templates-head {
    padding: 0 80px;
    display: flex;
    /* flex-direction: column; */
    align-items: flex-end;
    /* text-align: center; */
    justify-content: space-between;
    margin-bottom: 56px;
    
}

.templates-head h2 {
    font-size: clamp(42px, 8.5vw, 50px);
}

.templates-head-text {
    max-width: 560px;
}

.templates-see-all {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--dark);
    padding-bottom: 2px;
    letter-spacing: 0.3px;
    transition: opacity 0.2s;
    white-space: nowrap;
    margin-bottom: 6px;
    max-height: 3.5rem;
}

.templates-see-all:hover {
    opacity: 0.55;
}

/* drag scroll */
.tmpl-track {
    display: flex;
    gap: 18px;
    padding: 0 80px 4px;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.tmpl-track::-webkit-scrollbar {
    display: none;
}

.tmpl-track.dragging {
    cursor: grabbing;
}

.tmpl-card {
    flex: 0 0 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tmpl-card:hover {
    transform: translateY(-10px);
}

.tmpl-preview {
    width: 100%;
    aspect-ratio: 3 / 4.1;
    position: relative;
    overflow: hidden;
}

.tmpl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    transition: background 0.3s;
}

.tmpl-card:hover .tmpl-overlay {
    background: rgba(0, 0, 0, 0.52);
}

.tmpl-meta {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
}

.tmpl-card:hover .tmpl-meta {
    opacity: 1;
    transform: none;
}

.tmpl-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px;
}

.tmpl-cat {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* ── individual template CSS art ── */

/* T1 – Aurora (dark purple) */
.t1 {
    background: linear-gradient(145deg, #110a28 0%, #1a0f3c 55%, #0e1a30 100%);
}

.t1-inner {
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.t1-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.t1-logo {
    width: 56px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.t1-links {
    display: flex;
    gap: 8px;
}

.t1-link {
    width: 24px;
    height: 7px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
}

.t1-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.t1-hl {
    font-family: var(--serif);
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.t1-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.13);
}

.t1-bar.short {
    width: 55%;
}

.t1-btn {
    margin-top: 8px;
    width: 70px;
    height: 24px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
}

.t1-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

/* T2 – Pale (light bluish) */
.t2 {
    background: linear-gradient(150deg, #eef2f8 0%, #dde5f0 100%);
}

.t2-inner {
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.t2-logo {
    width: 52px;
    height: 9px;
    background: rgba(40, 60, 100, 0.3);
    border-radius: 2px;
}

.t2-nbtn {
    width: 60px;
    height: 24px;
    background: rgba(40, 60, 100, 0.18);
    border-radius: 2px;
}

.t2-img {
    flex: 1;
    background: linear-gradient(135deg, rgba(100, 130, 190, 0.18), rgba(160, 180, 220, 0.12));
    border-radius: 2px;
}

.t2-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.t2-hl {
    width: 80%;
    height: 10px;
    background: rgba(30, 50, 90, 0.2);
    border-radius: 2px;
}

.t2-s {
    width: 60%;
    height: 7px;
    background: rgba(30, 50, 90, 0.1);
    border-radius: 2px;
}

.t2-btn {
    width: 72px;
    height: 26px;
    background: rgba(30, 50, 90, 0.2);
    border-radius: 2px;
    margin-top: 2px;
}

/* T3 – Noctis (dark agency) */
.t3 {
    background: linear-gradient(155deg, #0f0f14 0%, #14151e 55%, #0c1020 100%);
}

.t3-inner {
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.t3-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.t3-logo {
    width: 44px;
    height: 8px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 2px;
}

.t3-nav-r {
    display: flex;
    gap: 8px;
    align-items: center;
}

.t3-nl {
    width: 22px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.t3-nc {
    width: 50px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2px;
}

.t3-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.t3-hl {
    font-family: var(--serif);
    font-size: clamp(16px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.t3-sub {
    width: 75%;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
}

.t3-sub2 {
    width: 55%;
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
}

.t3-action {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.t3-b1 {
    width: 66px;
    height: 24px;
    background: rgba(196, 170, 135, 0.7);
    border-radius: 2px;
}

.t3-b2 {
    width: 66px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.t3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 12px;
}

.t3-gitem {
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* T4 – Earthy (warm) */
.t4 {
    background: linear-gradient(155deg, #f8f1e7 0%, #ede2d0 100%);
}

.t4-inner {
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

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

.t4-logo {
    width: 56px;
    height: 10px;
    background: rgba(80, 55, 30, 0.28);
    border-radius: 2px;
}

.t4-nav-links {
    display: flex;
    gap: 6px;
}

.t4-nl {
    width: 22px;
    height: 7px;
    background: rgba(80, 55, 30, 0.15);
    border-radius: 2px;
}

.t4-img {
    flex: 1;
    background: linear-gradient(135deg, rgba(160, 120, 70, 0.18), rgba(200, 170, 110, 0.12));
    border-radius: 2px;
}

.t4-hl {
    width: 80%;
    height: 11px;
    background: rgba(60, 40, 18, 0.22);
    border-radius: 2px;
}

.t4-s {
    width: 60%;
    height: 7px;
    background: rgba(60, 40, 18, 0.12);
    border-radius: 2px;
}

.t4-btns {
    display: flex;
    gap: 7px;
}

.t4-b1 {
    width: 68px;
    height: 26px;
    background: rgba(60, 40, 18, 0.22);
    border-radius: 2px;
}

.t4-b2 {
    width: 68px;
    height: 26px;
    border: 1px solid rgba(60, 40, 18, 0.18);
    border-radius: 2px;
}

/* T5 – Grid (photo) */
.t5 {
    background: #101010;
}

.t5-inner {
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.t5-logo {
    width: 42px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.t5-menu {
    display: flex;
    gap: 5px;
}

.t5-ml {
    width: 16px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.t5-mosaic {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
}

.t5-cell {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

.t5-cell.tall {
    grid-row: span 2;
    background: rgba(255, 255, 255, 0.09);
}

.t5-footer-bar {
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.t5-fl {
    width: 30px;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

/* T6 – Linen (warm catalog) */
.t6 {
    background: linear-gradient(155deg, #f7f3ee 0%, #ede8e0 100%);
}

.t6-inner {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.t6-logo-c {
    width: 70px;
    height: 9px;
    background: rgba(70, 50, 28, 0.22);
    border-radius: 2px;
    margin: 4px 0;
}

.t6-divider {
    width: 100%;
    height: 1px;
    background: rgba(70, 50, 28, 0.1);
}

.t6-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    width: 100%;
}

.t6-gi {
    border-radius: 2px;
}

.t6-gi:nth-child(1) {
    background: rgba(140, 100, 55, 0.15);
}

.t6-gi:nth-child(2) {
    background: rgba(170, 130, 80, 0.18);
}

.t6-gi:nth-child(3) {
    background: rgba(110, 80, 40, 0.1);
}

.t6-gi:nth-child(4) {
    background: rgba(155, 115, 65, 0.14);
}

.t6-cta {
    width: 80px;
    height: 26px;
    border: 1px solid rgba(70, 50, 28, 0.25);
    border-radius: 2px;
}

/* ─── FEATURES GRID ──────────────────────────── */
.features-section {
    padding: 120px 80px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px 110px;
    max-width: 1080px;
    margin: 80px auto 0;
}

.feat-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.feat-item.show {
    opacity: 1;
    transform: none;
}

.feat-item:nth-child(2) {
    transition-delay: 0.1s;
}

.feat-item:nth-child(3) {
    transition-delay: 0.15s;
}

.feat-item:nth-child(4) {
    transition-delay: 0.25s;
}

.feat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.feat-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--dark);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feat-h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.4px;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.feat-p {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
}

.feat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--dark);
    margin-top: 16px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--dark);
    padding-bottom: 1px;
    transition: gap 0.2s, opacity 0.2s;
}

.feat-link:hover {
    gap: 9px;
    opacity: 0.65;
}

/* ─── SPLIT FEATURE ─────────────────────────── */
.split-feature {
    display: flex;
    min-height: 580px;
}

.sf-left {
    flex: 1;
    background: var(--dark);
    padding: 90px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sf-left .section-h2 {
    color: #fff;
}

.sf-left .section-sub {
    color: rgba(255, 255, 255, 0.48);
    max-width: 400px;
}

.sf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 2px;
    transition: gap 0.2s, color 0.2s;
}

.sf-link:hover {
    color: #fff;
    gap: 10px;
}

.sf-right {
    flex: 1;
    background: linear-gradient(145deg, #141420 0%, #131928 55%, #0d1520 100%);
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

/* editor mockup inside split */
.editor-mockup {
    position: absolute;
    inset: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.em-toolbar {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.em-tool {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}

.em-tool.active {
    background: rgba(255, 255, 255, 0.16);
}

.em-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 3px;
}

.em-spacer {
    flex: 1;
}

.em-publish {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 3px;
    font-size: 10.5px;
    font-weight: 600;
    color: #131928;
}

.em-canvas {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.em-el {
    position: absolute;
    border-radius: 2px;
}

.em-banner {
    top: 18px;
    left: 18px;
    right: 18px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
}

.em-img-block {
    top: 72px;
    left: 18px;
    width: 42%;
    height: 100px;
    background: linear-gradient(135deg, rgba(110, 70, 200, 0.25), rgba(80, 110, 200, 0.2));
}

.em-text-1 {
    top: 76px;
    left: calc(42% + 30px);
    right: 18px;
    height: 13px;
    background: rgba(255, 255, 255, 0.1);
}

.em-text-2 {
    top: 98px;
    left: calc(42% + 30px);
    right: 36px;
    height: 9px;
    background: rgba(255, 255, 255, 0.06);
}

.em-text-3 {
    top: 116px;
    left: calc(42% + 30px);
    right: 54px;
    height: 9px;
    background: rgba(255, 255, 255, 0.05);
}

.em-btn-mock {
    top: 140px;
    left: calc(42% + 30px);
    width: 62px;
    height: 22px;
    background: rgba(196, 170, 135, 0.45);
}

.em-row {
    top: 190px;
    left: 18px;
    right: 18px;
    height: 7px;
    background: rgba(255, 255, 255, 0.05);
}

/* selection handle */
.em-select {
    position: absolute;
    top: 68px;
    left: 14px;
    width: calc(42% + 8px);
    height: 112px;
    border: 2px solid rgba(80, 140, 255, 0.7);
    border-radius: 2px;
    pointer-events: none;
}

.em-handle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border: 1px solid rgba(80, 140, 255, 0.8);
}

.em-handle.tl {
    top: -4px;
    left: -4px;
}

.em-handle.tr {
    top: -4px;
    right: -4px;
}

.em-handle.bl {
    bottom: -4px;
    left: -4px;
}

.em-handle.br {
    bottom: -4px;
    right: -4px;
}

/* ─── STATS ─────────────────────────────────── */
.stats-section {
    padding: 100px 56px;
    background: var(--black);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 64px;
}

.stat-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    padding: 0 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item.show {
    opacity: 1;
    transform: none;
}

.stat-item:nth-child(2) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(4) {
    transition-delay: 0.3s;
}

.stat-num {
    font-family: var(--serif);
    font-size: clamp(46px, 5.5vw, 68px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -2.5px;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-num .accent {
    color: var(--accent);
}

.stat-lbl {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ─── PRICING ────────────────────────────────── */
.pricing-section {
    padding: 120px 56px;
    background: var(--warm-white);
}

.pricing-head {
    text-align: center;
    margin-bottom: 0;
}

.pricing-head .section-h2 {
    text-align: center;
}

.pricing-head .section-sub {
    text-align: center;
    max-width: 400px;
    margin: 14px auto 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 44px 0 60px;
}

.toggle-lbl {
    font-size: 13.5px;
    color: var(--muted);
}

.toggle-pill {
    width: 46px;
    height: 24px;
    background: var(--dark);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.toggle-nub {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-pill.on .toggle-nub {
    transform: translateX(22px);
}

.annual-badge {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

/* cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.p-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 44px 38px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.p-card.show {
    opacity: 1;
    transform: translateY(0);
}

.p-card:nth-child(2) {
    transition-delay: 0.1s;
}

.p-card:nth-child(3) {
    transition-delay: 0.2s;
}

.p-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.p-card.show:hover {
    transform: translateY(-5px);
}

.p-card.dark {
    background: var(--dark);
    border-color: var(--dark);
}

.p-pop-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--dark);
    padding: 4px 14px;
    white-space: nowrap;
}

.p-plan {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
}

.p-card.dark .p-plan {
    color: rgba(255, 255, 255, 0.45);
}

.p-price {
    font-family: var(--serif);
    font-size: 54px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 7px;
}

.p-price sup {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    vertical-align: super;
}

.p-card.dark .p-price {
    color: #fff;
}

.p-period {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 30px;
}

.p-card.dark .p-period {
    color: rgba(255, 255, 255, 0.38);
}

.p-div {
    height: 1px;
    background: var(--border);
    margin-bottom: 26px;
}

.p-card.dark .p-div {
    background: rgba(255, 255, 255, 0.1);
}

.p-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 36px;
}

.p-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--dark);
}

.p-card.dark .p-feat {
    color: rgba(255, 255, 255, 0.78);
}

.p-check {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.p-btn {
    display: block;
    width: 100%;
    padding: 13px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    border: 1px solid var(--dark);
    color: var(--dark);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.p-btn:hover {
    background: var(--dark);
    color: #fff;
}

.p-card.dark .p-btn {
    border-color: #fff;
    background: #fff;
    color: var(--dark);
}

.p-card.dark .p-btn:hover {
    background: rgba(255, 255, 255, 0.88);
}

/* ─── TESTIMONIALS ──────────────────────────── */
.testi-section {
    padding: 120px 56px;
    background: var(--white);
    overflow: hidden;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 64px auto 0;
}

.testi-card {
    padding: 40px 38px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.testi-card.show {
    opacity: 1;
    transform: none;
}

.testi-card:nth-child(2) {
    transition-delay: 0.12s;
}

.testi-card:nth-child(3) {
    transition-delay: 0.24s;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 22px;
}

.testi-star {
    width: 13px;
    height: 13px;
    fill: var(--accent);
}

.testi-q {
    font-family: var(--serif);
    font-size: 19px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
    color: var(--dark);
    margin-bottom: 28px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.testi-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
}

.testi-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* ─── FINAL CTA ─────────────────────────────── */
.cta-section {
    padding: 160px 56px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 65% at 50% 50%, rgba(196, 170, 135, 0.09) 0%, transparent 100%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -2.5px;
    color: #fff;
    margin-bottom: 22px;
}

.cta-h2 em {
    font-style: italic;
    color: var(--accent);
}

.cta-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.46);
    line-height: 1.8;
    margin-bottom: 48px;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.cta-note {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.26);
    margin-top: 22px;
    letter-spacing: 0.5px;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
    background: var(--dark);
    padding: 80px 80px 44px;
}

.foot-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 60px;
}

.foot-brand-logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.foot-brand-tag {
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    max-width: 230px;
}

.foot-col-title {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 18px;
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.foot-links a {
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.2s;
}

.foot-links a:hover {
    color: #fff;
}

.foot-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-copy {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.22);
}

.foot-legal {
    display: flex;
    gap: 22px;
}

.foot-legal a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.22);
    transition: color 0.2s;
}

.foot-legal a:hover {
    color: rgba(255, 255, 255, 0.55);
}

/* ─── GROW YOUR BUSINESS ────────────────────────── */
.grow-section {
    background: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.grow-header {
    max-width: 600px;
    margin: 0 auto 36px;
    padding: 0 56px;
}

.grow-h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.1;
}

.grow-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* Tabs */
.grow-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 44px;
    padding: 0 56px;
}

.grow-tab {
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 400;
    font-family: var(--sans);
    color: var(--muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.grow-tab:hover { color: var(--dark); }

.grow-tab.active {
    color: var(--dark);
    background: var(--warm-white);
    border-color: var(--border);
    font-weight: 500;
}

/* Carousel */
.grow-carousel-outer {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.grow-track {
    display: flex;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 20px 0 40px;
    /* initial offset so first card centers */
    align-items: center;
}

/* Cards */
.grow-card {
    flex: 0 0 72vw;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.65s ease,
                box-shadow 0.65s ease;
    opacity: 0.45;
    transform: scale(0.93);
    cursor: pointer;
}

.grow-card.grow-card-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}

.grow-card-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 64px 72px;
    min-height: 400px;
}

.grow-card-text {
    flex: 0 0 260px;
    text-align: left;
}

.grow-card-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.6px;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.25;
}

.grow-card-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.52);
    line-height: 1.75;
}

.grow-card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Services ── */
.gv-service-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px 22px;
    width: 280px;
}
.gv-svc-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gv-svc-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.gv-svc-info { flex: 1; }
.gv-svc-line {
    height: 7px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    margin-bottom: 6px;
}
.gv-svc-line.w80 { width: 80%; }
.gv-svc-line.w60 { width: 60%; }
.gv-svc-line.w50 { width: 50%; }
.gv-svc-line.w40 { width: 40%; }
.gv-svc-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

/* ── Store ── */
.gv-store-grid {
    display: flex;
    gap: 14px;
}
.gv-store-item { width: 88px; }
.gv-store-img {
    height: 88px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.gv-store-line {
    height: 7px;
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
    margin-bottom: 6px;
}
.gv-store-line.w70 { width: 70%; }
.gv-store-line.w55 { width: 55%; }
.gv-store-line.w65 { width: 65%; }
.gv-store-line.w45 { width: 45%; }
.gv-store-line.w35 { width: 35%; }
.gv-store-line.w40 { width: 40%; }

/* ── Invoice ── */
.gv-invoice {
    background: #f5f0e8;
    border-radius: 14px;
    padding: 22px 26px;
    width: 300px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    text-align: left;
}
.gv-invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}
.gv-invoice-logo {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3a2a18;
    line-height: 1.3;
    text-transform: uppercase;
}
.gv-invoice-logo span {
    display: block;
    font-weight: 400;
    letter-spacing: 1.2px;
    font-size: 8.5px;
}
.gv-invoice-num { font-size: 11px; color: #aaa; }
.gv-invoice-to {
    background: #fff;
    border-radius: 8px;
    padding: 10px 13px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.gv-invoice-label {
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 4px;
}
.gv-invoice-client { font-size: 12px; font-weight: 500; color: #222; }
.gv-invoice-email  { font-size: 10px; color: #aaa; margin-top: 2px; }
.gv-invoice-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    color: #3a2a18;
    font-style: italic;
}
.gv-invoice-amount { font-style: normal; font-weight: 600; margin-left: auto; }
.gv-invoice-badge {
    background: #2d7a2d; color: #fff; font-style: normal;
    font-size: 9.5px; font-weight: 600;
    padding: 2px 8px; border-radius: 100px;
}

/* ── Calendar ── */
.gv-calendar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px 22px;
    width: 260px;
    text-align: left;
}
.gv-cal-month { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.gv-cal-days { display: flex; gap: 8px; margin-bottom: 16px; }
.gv-cal-day {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: rgba(255,255,255,0.45);
}
.gv-cal-day.active { background: rgba(34,208,122,0.9); color: #fff; font-weight: 600; }
.gv-cal-slot {
    padding: 7px 11px; border-radius: 6px;
    font-size: 11.5px; color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.04); margin-bottom: 6px;
}
.gv-cal-slot.booked {
    background: rgba(34,208,122,0.14);
    color: rgba(255,255,255,0.8);
    border-left: 2px solid var(--accent);
}

/* ── Donations ── */
.gv-donate {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 22px 24px;
    width: 260px;
    text-align: left;
}
.gv-donate-label {
    font-size: 10px; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.gv-donate-amts { display: flex; gap: 8px; margin-bottom: 16px; }
.gv-donate-amt {
    padding: 7px 15px; border-radius: 100px;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.12); cursor: pointer;
}
.gv-donate-amt.sel { background: rgba(34,208,122,0.85); color: #fff; border-color: transparent; }
.gv-donate-btn {
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
    padding: 9px; text-align: center; border-radius: 8px;
    font-size: 13px; font-weight: 500;
}

/* ── Memberships ── */
.gv-member {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px; padding: 22px 24px;
    width: 240px; text-align: left;
}
.gv-member-badge {
    display: inline-block; padding: 3px 10px; border-radius: 100px;
    font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; background: rgba(34,208,122,0.22);
    color: var(--accent); margin-bottom: 14px;
}
.gv-member-name { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.gv-member-since { font-size: 11.5px; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.gv-member-status { font-size: 12px; font-weight: 500; color: #5bbb5b; }

/* ── Blog ── */
.gv-blog {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px; padding: 22px 24px;
    width: 260px; text-align: left;
}
.gv-blog-tag {
    font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
    display: block;
}
.gv-blog-bar { height: 10px; background: rgba(255,255,255,0.18); border-radius: 4px; margin-bottom: 8px; }
.gv-blog-bar.w70 { width: 70%; }
.gv-blog-bar.w50 { width: 50%; }
.gv-blog-meta { font-size: 10.5px; color: rgba(255,255,255,0.28); margin-top: 12px; }

/* ── Portfolio ── */
.gv-portfolio { display: flex; gap: 10px; height: 190px; }
.gv-pf-tall { flex: 0 0 130px; border-radius: 10px; }
.gv-pf-col { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.gv-pf-sm { flex: 1; border-radius: 10px; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE HAMBURGER NAV
═══════════════════════════════════════════════════════════════ */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease;
    transform-origin: center;
}

#main-nav.nav-solid .nav-hamburger span { background: var(--dark); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Drawer ── */
.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 1000;
    width: min(340px, 88vw);
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 100px 36px 40px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.mobile-nav-link {
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: -0.5px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-link:hover { color: var(--accent); padding-left: 6px; }
.mobile-nav-link:first-child { border-top: 1px solid var(--border); }

.mobile-nav-footer {
    padding-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-signin {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
}

.mobile-nav-cta {
    display: block;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: var(--dark);
    color: #fff;
    border-radius: 2px;
}

/* ── Overlay ── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0);
    pointer-events: none;
    transition: background 0.4s ease;
}

.mobile-overlay.open {
    background: rgba(0,0,0,0.45);
    pointer-events: auto;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* ═══════════════════════════════════════════════════════════════
   BREAKPOINT SYSTEM  (5 tiers, mobile-first)
   375  →  480  →  768  →  1024  →  1280+
═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────
   BASE: every style above already covers small phones.
   These overrides ADD capability as screens grow.
──────────────────────────────────────────────── */

/* ── 480px — large phones ── */
@media (min-width: 480px) {
    .hero-h1 { font-size: clamp(38px, 9vw, 56px); }

    .corousel-section .item {
        min-width: 36rem;
        min-height: 26rem;
    }

    .grow-card {
        flex: 0 0 84vw;
    }

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

/* ── 768px — tablets ── */
@media (min-width: 768px) {
    /* Nav */
    #main-nav { padding: 24px 44px; }
    #main-nav.nav-solid { padding: 14px 44px; }

    /* Hero */
    .hero { padding: 140px 44px 0; }
    .hero-h1 { font-size: clamp(44px, 7vw, 80px); letter-spacing: -3px; }

    /* Carousel items back to side-by-side */
    .corousel-section .item {
        min-width: 42rem;
        min-height: 30rem;
    }

    /* Templates */
    .templates-head { padding: 0 44px; flex-direction: row; align-items: flex-end; }
    .tmpl-track { padding: 0 44px 4px; }
    .tmpl-card { flex: 0 0 260px; }

    /* Features */
    .features-section { padding: 100px 44px; }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 52px 80px;
    }

    /* Split */
    .split-feature { flex-direction: row; }
    .sf-left { padding: 80px 52px; }
    .sf-right { min-height: 520px; }

    /* Stats */
    .stats-section { padding: 90px 44px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    /* Pricing */
    .pricing-section { padding: 100px 44px; }
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    /* Testimonials */
    .testi-section { padding: 100px 44px; }
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* CTA */
    .cta-section { padding: 130px 44px; }
    .cta-btns { flex-direction: row; }

    /* Grow */
    .grow-section { padding: 90px 0 72px; }
    .grow-card {
        flex: 0 0 78vw;
        max-width: 760px;
    }
    .grow-card-inner {
        flex-direction: row;
        gap: 44px;
        padding: 52px 56px;
        min-height: 380px;
    }
    .grow-card-text {
        flex: 0 0 220px;
        text-align: left;
    }

    /* Footer */
    footer { padding: 72px 44px 40px; }
    .foot-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
}

/* ── 1024px — laptops ── */
@media (min-width: 1024px) {
    /* Nav: show links, hide hamburger */
    .nav-links { display: flex; }
    .nav-hamburger { display: none; }
    .nav-login { display: block; }
    #main-nav { padding: 28px 56px; }
    #main-nav.nav-solid { padding: 16px 56px; }

    /* Hero */
    .hero { padding: 130px 56px 0; flex-direction: row; align-items: center; justify-content: center; text-align: center; flex-direction: column; }
    .hero-text { text-align: center; }

    /* Carousel */
    .corousel-section .item {
        min-width: 45rem;
        min-height: 32rem;
    }

    /* Features */
    .features-section { padding: 120px 80px; }

    /* Stats: back to 4-col */
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stats-section { padding: 100px 56px; }

    /* Pricing: 3-col */
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }

    /* Testimonials: 3-col */
    .testi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        max-width: 1100px;
    }

    /* Footer: full */
    footer { padding: 80px 80px 44px; }
    .foot-top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 44px; }

    /* Templates */
    .templates-head { padding: 0 80px; }
    .tmpl-track { padding: 0 80px 4px; }
    .tmpl-card { flex: 0 0 300px; }

    /* Split */
    .sf-left { padding: 90px 80px; }
    .sf-right { min-height: 580px; }

    /* Grow */
    .grow-card {
        flex: 0 0 72vw;
        max-width: 900px;
    }
    .grow-card-inner {
        gap: 56px;
        padding: 64px 72px;
        min-height: 400px;
    }
    .grow-card-text { flex: 0 0 260px; }
}

/* ── 1280px+ — large desktops ── */
@media (min-width: 1280px) {
    .hero-h1 { font-size: clamp(56px, 6vw, 88px); letter-spacing: -4px; }
    .features-grid { gap: 72px 110px; max-width: 1080px; }
    .cta-section { padding: 160px 56px; }
}


/* ═══════════════════════════════════════════════════════════════
   DOWNWARD OVERRIDES  (max-width, for components needing it)
═══════════════════════════════════════════════════════════════ */

/* ── Hide nav-login on small-tablet and below, show on laptop ── */
@media (max-width: 1023px) {
    .nav-login { display: none; }
    .nav-btn { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links { display: none; }
}

/* ── Very small phones: tighten everything ── */
@media (max-width: 374px) {
    .hero { padding: 100px 20px 0; }
    .hero-h1 { font-size: clamp(30px, 10vw, 40px); letter-spacing: -2px; }
    .btn-solid, .btn-outline { padding: 14px 22px; font-size: 13px; }
    .hero-ctas { gap: 10px; }
    .grow-card-inner { padding: 32px 20px; gap: 24px; }
    .mobile-drawer-inner { padding: 90px 24px 32px; }
    .mobile-nav-link { font-size: 18px; }
    footer { padding: 56px 20px 36px; }
    .features-section { padding: 72px 20px; }
    .stats-section { padding: 72px 20px; }
    .pricing-section { padding: 72px 20px; }
    .testi-section { padding: 72px 20px; }
    .cta-section { padding: 96px 20px; }
    .grow-section { padding: 64px 0 52px; }
}

/* ── Small phones (375–479): base mobile styles ── */
@media (max-width: 479px) {
    /* Nav */
    #main-nav { padding: 18px 20px; }
    #main-nav.nav-solid { padding: 14px 20px; }

    /* Hero */
    .hero { padding: 108px 20px 0; }
    .hero-h1 { font-size: clamp(32px, 10vw, 44px); letter-spacing: -2px; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
    .btn-solid, .btn-outline { padding: 16px 24px; text-align: center; display: block; }

    /* Carousel cards on mobile: single column  */
    .corousel-section {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 20px 20px;
    }
    .corousel-section .item {
        min-width: 0;
        width: 100%;
        min-height: 200px;
        transform: none !important;
    }
    .corousel-section .left img,
    .corousel-section .right img {
        filter: none;
        opacity: 1;
    }
    .corousel-section .left,
    .corousel-section .right { display: none; }

    /* Templates */
    .templates-head {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .tmpl-track { padding: 0 20px 4px; }
    .tmpl-card { flex: 0 0 240px; }
    .templates-section { padding: 88px 0 72px; }
    .templates-section .bottom { padding: 0 20px; }

    /* Features */
    .features-section { padding: 80px 20px; }
    .features-grid { grid-template-columns: 1fr; gap: 44px; margin-top: 56px; }

    /* Split */
    .split-feature { flex-direction: column; }
    .sf-left { padding: 64px 20px; }
    .sf-right { min-height: 280px; }

    /* Stats */
    .stats-section { padding: 80px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    /* Pricing */
    .pricing-section { padding: 80px 20px; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }
    .p-card { padding: 36px 28px; }

    /* Testimonials */
    .testi-section { padding: 80px 20px; }
    .testi-grid { grid-template-columns: 1fr; max-width: 100%; gap: 20px; }
    .testi-card { padding: 32px 28px; }

    /* CTA */
    .cta-section { padding: 110px 20px; }
    .cta-btns { flex-direction: column; gap: 12px; align-items: stretch; }
    .cta-btns .btn-solid,
    .cta-btns .btn-outline { text-align: center; display: block; }

    /* Grow section */
    .grow-section { padding: 72px 0 56px; }
    .grow-header { padding: 0 20px; }
    .grow-tabs { padding: 0 20px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; justify-content: flex-start; }
    .grow-tabs::-webkit-scrollbar { display: none; }
    .grow-card {
        flex: 0 0 88vw;
    }
    .grow-card-inner {
        flex-direction: column;
        padding: 36px 24px;
        gap: 28px;
        min-height: auto;
    }
    .grow-card-text {
        flex: unset;
        text-align: center;
    }
    .grow-card-title { font-size: 20px; }
    .grow-card-desc { font-size: 13.5px; }
    .grow-card-visual { display: none; } /* hide decorative visual on tiny screens */

    /* Logos bar */
    .logos-bar { padding: 40px 20px; }
    .logos-row { gap: 24px; }

    /* Footer */
    footer { padding: 60px 20px 36px; padding-bottom: calc(36px + env(safe-area-inset-bottom)); }
    .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .foot-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .foot-legal { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* ── Tablet-only tweaks (768–1023) ── */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Show just the quote button, hide login link, show hamburger */
    .nav-btn { display: none; }

    /* Footer 3-col then squeeze to 2+2 */
    .foot-top { grid-template-columns: 1fr 1fr 1fr; }

    /* Grow card: wider on tablet */
    .grow-card { flex: 0 0 80vw; max-width: 680px; }

    /* Pricing: 2-col on tablet, last card full-width */
    .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .p-card:last-child { grid-column: 1 / -1; max-width: 360px; margin: 0 auto; }
}

/* ── Large tablet / small laptop (1024–1279) ── */
@media (min-width: 1024px) and (max-width: 1279px) {
    .features-grid { gap: 56px 80px; max-width: 900px; }
    .grow-card-inner { padding: 52px 56px; gap: 44px; }
    .grow-card-text { flex: 0 0 220px; }
}


/* ═══════════════════════════════════════════════════════════════
   TOUCH / POINTER OPTIMISATIONS
═══════════════════════════════════════════════════════════════ */

@media (hover: none) and (pointer: coarse) {
    /* Disable hover transforms on touch devices — they stick after tap */
    .tmpl-card:hover { transform: none; }
    .tmpl-card:hover .tmpl-overlay { background: rgba(0,0,0,0.52); }
    .tmpl-card:hover .tmpl-meta { opacity: 1; transform: none; }
    .p-card:hover { transform: none; box-shadow: none; }
    .p-card.show:hover { transform: none; }
    .feat-link:hover { gap: 5px; opacity: 1; }

    /* Bigger tap targets */
    .grow-tab { padding: 10px 20px; min-height: 44px; }
    .p-btn { padding: 16px; min-height: 44px; }
    .foot-links a { padding: 4px 0; min-height: 44px; display: flex; align-items: center; }
}


/* ═══════════════════════════════════════════════════════════════
   HERO CAROUSEL RESPONSIVE  (corousel-section)
═══════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .corousel-section .item {
        min-width: 0;
        min-width: 92%;
        min-height: 220px;
        border-radius: 10px;
    }
    .corousel-section .center {
        transform: none !important;
        min-width: 100%;
    }
    
    .corousel-section {
        padding-bottom: 24px;
    }
}

/* ── Small phones (375–479): base mobile styles ── */
@media (max-width: 479px) {
    /* Nav */
    #main-nav { padding: 18px 20px; }
    #main-nav.nav-solid { padding: 14px 20px; }

    /* Hero */
    .hero { padding: 108px 20px 0; }
    .hero-h1 { font-size: clamp(32px, 10vw, 44px); letter-spacing: -2px; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
    .btn-solid, .btn-outline { padding: 16px 24px; text-align: center; display: block; }

    /* Carousel cards on mobile: single column  */
    .corousel-section {
        flex-direction: row;
        align-items: center;
        /* gap: -6rem; */
        padding: 0 20px 20px;
    }
    .corousel-section .item {
        min-width: 0;
        min-width: 85%;
        min-height: 200px;
        /* transform: none !important; */
    }
    .corousel-section .left img,
    .corousel-section .right img {
        filter: none;
        opacity: 1;
    }
    .corousel-section .left{
        display: flex;
        transform: rotate(-10deg) translatex(1.5rem) !important;
        /* transform: rotate('150deg') !important; */
        opacity: 0.5;
    }
    .corousel-section .right { 
        display: flex; 
        transform: rotate(10deg) translatex(-5rem) !important;
        opacity: 0.85;
    }

    /* Templates */
    .templates-head { 
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .tmpl-track { padding: 0 20px 4px; }
    .tmpl-card { flex: 0 0 240px; }
    .templates-section { padding: 88px 0 72px; }
    .templates-section .bottom { padding: 0 20px; }

    /* Features */
    .features-section { padding: 80px 20px; }
    .features-grid { grid-template-columns: 1fr; gap: 44px; margin-top: 56px; }

    /* Split */
    .split-feature { flex-direction: column; }
    .sf-left { padding: 64px 20px; }
    .sf-right { min-height: 280px; }

    /* Stats */
    .stats-section { padding: 80px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    /* Pricing */
    .pricing-section { padding: 80px 20px; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }
    .p-card { padding: 36px 28px; }

    /* Testimonials */
    .testi-section { padding: 80px 20px; }
    .testi-grid { grid-template-columns: 1fr; max-width: 100%; gap: 20px; }
    .testi-card { padding: 32px 28px; }

    /* CTA */
    .cta-section { padding: 110px 20px; }
    .cta-btns { flex-direction: column; gap: 12px; align-items: stretch; }
    .cta-btns .btn-solid,
    .cta-btns .btn-outline { text-align: center; display: block; }

    /* Grow section */
    .grow-section { padding: 72px 0 56px; }
    .grow-header { padding: 0 20px; }
    .grow-tabs { padding: 0 20px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; justify-content: flex-start; }
    .grow-tabs::-webkit-scrollbar { display: none; }
    .grow-card {
        flex: 0 0 88vw;
    }
    .grow-card-inner {
        flex-direction: column;
        padding: 36px 24px;
        gap: 28px;
        min-height: auto;
    }
    .grow-card-text {
        flex: unset;
        text-align: center;
    }
    .grow-card-title { font-size: 20px; }
    .grow-card-desc { font-size: 13.5px; }
    .grow-card-visual { display: none; } /* hide decorative visual on tiny screens */

    /* Logos bar */
    .logos-bar { padding: 40px 20px; }
    .logos-row { gap: 24px; }

    /* Footer */
    footer { padding: 60px 20px 36px; padding-bottom: calc(36px + env(safe-area-inset-bottom)); }
    .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .foot-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .foot-legal { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation: none !important;
    }
    .mobile-drawer {
        transition: none !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SAFE-AREA  (notched iPhones, Android cutouts)
═══════════════════════════════════════════════════════════════ */

#main-nav {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

@media (min-width: 480px) {
    #main-nav { padding-left: max(28px, env(safe-area-inset-left)); padding-right: max(28px, env(safe-area-inset-right)); }
}

@media (min-width: 768px) {
    #main-nav { padding-left: max(44px, env(safe-area-inset-left)); padding-right: max(44px, env(safe-area-inset-right)); }
}

@media (min-width: 1024px) {
    #main-nav { padding-left: max(56px, env(safe-area-inset-left)); padding-right: max(56px, env(safe-area-inset-right)); }
}


/* ═══════════════════════════════════════════════════════════════
   LANDSCAPE PHONE  (short wide viewport)
═══════════════════════════════════════════════════════════════ */

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 90px 20px 40px;
    }
    .hero-h1 { font-size: clamp(28px, 6vw, 42px); }
    .hero-ctas { margin-bottom: 40px; }
    .mobile-drawer-inner { padding-top: 70px; }
    .mobile-nav-link { font-size: 17px; padding: 10px 0; }
}


/* ═══════════════════════════════════════════════════════════════
   ULTRA-WIDE  (≥1600px)
═══════════════════════════════════════════════════════════════ */

@media (min-width: 1600px) {
    .hero-h1 { font-size: clamp(72px, 5.5vw, 100px); }
    .features-grid { max-width: 1200px; }
    .testi-grid { max-width: 1300px; }
    .stats-grid { max-width: 1300px; }
    footer { padding: 100px 120px 56px; }
    .foot-top { gap: 60px; }
}