:root {
    /* Warm Copper + Charcoal — Reonoma Brand System */
    --ink: #2a2a2e;
    --ink-soft: #333338;
    --ink-muted: #3d3d44;
    --signal: #C4956A;
    --signal-glow: rgba(196, 149, 106, 0.25);
    --signal-muted: rgba(196, 149, 106, 0.12);
    --surface: #fafaf8;
    --surface-elevated: #ffffff;
    --surface-sunken: #f2f1ed;
    --border: #e4e3de;
    --border-subtle: #eeedea;

    /* Backward-compatible aliases */
    --primary: var(--ink);
    --primary-light: var(--border);
    --primary-dark: var(--ink-soft);
    --accent: var(--signal);
    --accent-light: #d4a87a;
    --accent-dark: #b0825a;
    --text: #1a1a1e;
    --text-light: #5c5b57;
    --bg: var(--surface);
    --white: #ffffff;
    --gray-100: var(--surface-sunken);
    --gray-200: var(--border);
    --gradient: linear-gradient(135deg, var(--ink) 0%, var(--ink-muted) 100%);
    --gradient-accent: linear-gradient(135deg, var(--signal) 0%, var(--accent-light) 100%);
    --gradient-signal: linear-gradient(135deg, #C4956A 0%, #b0825a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(42, 42, 46, 0.92);
    backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}


.logo-placeholder {
    height: 45px;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

nav.scrolled .logo-placeholder {
    background: rgba(26, 93, 93, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    position: relative;
}

nav.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--signal);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--signal) !important;
    color: var(--ink) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--signal-glow);
}

.nav-lang {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em;
}

nav.scrolled .nav-lang {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.nav-signin {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.nav-signin:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7) !important;
}

.nav-signin::after {
    display: none !important;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center; /* Show more of left side, pushing subject to the right */
}

.hero-background-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    gap: 1rem;
}

.hero-background-placeholder .placeholder-icon {
    font-size: 5rem;
    opacity: 0.3;
}

/* Gradient overlay - stronger architectural left mask */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(42, 42, 46, 0.92) 0%,
        rgba(42, 42, 46, 0.85) 25%,
        rgba(42, 42, 46, 0.5) 50%,
        rgba(42, 42, 46, 0.15) 75%,
        rgba(42, 42, 46, 0) 100%
    );
    z-index: 1;
}

.hero-pattern {
    display: none; /* Remove pattern for cleaner look */
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 550px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Choreographed hero load sequence */
.hero-background img {
    animation: heroImageFade 1s ease forwards;
}

@keyframes heroImageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero h1 {
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.3s forwards;
}

.hero p {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.7s forwards;
}

.hero-bottom-bar {
    opacity: 0;
    animation: slideUpBar 0.5s ease 0.9s forwards;
}

@keyframes slideUpBar {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: none; /* Hide badge for cleaner look  */
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero h1 .highlight {
    color: var(--signal);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 450px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--signal);
    color: var(--ink);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--signal-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Hide the right side hero image section - not needed for this layout */
.hero-image {
    display: none;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.6;
}

/* Bottom info bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(196, 149, 106, 0.25);
    padding: 1.25rem 0;
    z-index: 4;
}

.hero-bottom-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-bottom-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(250, 250, 248, 0.75);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-bottom-item svg {
    width: 20px;
    height: 20px;
    color: var(--signal);
}

/* Stats */
.stats {
    padding: 3rem 2rem;
    background: var(--ink);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--signal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}

.stat-label {
    color: rgba(250, 250, 248, 0.55);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    background: var(--signal-muted);
    color: #8a6a4a;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-signal);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

a.feature-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--signal-muted);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--signal);
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--signal);
    color: var(--ink);
}

.feature-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 8rem 2rem;
    background: var(--white);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-content {
    padding: 2rem;
}

.product-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--text);
}

.product-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.product-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 26px;
    height: 26px;
    background: var(--signal-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--signal);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.product-image {
    position: relative;
}

.product-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 1rem;
}

.products-reverse {
    direction: rtl;
}

.products-reverse > * {
    direction: ltr;
}

/* Software Section - Archie Style */
.software {
    padding: 6rem 2rem;
    background: var(--bg);
    position: relative;
}

.software-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.software-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.software-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.software-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.software-featured-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-featured-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2), 0 0 0 1px var(--signal);
}

.software-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Software Features Bar */
.software-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.software-feature-item {
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    border-left: 3px solid transparent;
}

.software-feature-item:hover {
    background: var(--white);
    border-left-color: var(--signal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.software-feature-item:last-child {
    cursor: default;
}

.software-feature-item:last-child:hover {
    background: transparent;
    border-left-color: transparent;
    box-shadow: none;
}

.software-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    width: 45px;
    height: 45px;
    background: var(--signal-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--signal);
}

.software-feature-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.software-feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Meet the Founders Section */
.founders {
    padding: 8rem 2rem;
    background: var(--ink);
}

.founders .section-header h2 {
    color: var(--white);
}

.founders .section-header p {
    color: rgba(250, 250, 248, 0.6);
}

.founders-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.founder-card {
    text-align: center;
    background: var(--ink-soft);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--ink-muted);
    transition: all 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--signal);
}

/* --- Avatar: ring + lager (stabilt) --- */
.founder-avatar{
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate; /* gör z-index säkert */
}

/* ytterring */
.founder-avatar::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--signal);
  z-index: 0;
}

/* dark innercirkel */
.founder-avatar::after{
  content:"";
  position:absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--ink-soft);
  z-index: 1;
}

/* bilden ligger ALLTID över ringen */
.founder-avatar img{
  position: relative;
  z-index: 2;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  object-fit: cover;
}

/* bas (om du vill ha den kvar som “flagga” i HTML) */
.founder-avatar img.zoom-face{
  transform: none;               /* viktigt: låt Adam/Emil styra själva */
  object-position: center 30%;
}

/* --- Justeringar --- */
/* Adam: behöver mycket mer zoom pga luft i PNG:n */
.founder-avatar img.zoom-adam{
  transform: scale(2.35) translateY(6%);
  object-position: center 22%;
}

/* Emil: zooma ut lite */
.founder-avatar img.zoom-emil{
  transform: scale(0.95) translateY(2%);
  object-position: center 58%;
}


.founder-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--signal);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.founder-bio {
    color: rgba(250, 250, 248, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.founder-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 250, 248, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.founder-social a:hover {
    background: var(--signal);
    color: var(--ink);
    transform: translateY(-3px);
}

/* Pricing Section */
.pricing {
    padding: 8rem 2rem;
    background: var(--white);
}

.pricing-section-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}
#pricing .pricing-section-title {
    margin-top: 4rem;
}


.pricing-section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-top: -1rem;
}

.pricing .section-header {
    margin-bottom: 2rem;
}

.pricing-grid {
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pricing-grid.three-cols {
    max-width: 1200px;
    grid-template-columns: repeat(3, 1fr);
}

.pricing-grid:last-of-type {
    margin-bottom: 0;
}

.pricing-card {
    background: var(--bg);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--signal);
    transform: scale(1.05);
    background: var(--white);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--signal);
    color: var(--ink);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

:lang(sv) .pricing-card.featured::before {
    content: 'Mest Populär';
}

/* Hardware bundle styling */
.pricing-card.hardware {
    border-color: var(--primary-light);
}

.pricing-card.hardware.featured {
    border-color: var(--primary);
}

.pricing-card.hardware.featured::before {
    content: 'Best Value';
    background: var(--signal);
}

:lang(sv) .pricing-card.hardware.featured::before {
    content: 'Bäst Värde';
}

.pricing-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Enterprise card styling */
.pricing-card.enterprise {
    border-color: var(--primary-dark);
    background: linear-gradient(135deg, var(--bg) 0%, #f0f0f0 100%);
}

.pricing-card.enterprise .pricing-header {
    border-bottom-color: var(--primary-light);
}

.pricing-price.custom {
    flex-direction: column;
    gap: 0;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.pricing-amount-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    text-align: center;
}

.pricing-btn-enterprise {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
}

.pricing-btn-enterprise:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(68, 68, 68, 0.3);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--signal);
}

.pricing-amount {
    font-family: 'DM Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-period {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text);
}

.pricing-features .included {
    color: var(--signal);
}

.pricing-features .not-included {
    color: var(--gray-200);
}

.pricing-features .not-included + span {
    color: var(--text-light);
    text-decoration: line-through;
}

.pricing-btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.pricing-btn-primary {
    background: var(--signal);
    color: var(--ink);
    border: none;
    font-weight: 700;
}

.pricing-btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--signal-glow);
}

.pricing-btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pricing-btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* CTA Section */
.cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #2a2a2e 0%, #252530 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4956A' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(196, 149, 106, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--text);
}

.contact-details .icon {
    width: 45px;
    height: 45px;
    background: var(--ink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--signal);
}

.contact-form {
    background: var(--bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--signal);
    box-shadow: 0 0 0 3px var(--signal-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--signal);
    color: var(--ink);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--signal-glow);
}

/* Footer */
footer {
    background: var(--ink);
    color: var(--white);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--ink-muted);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand .footer-logo img {
    height: 50px;
    width: auto;
}

.footer-brand .logo-placeholder-footer {
    height: 50px;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--signal);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--signal);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--signal);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

nav.scrolled .mobile-toggle span {
    background: var(--white);
}

/* Lightbox Styles */
.lightbox-trigger {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lightbox-trigger:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Swipe indicator for mobile */
.swipe-hint {
    display: none;
}

/* Software Section Responsive */
@media (max-width: 1024px) {
    .software-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .software-text {
        text-align: center;
    }
    
    .software-text .btn {
        display: inline-flex;
    }
    
    .software-features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .software-features-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .software-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .software-feature-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .software-feature-content {
        flex: 1;
    }
}

/* Nav responsive - medium screens */
@media (max-width: 1300px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text) !important;
        font-size: 1.1rem;
    }

    .nav-signin {
        border-color: var(--ink) !important;
        color: var(--ink) !important;
        display: inline-block;
        text-align: center;
    }

    .nav-signin:hover {
        background: rgba(42, 42, 46, 0.08);
    }

    .nav-cta {
        margin-top: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 2rem;
    }

    .hero-bottom-bar-container {
        padding: 0 2rem;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid,
    .products-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .pricing-grid.three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid.three-cols .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founders-grid .founder-card:last-child {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-background img {
        object-position: 65% center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero p {
        font-size: 1rem;
    }

    /* Hide hero bottom bar on mobile */
    .hero-bottom-bar {
        display: none;
    }
    
    .hero-background img {
        object-position: 60% center;
    }
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(42, 42, 46, 0.9) 0%,
            rgba(42, 42, 46, 0.65) 50%,
            rgba(42, 42, 46, 0.4) 100%
        );
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products section mobile fix */
    .products-grid,
    .products-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }
    
    .product-image {
        order: -1;
    }
    
    .product-image-container {
        border-radius: 12px;
    }
    
    .product-image-container img {
        width: 100%;
        height: auto;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .founders-grid .founder-card:last-child {
        max-width: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid.three-cols {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid.three-cols .pricing-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .features, .products, .software, .founders, .pricing, .testimonials, .contact {
        padding: 4rem 1.5rem;
    }
    
    .product-content {
        padding: 1rem 0;
    }
    
    .product-content h2 {
        font-size: 1.8rem;
    }
    
    .product-features li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }
    
    .founder-card {
        padding: 2rem 1.5rem;
    }
    
    .founder-avatar {
        width: 120px;
        height: 120px;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Mobile close button for nav */
    .mobile-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--text);
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .product-features li {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .product-content h2 {
        font-size: 1.5rem;
    }
    
    .pricing-amount {
        font-size: 3rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
}

/* =============================================
   GUIDE PAGE STYLES (extracted from outlook-setup.html)
   ============================================= */

/* Guide Hero */
.guide-hero {
    padding: 10rem 2rem 5rem;
    background: var(--gradient);
    text-align: center;
    color: #fff;
}
.guide-hero .section-tag {
    color: var(--signal);
    border-color: rgba(196,149,106,0.35);
    margin-bottom: 1.25rem;
}
.guide-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
}
.guide-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto;
}

/* Guide Body Layout */
.guide-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}

/* Step Cards */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}
.step-card {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.25rem;
    align-items: start;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.75rem 1.75rem 1.75rem 1.5rem;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.step-card:hover {
    box-shadow: 0 8px 32px rgba(42,42,46,0.09);
    transform: translateY(-3px);
}
.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-signal);
    color: #fff;
    font-family: 'Instrument Serif', serif;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--signal-glow);
}
.step-content h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.step-content p {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.7;
}
.step-content .kbd-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.kbd {
    background: var(--surface-sunken);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.25rem 0.65rem;
    font-size: 0.85rem;
    font-family: monospace;
    color: var(--ink);
}

/* Info Box */
.info-box {
    background: var(--surface-sunken);
    border-left: 4px solid var(--signal);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}
.info-box strong { color: var(--ink); }

/* Guide Divider */
.guide-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 4rem 0;
}

/* Fire Block */
.fire-block {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2.5rem;
}
.fire-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.fire-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(135deg, #e05252 0%, #c03030 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fire-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}
.fire-block h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    color: var(--ink);
}
.fire-block p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.fire-block p:last-child { margin-bottom: 0; }
.access-option {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: var(--surface-sunken);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}
.access-option-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gradient-signal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.access-option-icon svg {
    width: 1rem;
    height: 1rem;
    color: #fff;
}
.access-option-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
}
.access-option-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}
.access-option-text a {
    color: var(--signal);
    text-decoration: none;
    font-weight: 500;
}
.access-option-text a:hover { text-decoration: underline; }

/* Download Button */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-signal);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 0.6rem;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-download:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.btn-download svg {
    width: 1.1rem;
    height: 1.1rem;
}

/* =============================================
   HELP CENTER STYLES
   ============================================= */

/* Help Tabs - Horizontal pill bar between hero and content */
.help-tabs {
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    text-align: center;
}

.help-tabs-container {
    display: inline-flex;
    gap: 0.5rem;
    background: var(--surface-elevated);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(42, 42, 46, 0.10);
    border: 1px solid var(--border);
}

.help-tab {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.help-tab:hover {
    background: var(--surface-sunken);
    color: var(--ink);
}

.help-tab.active {
    background: var(--ink);
    color: #fff;
    font-weight: 600;
}

/* Help Layout - Single column content */
.help-layout {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.help-sidebar {
    display: none;
}

.help-sidebar-nav {
    display: none;
}

.help-sidebar-nav a {
    display: block;
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.help-sidebar-nav a:hover {
    background: var(--surface-sunken);
    color: var(--ink);
}

.help-sidebar-nav a.active {
    background: var(--surface-sunken);
    color: var(--signal);
    font-weight: 600;
}

.help-content {
    min-width: 0;
}

.help-content h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.help-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Help Center Card Grid */
.help-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.help-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-card:hover {
    box-shadow: 0 8px 32px rgba(42,42,46,0.09);
    transform: translateY(-3px);
}

.help-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-signal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.help-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin: 0;
}

.help-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.help-card .card-arrow {
    color: var(--signal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

/* =============================================
   FAQ STYLES
   ============================================= */

.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--surface-elevated);
}

.faq-item summary {
    padding: 1.15rem 1.5rem;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.2s ease;
}

.faq-item summary:hover {
    background: var(--surface-sunken);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--signal);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =============================================
   CASE STUDY STYLES
   ============================================= */

.case-study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
    background: var(--surface-sunken);
    border-radius: 1rem;
    margin: -2rem auto 3rem;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.case-study-meta-item {
    text-align: center;
}

.case-study-meta-item .meta-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.case-study-meta-item .meta-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
}

.case-study-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.case-study-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--ink);
    margin-bottom: 1rem;
}

.case-study-section p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.case-study-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.case-study-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(42,42,46,0.12);
}

.case-study-image figcaption {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.case-study-result-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.case-study-result-card:hover {
    box-shadow: 0 8px 32px rgba(42,42,46,0.09);
    transform: translateY(-3px);
}

.case-study-result-card .result-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-signal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.case-study-result-card .result-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.case-study-result-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.case-study-result-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* =============================================
   GUIDE RESPONSIVE (shared)
   ============================================= */

@media (max-width: 768px) {
    .help-layout {
        padding: 2rem 1.5rem 4rem;
    }
    .help-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .case-study-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .step-card { grid-template-columns: 1fr; }
    .step-number { width: 2.4rem; height: 2.4rem; font-size: 1.1rem; }
    .fire-block { padding: 1.75rem; }
    .help-card-grid { grid-template-columns: 1fr; }
    .case-study-results { grid-template-columns: 1fr; }
}

/* =============================================
   CUSTOMER STORIES SECTION (homepage)
   ============================================= */

.customer-stories {
    padding: 8rem 2rem;
    background: var(--surface-sunken);
}

.customer-stories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.customer-stories-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(42, 42, 46, 0.12);
}

.customer-stories-content .section-tag {
    margin-bottom: 1.25rem;
}

.customer-stories-content h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--ink);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.customer-stories-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.customer-stories-logo {
    margin-bottom: 2rem;
}

.customer-stories-logo img {
    max-width: 140px;
    height: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.customer-stories-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 968px) {
    .customer-stories-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .customer-stories {
        padding: 5rem 1.5rem;
    }
}

/* ── Cookie Consent Banner ───────────────────────────── */
#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 1;
}

#consent-banner.consent-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.consent-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.consent-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.consent-link {
    color: var(--signal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-link:hover {
    opacity: 0.8;
}

.consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.consent-btn-accept {
    background: var(--signal);
    color: var(--ink);
}

.consent-btn-accept:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.consent-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.consent-btn-decline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
    #consent-banner {
        padding: 1.25rem 1.5rem;
    }
    .consent-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .consent-buttons {
        width: 100%;
    }
    .consent-btn {
        flex: 1;
    }
}