/* ═══════════════════════════════════════════════════════════════════════
   TrussCommerce — Main Stylesheet
   Palette: Black + White + Orange (#FF5C28)
   Fonts: Space Grotesk (headings) + Inter (body)
═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────────────── */
:root {
    --bg: #080808;
    --bg-surface: #0D0D0D;
    --bg-card: #131313;
    --bg-card-alt: #1A1A1A;
    --bg-white: #FFFFFF;
    --text: #FFFFFF;
    --text-secondary: #BBBBBB;
    --text-muted: #555555;
    --text-dark: #080808;
    --accent: #FF5C28;
    --accent-hover: #FF7540;
    --accent-soft: rgba(255, 92, 40, 0.10);
    --accent-border: rgba(255, 92, 40, 0.30);
    --border: rgba(255, 255, 255, 0.07);
    --border-medium: rgba(255, 255, 255, 0.12);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3), 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(255, 92, 40, 0.15);
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ── Typography ───────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.display-xl {
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.display-lg {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.display-md {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

.display-sm {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.text-accent {
    color: var(--accent);
}

.text-gradient {
    background: linear-gradient(135deg, #FF5C28 0%, #FF9060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: #FFFFFF;
}

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

/* ── Layout ───────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: var(--bg);
}

.section-surface {
    background: var(--bg-surface);
}

.section-white {
    background: var(--bg-white);
    color: var(--text-dark);
}

.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 64px 0;
}

.section-pad-lg {
    padding: 140px 0;
}

/* ── Eyebrow Labels ───────────────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-white .eyebrow {
    background: rgba(255, 92, 40, 0.08);
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(255, 92, 40, 0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 92, 40, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-medium);
}

.btn-ghost:hover {
    background: var(--bg-card-alt);
    border-color: var(--accent-border);
    color: var(--accent);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-ghost-dark:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 15px;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ── Navigation ───────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: var(--bg-card-alt);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px 32px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu .nav-link {
    font-size: 16px;
    padding: 12px 16px;
}

.mobile-menu .btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

/* ── Hero Section ─────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 100px;
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.65);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 92, 40, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 92, 40, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-heading {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 28px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
    margin-bottom: 60px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.7s ease 0.4s both;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.proof-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-stat {
    font-size: 13px;
    color: var(--text-secondary);
}

.hero-stat strong {
    color: var(--text);
    font-weight: 600;
}

/* ── Trust Bar ────────────────────────────────────────────────────── */
.trust-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.trust-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-stat {
    text-align: center;
}

.trust-stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

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

.trust-stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ── Section Headers ──────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header.left {
    text-align: left;
    margin: 0 0 48px;
}

.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.section-white .section-sub {
    color: #666666;
}

/* ── Feature Cards ────────────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

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

.section-white .feature-card {
    background: #F8F8F8;
    border-color: rgba(0, 0, 0, 0.06);
}

.section-white .feature-card:hover {
    background: #FFFFFF;
    border-color: var(--accent-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--accent-border);
    color: var(--accent);
}

.section-white .card-icon {
    background: rgba(255, 92, 40, 0.06);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--text);
}

.section-white .card-title {
    color: var(--text-dark);
}

.card-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.section-white .card-body {
    color: #666;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition);
}

.card-link:hover {
    gap: 10px;
}

/* ── Two-column split ─────────────────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split.reversed {
    direction: rtl;
}

.split.reversed>* {
    direction: ltr;
}

.split-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.split-visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    font-size: 80px;
    opacity: 0.4;
}

.split-content {
    max-width: 520px;
}

/* ── Checklist ────────────────────────────────────────────────────── */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.section-white .check-item {
    color: #555;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-border);
    font-size: 10px;
    color: var(--accent);
}

/* ── Quote / Testimonial Highlight ───────────────────────────────── */
.quote-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.quote-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 24px;
}

.quote-mark {
    font-size: 80px;
    line-height: 1;
    color: var(--accent);
    font-family: Georgia, serif;
    margin-bottom: 16px;
    opacity: 0.6;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.5;
    margin-bottom: 32px;
    color: var(--text);
}

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

.quote-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 2px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.quote-name {
    font-weight: 700;
    font-size: 15px;
}

.quote-role {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ── Testimonials Slider ─────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent-border);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
}

.author-role {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ── CTA Banner ───────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #FF5C28 0%, #FF3D00 60%, #CC2200 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-white {
    background: #FFFFFF;
    color: var(--accent);
    font-weight: 700;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ── Pricing Cards ────────────────────────────────────────────────── */
.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 52px;
    padding-top: 16px;
}

.pricing-toggle {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    gap: 4px;
    overflow: visible;
}

.toggle-btn {
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
    position: relative;
}

.toggle-btn.active {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 2px 12px rgba(255, 92, 40, 0.4);
}

.save-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #22C55E;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.pricing-card.highlighted {
    border-color: var(--accent);
    background: var(--bg-card-alt);
    box-shadow: var(--shadow-glow);
}

.pricing-card.highlighted::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-tagline {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.price-period {
    font-size: 13px;
    color: var(--text-secondary);
}

.price-billed {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.price-billed:last-of-type {
    margin-bottom: 20px;
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.plan-feature-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.plan-feature-label:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.plan-check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--accent);
    margin-top: 2px;
}

.pricing-card.highlighted .plan-check {
    background: rgba(255, 92, 40, 0.2);
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    background: var(--bg-card-alt);
    border: 1px solid var(--border-medium);
    color: var(--text);
    transition: all var(--transition);
}

.plan-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFF;
    transform: translateY(-1px);
}

.pricing-card.highlighted .plan-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFF;
    box-shadow: 0 4px 16px rgba(255, 92, 40, 0.35);
}

.pricing-card.highlighted .plan-cta:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(255, 92, 40, 0.45);
}

/* Pricing tab pane */
.pricing-pane {
    display: none;
}

.pricing-pane.active {
    display: block;
}

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    width: 100%;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    color: var(--text);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-card-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-soft);
    color: var(--accent);
}

.faq-answer {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── Contact Form ─────────────────────────────────────────────────── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid .form-full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select,
select.form-input {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    resize: none;
    width: 100%;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

select.form-input option {
    background: var(--bg-card);
    color: var(--text);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-border);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    height: 140px;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 64px 24px 32px;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    color: var(--text-secondary);
}

.social-btn:hover {
    background: var(--accent-soft);
    border-color: var(--accent-border);
    color: var(--accent);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-copy a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-copy a:hover {
    color: var(--accent);
}

/* ── Blog ─────────────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
}

.blog-card-image {
    aspect-ratio: 16/9;
    background: var(--bg-card-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-category {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.35;
    color: var(--text);
    flex: 1;
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* ── Success / Cancel pages ───────────────────────────────────────── */
.status-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.status-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.status-heading {
    font-size: 2rem;
    margin-bottom: 12px;
}

.status-sub {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 440px;
}

/* ── Page Hero (inner pages) ──────────────────────────────────────── */
.page-hero {
    padding: 140px 24px 80px;
    text-align: center;
    background: var(--bg);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 92, 40, 0.1) 0%, transparent 70%);
}

/* ── Animations ───────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

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

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

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

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── Utility ──────────────────────────────────────────────────────── */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-4 {
    gap: 4px;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split.reversed {
        direction: ltr;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-pad {
        padding: 64px 0;
    }

    .section-pad-lg {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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