/* ==========================================================================
   GozAround Public Website Stylesheet
   Brand: #DF7103 (Orange), #292A29 (Dark), #FFF6EB (Cream)
   Fonts: DM Serif Display (hero/section headings), Inter (body), Space Grotesk (UI headings)
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #292A29;
    background: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: #DF7103;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #C86402;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #292A29;
}

/* Warm serif for hero H1 and section H2 headings */
.hero__content h1,
.page-hero h1,
.section-header h2,
.cta-section h2 {
    font-family: 'DM Serif Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1 { font-size: 3.25rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: #555;
    line-height: 1.7;
    max-width: 72ch;
}

.text-orange { color: #DF7103; }
.text-dark { color: #292A29; }
.text-muted { color: #777; }
.text-white { color: #FFFFFF; }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1400px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* Subtle gradient dividers between sections */
.section + .section::before,
.section + .section--cream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 113, 3, 0.15), transparent);
}

.section--cream + .section::before,
.section--dark + .section::before,
.section--cream::before,
.section--dark::before {
    display: none;
}

.section--cream {
    background: #FFF6EB;
}

.section--dark {
    background: linear-gradient(165deg, #2F302F 0%, #292A29 40%, #232423 100%);
    color: #FFFFFF;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: #FFFFFF;
}

.section--dark p {
    color: #BDBDBD;
}

.section--gradient {
    background: linear-gradient(135deg, #FFF6EB 0%, #FFFFFF 50%, #FFF6EB 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.125rem;
    margin-top: 16px;
    max-width: none;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #DF7103;
    margin-bottom: 12px;
}

/* Orange accent bar on section labels */
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 3px;
    background: #DF7103;
    border-radius: 2px;
}

/* --- Grid --- */
.grid {
    display: grid;
    gap: 32px;
}

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    line-height: 1.4;
    white-space: nowrap;
}

.btn--primary {
    background: #DF7103;
    color: #FFFFFF;
    border-color: #DF7103;
}

.btn--primary:hover {
    background: #C86402;
    border-color: #C86402;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 113, 3, 0.35);
}

.btn--secondary {
    background: transparent;
    color: #DF7103;
    border-color: #DF7103;
}

.btn--secondary:hover {
    background: #DF7103;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 113, 3, 0.2);
}

.btn--white {
    background: #FFFFFF;
    color: #DF7103;
    border-color: #FFFFFF;
}

.btn--white:hover {
    background: #FFF6EB;
    border-color: #FFF6EB;
    color: #C86402;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1.125rem;
    border-radius: 10px;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 6px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Navigation --- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

.site-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-nav__logo img {
    height: 36px;
    width: auto;
}

.site-nav__logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #DF7103;
    margin-left: 10px;
}

.site-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.site-nav__links a {
    padding: 8px 16px;
    color: #555;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a.active {
    color: #DF7103;
    background: rgba(223, 113, 3, 0.06);
}

.site-nav__cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav__cta .btn {
    padding: 10px 24px;
    font-size: 0.9375rem;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #292A29;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile menu hidden by default on all viewports */
.mobile-menu {
    display: none;
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid background pattern (CSS-only) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(223, 113, 3, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero--centered {
    text-align: center;
}

.hero--centered .hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero__content h1 {
    margin-bottom: 24px;
}

.hero__content h1 .highlight {
    color: #DF7103;
    position: relative;
}

.hero__content > p {
    font-size: 1.25rem;
    color: #555;
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.hero--centered .hero__content > p {
    margin-left: auto;
    margin-right: auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FFF6EB;
    border: 1px solid #DF710330;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #DF7103;
    margin-bottom: 24px;
}

/* Hero stats as bordered cards */
.hero__stats {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    padding-top: 0;
    border-top: none;
}

.hero--centered .hero__stats {
    justify-content: center;
}

.hero__stats > div {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 20px 28px;
    text-align: center;
    transition: border-color 0.2s;
}

.hero__stats > div:hover {
    border-color: #DF710350;
}

.hero__stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #DF7103;
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: #777;
    margin-top: 6px;
}

/* Hero background decoration */
.hero__bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(223, 113, 3, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Feature Cards --- */
.feature-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FEFCFA 100%);
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #DF7103;
    border-left: 3px solid #DF7103;
    box-shadow: 0 8px 30px rgba(223, 113, 3, 0.1);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #FFF6EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: none;
}

/* --- Stat Cards --- */
.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.stat-card__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #DF7103;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 1rem;
    color: #555;
}

/* --- Social Proof / Logo Bar --- */
.logo-bar {
    padding: 40px 0;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.logo-bar__label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 24px;
}

.logo-bar__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.85;
}

.logo-bar__logos span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #999;
}

/* Descriptive text style for social proof (no fake logos) */
.logo-bar__text {
    text-align: center;
    font-size: 0.9375rem;
    color: #777;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Highlight Box (pull-quotes and key stats) --- */
.highlight-box {
    background: linear-gradient(135deg, #FFF6EB 0%, #FFF0DD 100%);
    border-left: 4px solid #DF7103;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 32px 0;
}

.highlight-box p {
    font-size: 1.0625rem;
    color: #292A29;
    font-weight: 500;
    line-height: 1.7;
    max-width: none;
}

.highlight-box--centered {
    text-align: center;
    border-left: none;
    border-radius: 12px;
    border-top: 4px solid #DF7103;
}

/* --- Outcome Badge (pill-style for stats) --- */
.outcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #FFF6EB;
    border: 1px solid rgba(223, 113, 3, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #DF7103;
    white-space: nowrap;
}

.outcome-badge--green {
    background: #e8f5e9;
    border-color: rgba(46, 125, 50, 0.2);
    color: #2e7d32;
}

/* --- Outcome Callout (for feature detail pages) --- */
.outcome-callout {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFF6EB 0%, #FFF0DD 100%);
    border: 1px solid rgba(223, 113, 3, 0.15);
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 24px;
}

.outcome-callout__icon {
    width: 36px;
    height: 36px;
    background: #DF7103;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-callout__icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.outcome-callout p {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #292A29;
    max-width: none;
}

/* --- Comparison Table --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E8E8E8;
}

.comparison-table thead {
    background: #292A29;
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: #FFFFFF;
}

.comparison-table th.highlight-col {
    background: #DF7103;
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #F0F0F0;
    font-size: 0.9375rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td.highlight-col {
    background: #FFF6EB;
    font-weight: 600;
    color: #DF7103;
}

.comparison-table .check {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table .cross {
    color: #ccc;
}

/* Muted style for "enterprise" column */
.comparison-table td.muted-col {
    color: #999;
}

/* --- Pricing Cards --- */
.pricing-card {
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: #DF7103;
    position: relative;
    box-shadow: 0 12px 40px rgba(223, 113, 3, 0.15);
    transform: scale(1.03);
}

.pricing-card.featured .pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #DF7103;
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card__tagline {
    font-size: 0.875rem;
    font-style: italic;
    color: #DF7103;
    margin-bottom: 12px;
}

.pricing-card__desc {
    font-size: 0.9375rem;
    color: #777;
    margin-bottom: 24px;
}

.pricing-card__price {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8E8E8;
}

.pricing-card__amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #292A29;
    line-height: 1;
}

.pricing-card.featured .pricing-card__amount {
    color: #DF7103;
}

.pricing-card__period {
    font-size: 0.9375rem;
    color: #777;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-card__features li {
    padding: 8px 0;
    font-size: 0.9375rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card__features li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #e8f5e9;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232e7d32'%3E%3Cpath d='M8.5 13.3l-3.2-3.2 1.1-1.1 2.1 2.1 4.6-4.6 1.1 1.1z'/%3E%3C/svg%3E");
    background-size: 20px;
    margin-top: 2px;
}

/* --- Testimonial Cards --- */
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 32px;
}

.testimonial-card__quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #DF7103;
    max-width: none;
}

.testimonial-card__note {
    font-size: 0.75rem;
    color: #999;
    font-style: normal;
    margin-top: 8px;
}

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

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFF6EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #DF7103;
    font-size: 1.125rem;
}

.testimonial-card__name {
    font-weight: 600;
    color: #292A29;
}

.testimonial-card__title {
    font-size: 0.8125rem;
    color: #777;
}

/* --- Step / Process Cards --- */
.step-card {
    position: relative;
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
}

.step-card__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #DF7103;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9375rem;
    max-width: none;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #DF7103 0%, #C86402 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Large decorative circle */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

/* Radial gradient overlay for depth */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-group {
    position: relative;
    z-index: 1;
}

/* --- ROI Calculator --- */
.roi-calculator {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.roi-calculator__input-group {
    margin-bottom: 24px;
}

.roi-calculator__input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #292A29;
}

.roi-calculator__input-group input[type="range"] {
    width: 100%;
    margin-top: 8px;
    accent-color: #DF7103;
}

.roi-calculator__value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #DF7103;
    font-size: 1.25rem;
}

.roi-calculator__results {
    background: #FFF6EB;
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
}

.roi-calculator__result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(223, 113, 3, 0.15);
}

.roi-calculator__result-item:last-child {
    border-bottom: none;
    font-weight: 700;
}

.roi-calculator__result-item .label {
    color: #555;
}

.roi-calculator__result-item .value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #292A29;
    font-size: 1.125rem;
}

.roi-calculator__result-item .value.savings {
    color: #2e7d32;
    font-size: 1.5rem;
}

/* --- FAQ --- */
.faq-item {
    border-bottom: 1px solid #E8E8E8;
    padding: 24px 0;
}

.faq-item:first-child {
    border-top: 1px solid #E8E8E8;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #292A29;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    font-family: inherit;
}

.faq-question:hover {
    color: #DF7103;
}

.faq-question .icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: #DF7103;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: none;
}

/* --- Forms --- */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #292A29;
    font-size: 0.9375rem;
}

.form-group label .required {
    color: #d32f2f;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #292A29;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #FFFFFF;
}

.form-control:focus {
    outline: none;
    border-color: #DF7103;
    box-shadow: 0 0 0 3px rgba(223, 113, 3, 0.12);
}

.form-control::placeholder {
    color: #AAA;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23777'%3E%3Cpath d='M5.3 7.7l4.7 4.7 4.7-4.7-1.1-1.1-3.6 3.6-3.6-3.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-help {
    font-size: 0.8125rem;
    color: #999;
    margin-top: 6px;
}

/* --- Form Context Note --- */
.form-context-note {
    background: #F9F9F9;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
    background: #292A29;
    color: #B0B0B0;
    padding: 80px 0 40px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.site-footer__brand p {
    color: #888;
    font-size: 0.9375rem;
    margin-top: 16px;
    max-width: 300px;
}

.site-footer h4 {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.site-footer__links {
    list-style: none;
}

.site-footer__links li {
    margin-bottom: 12px;
}

.site-footer__links a {
    color: #888;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.site-footer__links a:hover {
    color: #DF7103;
}

.site-footer__bottom {
    border-top: 1px solid #3A3A3A;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer__bottom p {
    color: #666;
    font-size: 0.8125rem;
}

.site-footer__bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.site-footer__bottom-links a {
    color: #666;
    font-size: 0.8125rem;
}

.site-footer__bottom-links a:hover {
    color: #DF7103;
}

/* --- Icon / SVG inline helpers --- */
.icon-inline {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}

.svg-icon {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #DF7103;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- Alerts --- */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.alert--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert--error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* --- Page Header (inner pages) --- */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #FFF6EB 0%, #FFFFFF 100%);
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
}

/* --- Value Props Row --- */
.value-props {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 0;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: #555;
}

.value-prop__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #FFF6EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Outcome Summary (after step-card grids) --- */
.outcome-summary {
    text-align: center;
    margin-top: 48px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #FFF6EB 0%, #FFF0DD 100%);
    border-radius: 12px;
    border: 1px solid rgba(223, 113, 3, 0.12);
}

.outcome-summary p {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #292A29;
    font-style: italic;
    max-width: none;
}

/* --- Utility --- */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section { padding: 80px 0; }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    .section { padding: 60px 0; }
    .hero { padding: 120px 0 60px; }
    .page-hero { padding: 120px 0 40px; }

    .grid--2, .grid--3, .grid--4,
    .grid--2-1, .grid--1-2, .grid--1-1 {
        grid-template-columns: 1fr;
    }

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

    /* Hero stats: 2x2 grid on mobile */
    .hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero__content > p {
        font-size: 1.0625rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-group .btn {
        text-align: center;
    }

    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }

    .site-nav__links,
    .site-nav__cta {
        display: none;
    }

    .site-nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        border-bottom: 1px solid #E8E8E8;
        padding: 16px 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .site-nav__cta.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        padding: 0 24px 16px;
        border-bottom: 1px solid #E8E8E8;
    }

    .site-nav__links.open + .site-nav__cta.open {
        top: auto;
    }

    .mobile-nav-open .site-nav__links,
    .mobile-nav-open .site-nav__cta {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        border-bottom: 1px solid #E8E8E8;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        padding: 16px 24px 24px;
        flex-direction: column;
        gap: 8px;
    }

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

    .mobile-menu a {
        display: block;
        padding: 12px 0;
        color: #555;
        font-weight: 500;
        font-size: 1rem;
        border-bottom: 1px solid #F0F0F0;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu .btn {
        margin-top: 8px;
        text-align: center;
    }

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

    .site-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.8125rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }

    .roi-calculator {
        padding: 24px;
    }

    .value-props {
        flex-direction: column;
        align-items: center;
    }

    .logo-bar__logos {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .hero { padding: 100px 0 48px; }
    .cta-section { padding: 60px 0; }

    .hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero__stats > div {
        padding: 14px 16px;
    }

    .hero__stat-value {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Custom Graphics — Hero Split Layout, Illustrations, Animations
   ========================================================================== */

/* --- Hero Split (2-column) Layout --- */
.hero--split .hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero--split .hero__content {
    max-width: none;
}

.hero--split .hero__content > p {
    margin-left: 0;
    margin-right: 0;
}

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

.hero__mockup-svg {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
    border-radius: 12px;
}

.hero--split .hero__stats {
    justify-content: flex-start;
}

/* --- Larger icon variant for problem cards --- */
.feature-card__icon--lg {
    width: 72px;
    height: 72px;
    border-radius: 16px;
}

/* --- Step card illustration container --- */
.step-card__illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.step-card__illustration svg {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* --- Scroll-triggered fade-in animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered delays for grid children */
.grid .fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.grid .fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.grid .fade-in-up:nth-child(4) { transition-delay: 0.3s; }

/* --- Wave section divider --- */
.section-divider-wave {
    position: relative;
    height: 48px;
    overflow: hidden;
    margin-top: -1px;
}

.section-divider-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
}

.section-divider-wave--orange {
    margin-bottom: -1px;
}

/* --- Improved card hover micro-interactions --- */
.feature-card:hover .feature-card__icon svg,
.feature-card:hover .feature-card__icon--lg svg {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.feature-card__icon svg,
.feature-card__icon--lg svg {
    transition: transform 0.3s ease;
}

.step-card:hover .step-card__number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.step-card__number {
    transition: transform 0.3s ease;
}

.step-card:hover .step-card__illustration svg {
    transform: translateY(-4px);
    transition: transform 0.4s ease;
}

.step-card__illustration svg {
    transition: transform 0.4s ease;
}

/* --- Responsive: Hero Split --- */
@media (max-width: 1024px) {
    .hero--split .hero__split {
        gap: 32px;
    }

    .hero__mockup-svg {
        max-width: 440px;
    }
}

@media (max-width: 768px) {
    .hero--split .hero__split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero--split .hero__content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero--split .btn-group {
        justify-content: center;
    }

    .hero__mockup {
        order: -1;
        margin-bottom: 8px;
    }

    .hero__mockup-svg {
        max-width: 380px;
    }

    .hero--split .hero__stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__mockup-svg {
        max-width: 300px;
    }
}
