* { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary: #F97316;
            --dark: #18181B;
            --gray-900: #27272A;
            --gray-700: #3F3F46;
            --gray-500: #71717A;
            --gray-200: #E4E4E7;
            --gray-50: #FAFAFA;
            --white: #FFFFFF;
            --green: #10B981;
        }

        body {
            font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--white);
        }

        header {
            background: var(--white);
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
        }

        .logo-accent { color: var(--primary); }

        .cta-button {
            background: var(--primary);
            color: white;
            padding: 0.65rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background 0.2s;
        }

        .cta-button:hover { background: #EA580C; }

        .hero {
            max-width: 1280px;
            margin: 0 auto;
            padding: 4rem 1.5rem 2.5rem;
            text-align: center;
        }

        .hero-content { max-width: 980px; margin: 0 auto; }

        .hero-badge {
            display: inline-block;
            background: #FFF7ED;
            color: #C2410C;
            padding: 0.4rem 0.85rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            border: 1px solid #FFEDD5;
        }

        h1 {
            font-size: 3.25rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.25rem;
            letter-spacing: -0.03em;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray-700);
            margin-bottom: 1.75rem;
            line-height: 1.65;
        }

        .hero-subtitle strong { color: var(--dark); }

        .hero-cta-row {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .hero-cta {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.2s;
        }

        .hero-cta:hover {
            background: #EA580C;
            transform: translateY(-1px);
        }

        .hero-secondary {
            display: inline-block;
            background: var(--white);
            color: var(--dark);
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            border: 2px solid var(--gray-200);
            transition: all 0.2s;
        }

        .hero-secondary:hover {
            transform: translateY(-1px);
            border-color: var(--gray-500);
        }

        .micro-note {
            margin-top: 1rem;
            color: var(--gray-500);
            font-size: 0.95rem;
        }

        .micro-note strong { color: var(--dark); }

        .stats {
            display: flex;
            gap: 2.5rem;
            margin: 2.25rem 0 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .stat { text-align: center; min-width: 160px; }

        .stat strong {
            display: block;
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .stat span {
            color: var(--gray-500);
            font-size: 0.9rem;
        }

        .trust-strip {
            max-width: 980px;
            margin: 0.75rem auto 0;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            text-align: left;
        }

        .trust-strip h3 {
            font-size: 1.05rem;
            font-weight: 800;
            margin-bottom: 0.35rem;
        }

        .trust-strip p {
            color: var(--gray-700);
            font-size: 0.98rem;
        }

        .trust-strip .fine {
            margin-top: 0.5rem;
            color: var(--gray-500);
            font-size: 0.9rem;
        }

        .demo-section {
            background: var(--gray-50);
            padding: 5rem 1.5rem;
        }

        .demo-container { max-width: 1100px; margin: 0 auto; }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-label {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-description {
            color: var(--gray-700);
            font-size: 1.1rem;
            max-width: 720px;
            margin: 0 auto;
        }

        .video-container {
            background: white;
            border-radius: 12px;
            padding: 1.25rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 10px 40px rgba(0,0,0,0.05);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border: 0;
        }

        .video-caption {
            margin-top: 1rem;
            color: var(--gray-700);
            font-size: 1rem;
            display: grid;
            gap: 0.4rem;
        }

        .video-caption strong { color: var(--dark); }

        .how-it-works {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            position: relative;
            padding-left: 4rem;
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
        }

        .step h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .step p {
            color: var(--gray-700);
            line-height: 1.6;
        }

        .results {
            background: var(--dark);
            color: white;
            padding: 5rem 1.5rem;
        }

        .results-container { max-width: 1100px; margin: 0 auto; }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .result-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
        }

        .result-number {
            font-size: 2.65rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .result-label { color: #A1A1AA; font-size: 1rem; }

        .pricing {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .price-card {
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            padding: 2.25rem;
            transition: all 0.2s;
        }

        .price-card.featured {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(249,115,22,0.15);
        }

        .price-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

        .price-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .price-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.25rem;
        }

        .price-sub {
            color: var(--gray-500);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--primary);
            margin: 0.75rem 0 0.25rem;
        }

        .price-period {
            font-size: 1rem;
            color: var(--gray-500);
            font-weight: 600;
        }

        .setup-line {
            margin-top: 0.2rem;
            color: var(--gray-700);
            font-size: 0.98rem;
            font-weight: 600;
        }

        .setup-line span {
            color: var(--gray-500);
            font-weight: 600;
        }

        .features-list {
            list-style: none;
            margin: 1.25rem 0 1.5rem;
        }

        .features-list li {
            padding: 0.7rem 0;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .features-list li:before {
            content: '✓';
            color: var(--green);
            font-weight: 900;
            font-size: 1.1rem;
            line-height: 1.2;
        }

        .features-list li strong { color: var(--dark); }

        .small-muted {
            color: var(--gray-500);
            font-size: 0.93rem;
            margin-top: 0.85rem;
        }

        .price-button {
            display: block;
            width: 100%;
            padding: 1rem;
            background: var(--primary);
            color: white;
            text-align: center;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 800;
            transition: background 0.2s;
        }

        .price-button:hover { background: #EA580C; }

        .pricing-footnote {
            margin-top: 2rem;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 1.25rem 1.25rem;
            color: var(--gray-700);
        }

        .pricing-footnote h4 {
            font-size: 1.05rem;
            font-weight: 900;
            margin-bottom: 0.35rem;
        }

        .pricing-footnote p { margin-top: 0.35rem; }

        .demo-booking {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
        }

        .booking-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .booking-calendar {
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            overflow: hidden;
        }

        .booking-benefits {
            padding: 2rem;
            background: var(--gray-50);
            border-radius: 12px;
        }

        .final-cta {
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 5rem 1.5rem;
        }

        .final-cta h2 { color: white; margin-bottom: 1rem; }

        .final-cta p {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .final-cta-button {
            display: inline-block;
            padding: 1.2rem 2.5rem;
            background: white;
            color: var(--primary);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 900;
            font-size: 1.1rem;
            transition: transform 0.2s;
        }

        .final-cta-button:hover { transform: translateY(-2px); }

        footer {
            background: var(--dark);
            color: #A1A1AA;
            padding: 3rem 1.5rem 2rem;
            text-align: center;
        }

        footer a { color: var(--primary); text-decoration: none; }
        footer a:hover { text-decoration: underline; }

        @media (max-width: 968px) {
            .booking-content { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.35rem; }
            h2 { font-size: 2rem; }
            .stats { gap: 1.25rem; }
            .steps-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
        }
/* --- TurboFin: Pricing de-crowding + higher-conversion tweaks --- */

/* Make primary CTAs consistently point to booking */
a.price-button, a.hero-cta, a.cta-button, a.final-cta-button { scroll-margin-top: 90px; }

/* Pricing cards: reduce density */
.features-list.compact { margin: 1.15rem 0 0.9rem; }
.features-list.compact li {
  border-bottom: none;
  padding: 0.45rem 0;
}

/* Details toggle for extra features */
.feature-details {
  margin-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 0.85rem;
}
.feature-details summary {
  cursor: pointer;
  user-select: none;
  font-weight: 800;
  color: var(--dark);
  list-style: none;
}
.feature-details summary::-webkit-details-marker { display: none; }
.feature-details summary::after {
  content: " ▾";
  color: var(--gray-500);
  font-weight: 900;
}
.feature-details[open] summary::after { content: " ▴"; }

.feature-details ul {
  margin-top: 0.6rem;
  padding-left: 1.25rem;
  color: var(--gray-700);
}
.feature-details li { margin: 0.35rem 0; }

/* Slightly more breathing room in pricing card header */
.price-sub { margin-bottom: 1.15rem; }
.setup-line { margin-bottom: 0.25rem; }
.small-muted { margin-top: 0.75rem; }

/* Make "Most Popular" pop without adding clutter */
.price-card.featured { transform: translateY(-6px); }
@media (max-width: 768px) {
  .price-card.featured { transform: none; }
}

/* Make demo buttons feel more clickable */
.price-button, .hero-cta, .cta-button {
  box-shadow: 0 10px 30px rgba(249,115,22,0.12);
}
.price-button:hover, .hero-cta:hover, .cta-button:hover {
  box-shadow: 0 12px 34px rgba(249,115,22,0.18);
}

/* Reduce visual "gridline" feel in pricing cards by softening list spacing on mobile */
@media (max-width: 768px) {
  .features-list li { padding: 0.55rem 0; }
}


/* --- Pricing: even less crowded (overrides) --- */

/* Tighten the overall card typography slightly */
.price-card { padding: 2.35rem; }
.price-sub { font-size: 0.92rem; }

/* Make feature bullets single-line, not "two-column" */
.features-list.compact li {
  display: block !important;
  gap: 0 !important;
  padding: 0.35rem 0 !important;
  line-height: 1.35 !important;
  font-size: 0.95rem !important;
}

/* Keep the checkmark but reduce its visual weight */
.features-list.compact li:before {
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
}

/* Reduce emphasis so the list scans faster */
.features-list.compact strong {
  font-weight: 800;
}

/* Remove any leftover divider feel */
.features-list.compact li { border-bottom: 0 !important; }
.features-list.compact { margin: 1rem 0 0.75rem !important; }

/* Make the details toggle more subtle */
.feature-details { padding-top: 0.65rem !important; }
.feature-details summary { font-size: 0.95rem; color: var(--gray-700) !important; font-weight: 800; }
.feature-details summary::after { color: var(--gray-500) !important; }

/* Reduce footer blurb density inside the cards */
.small-muted { font-size: 0.88rem !important; line-height: 1.45 !important; margin-top: 0.6rem !important; }

/* Slightly reduce the button height in cards */
.price-button { padding: 0.9rem !important; font-size: 0.98rem !important; }

/* Mobile: tighten spacing further */
@media (max-width: 768px) {
  .price-card { padding: 2.1rem; }
  .features-list.compact li { font-size: 0.94rem !important; }
}
