:root {
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

    /* PostHog Inspired Palette */
    --ph-beige: #F3F4EF;
    --ph-orange: #F54E00;
    --ph-black: #2D2D2D;
    --ph-gray: #BFBFBC;
    --ph-white: #FFFFFF;
    --ph-blue: #3754DB;
    --ph-dark-blue: #1D274E;

    --color-bg-body: var(--ph-beige);
    --color-text-main: var(--ph-black);
    --color-text-muted: #626260;
    --color-primary-accent: var(--ph-orange);

    /* Global Styles */
    --container-width: 1240px;
    --border-radius-base: 4px;
    --border-radius-card: 6px;
    --border-radius-pill: 999px;

    --shadow-hard: 4px 4px 0px rgba(0, 0, 0, 1);
    --shadow-soft: 0px 1px 2px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1);
    --border-std: 1px solid rgba(0, 0, 0, 0.1);
    --border-hard: 2px solid #000;

    /* Pricing Plan Colors */
    --color-plan-free: #666666;
    --color-plan-basic: #F54E00;
    --color-plan-plus: #3754DB;
}

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

body {
    font-family: var(--font-stack);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text-main);
    line-height: 1.1;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    text-align: inherit;
}

a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--ph-orange);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Utilities */
.mt-8 {
    margin-top: 32px;
}

/* Navbar */
.navbar {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--color-bg-body);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    justify-self: start;
}

.nav-links {
    display: flex;
    gap: 32px;
    justify-self: center;
    align-items: center;
}

.nav-links>a {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-actions {
    justify-self: end;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* removed duplicate .nav-links definition */

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.chevron {
    font-size: 0.7em;
    margin-left: 0;
    /* Handled by gap in flex parent */
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius-base);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease;
}

.btn-dark {
    background-color: var(--ph-orange);
    color: #fff;
    border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
}

.btn-dark:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 #000;
    color: #fff;
}

.btn-dark:active {
    transform: translate(1px, 1px);
    box-shadow: 0px 0px 0 #000;
}

.btn-outline {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 #000;
}

.btn-outline:active {
    transform: translate(1px, 1px);
    box-shadow: 0px 0px 0 #000;
}

/* Hero Section */
.hero {
    padding: 160px 0 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--ph-black);
    position: relative;
    z-index: 10;
}

/* Add a highlight effect behind text typical of brutalist design */
.hero-title br {
    display: block;
}

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 680px;
    margin-bottom: 48px;
    font-weight: 500;
    position: relative;
    z-index: 10;
}

.hero-cta {
    margin-bottom: 60px;
    /* Scale button up */
    transform: scale(1.1);
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

/* Hero Illustration - PostHog Style: Bordered Image */
.hero-illustration {
    position: absolute;
    right: 20px;
    top: 380px;
    width: 500px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-3deg);
}

.hero-rabbit-wrapper {
    position: absolute;
    left: -100px;
    top: 300px;
    width: 600px;
    height: 500px;
    z-index: 10;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.hero-rabbit-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.rabbit-hop-exit {
    transform: translate(-100%, 200px) rotate(-45deg);
    opacity: 0;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.2) contrast(1.1);
    /* Slight vintage feel */
}

/* Logo Strip */
.logo-strip {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 32px 0;
    margin-top: 60px;
    background: #fff;
    overflow: hidden;
    /* Mask the scrolling content */
}

/* Keyframes for infinite scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }

    /* Move 1/3rd (one full set) */
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Consistent spacing */
    width: max-content;
    /* Force single line */
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-strip .container {
    /* Remove container constraint for full-width scroll if it existed */
    display: block;
    max-width: 100%;
    padding: 0;
}


.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    opacity: 0.6;
    transition: all 0.2s;
    white-space: nowrap;
}

.logo-text:hover {
    opacity: 1;
    color: var(--ph-orange);
    transform: scale(1.05);
}

/* Bottom Logo Strip overrides */
.bottom-logo-strip {
    overflow: hidden;
    padding: 40px 0;
    background: #000;
    /* A dark background makes the white logos pop */
}

.bottom-logo-strip .container {
    max-width: 100% !important;
    /* Force full width */
    padding: 0 !important;
    display: block !important;
}

.logo-text-lg {
    font-weight: 800;
    font-size: 1.75rem;
    color: #fff;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* Feature Sections */
section[class^="feature-split"] {
    padding: 160px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.split-container {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
    text-align: left;
}

.split-content {
    flex: 1;
    max-width: 500px;
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 32px;
    text-align: left;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    display: flex;
    gap: 12px;
    font-size: 1.15rem;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.feature-list .icon {
    color: var(--ph-orange);
    font-weight: 900;
}

.split-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Chat Interfaces in Features - PostHog Style */
.chat-interface {
    background: #fff;
    border: 2px solid #000;
    box-shadow: var(--shadow-hard);
    border-radius: 8px;
    padding: 24px;
    width: 100%;
    max-width: 480px;
}

.mobile-chat-cards {
    /* Different styling for mobile stack visually */
    background: transparent;
    border: none;
    box-shadow: none;
}

.mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.msg-card {
    background: #fff;
    padding: 16px;
    border: 2px solid #000;
    border-radius: 0px;
    /* Brutalist */
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s;
}

.msg-card:hover {
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.msg-user-card {
    background: #FDFDFD;
    border-color: #2D2D2D;
}

.msg-ai-card {
    background: #fff;
}

.msg-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
}

.msg-footer .ReplyRabbit-badge {
    background: var(--ph-orange);
    color: #fff;
    font-weight: bold;
    border-radius: 0;
    width: 20px;
    height: 20px;
}

/* Complex Chat UI */
.chat-header {
    border-bottom: 2px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    background: var(--ph-blue);
    color: white;
    font-weight: bold;
    border: 1px solid #000;
}

.msg {
    align-items: flex-start;
    margin-bottom: 16px;
}

.msg-bubble {
    background: #f4f4f4;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    color: #333;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.msg-ai .msg-bubble {
    background: #fff;
    border-color: #000;
    border-width: 1px;
}

.msg-user .msg-bubble {
    background: var(--ph-orange);
    color: white;
    border: 1px solid #000;
}

/* Gradient overrides */
.gradient-bubble {
    background: var(--ph-orange) !important;
    color: white !important;
}

/* Persona Card */
.persona-card-content {
    background: #fff;
    padding: 32px;
    border: 2px solid #000;
    box-shadow: 6px 6px 0 #000;
    /* Deep shadow */
    border-radius: 4px;
}

.persona-selector {
    background: #fff;
    border: 1px solid #000;
    padding: 4px;
    border-radius: 99px;
    display: inline-flex;
    margin-bottom: 20px;
}

.persona-option.active {
    background: var(--ph-orange);
    color: white;
    border-radius: 99px;
}

.tag-badge {
    background: #eee;
    color: #333;
    border: 1px solid #999;
}

.tag-badge.dark {
    background: #000;
    color: #fff;
}

/* Stats Section */
.stats-section {
    padding: 160px 0;
}

.stats-card-main {
    background: var(--ph-beige);
    padding: 60px 80px;
    border: 2px solid #000;
    box-shadow: 8px 8px 0 #000;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 0;
}

.huge-stat {
    font-size: 10rem;
    font-weight: 900;
    color: var(--ph-orange);
    text-shadow: 4px 4px 0 #000;
    line-height: 1;
}

.stats-desc-wrapper {
    flex: 1;
    max-width: 650px;
}

.stats-desc {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--ph-black);
    line-height: 1.3;
    margin-bottom: 16px;
}

.stats-decoration {
    height: 6px;
    width: 140px;
    background: var(--ph-orange);
    border: 2px solid #000;
    position: relative;
}

.stats-divider-line {
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 60px 0;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: none;
    padding-top: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-weight: 900;
    font-size: 4rem;
    color: #000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #666;
    text-transform: uppercase;
}

/* Agentic Grid */
.platform-overview {
    padding: 160px 0;
    background: var(--ph-beige);
}

.section-title-center {
    font-size: 3.5rem;
    margin-bottom: 80px;
    text-align: center;
}

.section-title-center em {
    color: var(--ph-orange);
    font-style: normal;
    text-decoration: underline;
    text-decoration-thickness: 4px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.platform-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 64px;
    box-shadow: var(--shadow-hard);
    transition: all 0.2s;
    text-align: center;
}

.platform-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 1);
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}

/* Unified Inbox Visual */
.unified-inbox-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* Gap handled by connection line */
    padding: 40px;
    background: #fff;
    border: none;
    border-radius: 8px;
    position: relative;
    height: 100%;
    /* Fill available height if stretched */
    min-height: 240px;
    /* Ensure decent minimum height */
}

.inbox-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.inbox-channels img {
    width: 48px;
    height: 48px;
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 4px 4px 0 #000;
    background: white;
    /* Hidden by default - animated on scroll */
    opacity: 0;
    transform: scale(0);
}

/* Animations only run when section has .animate class */
.platform-overview.animate .inbox-channels img {
    animation: inboxIconPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.platform-overview.animate .inbox-channels img:nth-child(1) {
    animation-delay: 0.1s;
}

.platform-overview.animate .inbox-channels img:nth-child(2) {
    animation-delay: 0.3s;
}

.platform-overview.animate .inbox-channels img:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes inboxIconPopIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    60% {
        transform: scale(1.15);
    }

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

.connection-lines {
    width: 60px;
    height: 120px;
    margin: 0 -2px;
    z-index: 1;
    display: flex;
    align-items: center;
}

.connection-lines svg {
    width: 100%;
    height: 100%;
}

/* Connection lines hidden by default */
.connection-lines svg path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

/* Animated connection lines - draw in like data flowing */
.platform-overview.animate .connection-lines svg path {
    animation: drawLine 0.6s ease-out forwards;
}

.platform-overview.animate .connection-lines svg path:nth-child(1) {
    animation-delay: 1.0s;
}

.platform-overview.animate .connection-lines svg path:nth-child(2) {
    animation-delay: 1.15s;
}

.platform-overview.animate .connection-lines svg path:nth-child(3) {
    animation-delay: 1.3s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.central-node {
    background: var(--ph-orange);
    color: white;
    padding: 16px 32px;
    border: 2px solid #000;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 6px 6px 0 #000;
    z-index: 2;
    /* Hidden by default */
    opacity: 0;
    transform: scale(0);
}

.platform-overview.animate .central-node {
    animation: inboxIconPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.75s;
}



/* Knowledge Base Mockup */
.kb-mockup {
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.kb-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Handoff Note Mockup */
.handoff-note-mockup {
    background: #fffbe6;
    border: 2px solid #000;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 4px 4px 0 #000;
    font-family: 'Inter', sans-serif;
}

.note-header {
    font-weight: 800;
    font-size: 0.9rem;
    color: #856404;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.note-body {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 12px;
}

.note-footer {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    border-top: 1px dashed #ccc;
    padding-top: 8px;
}

/* Guardrails Checker */
.guardrails-checker {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    background: #fff;
    border: 2px solid #000;
    padding: 12px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.check-item.passed {
    border-color: #28a745;
    box-shadow: 4px 4px 0 #28a745;
}

.check-item.safe {
    background: var(--ph-orange);
    color: #fff;
    border-color: #000;
    box-shadow: 4px 4px 0 #000;
}

.check-icon {
    font-size: 1.2rem;
}

.ReplyRabbit-node {
    background: var(--ph-orange);
    border: 2px solid #000;
}

/* Integrations */
.integrations-section {
    padding: 160px 0;
    background: #fff;
    border-top: 1px solid #ccc;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.int-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    box-shadow: 2px 2px 0 #000;
    transition: transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.int-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 #000;
}

.int-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tag-soon {
    font-size: 8px;
    background: var(--ph-orange);
    color: #fff;
    padding: 2px 4px;
    border-radius: 2px;
    border: 1px solid #000;
    margin-left: 4px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.int-card {
    position: relative;
    overflow: hidden;
}

/* Final CTA */
.final-cta-section {
    background: var(--ph-orange);
    padding: 160px 0;
    text-align: center;
}

/* Hide abstract shapes */
.cta-background-wrapper {
    display: none;
}

.cta-card-white {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-heading {
    color: #fff;
    font-size: 4rem;
    text-shadow: 4px 4px 0 #000;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 900px;
}

.cta-card-white .btn-dark {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    font-size: 1.25rem;
    padding: 20px 48px;
}

.cta-card-white .btn-dark:hover {
    box-shadow: 6px 6px 0 #000;
}

/* Footer */
.site-footer {
    background: var(--ph-beige);
    color: var(--ph-black);
    padding: 80px 0 40px 0;
    border-top: 2px solid #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 60px;
}

.footer-branding-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.05em;
    text-transform: lowercase;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.icon-box {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: all 0.1s ease;
    background: #fff;
    color: #000;
    box-shadow: 2px 2px 0 #000;
}

.icon-box:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 #000;
    color: var(--ph-orange);
}

.icon-box:active {
    transform: translate(1px, 1px);
    box-shadow: 0px 0px 0 #000;
}

.footer-nav-col h4 {
    color: #000;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-nav-col h4 a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    display: inline;
    margin-bottom: 0;
}

.footer-nav-col h4 a:hover {
    text-decoration: underline;
    color: inherit;
}

.footer-nav-col a {
    display: block;
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.1s;
}

.footer-nav-col a:hover {
    color: var(--ph-orange);
}

.tag-soon-emoji {
    font-size: 0.7rem;
    color: #888;
    margin-left: 4px;
    font-weight: 800;
}

.mt-legal {
    margin-top: 40px;
}

.footer-badge-col {
    display: flex;
    justify-content: flex-end;
}

.badge-aicpa-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    box-shadow: 4px 4px 0 #000;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.badge-aicpa-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: #333;
}

.badge-soc-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
}

.badge-tiny {
    font-size: 0.45rem;
    font-weight: 700;
    color: #666;
    margin-top: 2px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #000;
    display: flex;
    justify-content: flex-end;
}

.copyright-text {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    /* Keep illustration on side but smaller for tablet "PC feel" */
    .hero-illustration {
        position: absolute;
        right: 10px;
        top: 320px;
        width: 320px;
        max-width: 320px;
        transform: rotate(-2deg) scale(0.85);
        z-index: 1;
    }

    .hero-content {
        max-width: 55%;
        align-items: flex-start;
        text-align: left;
        margin-left: 5%;
    }

    .split-container {
        flex-direction: column;
    }

    .split-visual {
        margin-top: 40px;
    }

    .platform-card {
        height: auto;
        min-height: 500px;
    }

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

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

    .stats-card-main {
        padding: 60px 40px;
        border-radius: 24px;
    }

    .stats-header {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .huge-stat {
        font-size: 10rem;
    }

    .stats-desc {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-val {
        font-size: 4.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .huge-stat {
        font-size: 6rem;
    }

    .stats-desc {
        font-size: 1.25rem;
    }

    .stat-val {
        font-size: 3rem;
    }

    /* On mobile, stack hero illustration below */
    .hero-illustration {
        position: relative;
        right: auto;
        top: auto;
        margin: 40px auto 0;
        width: 100%;
        max-width: 400px;
        transform: rotate(0deg) scale(1);
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin-left: 0;
    }
}

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

    .huge-stat {
        font-size: 4.5rem;
        text-shadow: 2px 2px 0 #000;
    }

    .stats-desc {
        font-size: 1.1rem;
    }

    .stats-card-main {
        padding: 40px 24px;
    }

    .stat-val {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stats-divider-line {
        margin: 40px 0;
    }
}

/* Missing Layout Styles for Bottom Logo Strip & Visuals */
.bottom-logo-strip {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid #333;
}

.logo-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-white {
    filter: brightness(0) invert(1);
    /* Make white */
    opacity: 0.8;
    height: 32px;
    width: auto;
}

.logo-text-lg {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Platform Card Visual Alignments */
.platform-card {
    display: flex;
    flex-direction: column;
}

.card-visual {
    flex: 1;
    display: flex;
    width: 100%;
}

.visual-product-recs {
    justify-content: center;
    align-items: flex-end;
}

.visual-social {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
}

.visual-workflow {
    align-items: center;
    justify-content: center;
}

.visual-subscription {
    justify-content: center;
    align-items: center;
}

.visual-human {
    align-items: center;
    justify-content: center;
}

.visual-safety {
    align-items: flex-end;
    justify-content: center;
}

/* Workflow Diagram Styles */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    padding: 20px;
}

.icon-node {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.icon-node img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ReplyRabbit-center {
    width: 80px;
    height: 80px;
    background: var(--ph-orange);
    color: #fff;
    border-radius: 50%;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2rem;
    z-index: 2;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

/* Workflow Diagram Pop-up Animation */
@keyframes workflowNodePopIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    60% {
        transform: scale(1.15);
    }

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

.workflow-diagram .icon-node,
.workflow-diagram .ReplyRabbit-center {
    opacity: 0;
    animation: workflowNodePopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.workflow-diagram .icon-node:nth-child(1) {
    animation-delay: 0.1s;
}

.workflow-diagram .icon-node:nth-child(2) {
    animation-delay: 0.3s;
}

.workflow-diagram .icon-node:nth-child(3) {
    animation-delay: 0.5s;
}

.workflow-diagram .ReplyRabbit-center {
    animation-delay: 0.7s;
}

/* Connection line animation */
.workflow-diagram .lines-svg {
    opacity: 0;
    animation: workflowNodePopIn 0.3s ease forwards;
    animation-delay: 0.9s;
}

.lines-svg {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #000;
    z-index: 1;
}

/* Visual Sub-elements styling */
.product-card-mockup {
    width: 220px;
    padding: 12px;
}

.img-placeholder {
    height: 160px;
    background: #eee;
    margin-bottom: 12px;
}

.sub-ui-wrapper {
    background: #fff;
    border: 2px solid #000;
    padding: 16px;
    border-radius: 4px;
}

.agent-collab-ui {
    background: #fff;
    border: 2px solid #000;
    padding: 16px;
    width: 100%;
    max-width: 300px;
}

.action-btn {
    background: #eee;
    border: 1px solid #000;
    margin-bottom: 8px;
    padding: 8px;
    font-size: 0.8rem;
}

/* ReplyRabbit Inbox Mockup Styles - Appended */
.chatmate-inbox-container {
    display: flex;
    width: 100%;
    height: 500px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    border: 2px solid #000;
    /* Outer border */
    box-shadow: 4px 4px 0 #000;
}

.inbox-nav {
    width: 60px;
    background: #F3F4EF;
    border-right: 1px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    gap: 16px;
}

.nav-icon {
    font-size: 1.2rem;
    opacity: 0.6;
    cursor: pointer;
    transition: 0.2s;
}

.nav-icon:hover,
.nav-icon.active {
    opacity: 1;
    transform: scale(1.1);
}

.inbox-list {
    width: 160px;
    background: #fff;
    border-right: 1px solid #000;
    display: flex;
    flex-direction: column;
}

.list-header {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #000;
    background: #fafafa;
}

.list-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.1s;
}

.list-item:hover {
    background: #eee;
}

.list-item.active {
    background: #EFF6FF;
    border-left: 4px solid var(--ph-orange);
}

.list-item-name {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.list-item-preview {
    font-size: 0.75rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inbox-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.area-header {
    height: 54px;
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
    padding: 0 16px;
    justify-content: space-between;
    background: #fff;
}

.user-info {
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.platform-badge {
    background: #EFF6FF;
    color: #3754DB;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #3754DB;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
}

.area-messages {
    flex: 1;
    /* Take up all available space */
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #F9FAFB;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.chat-bubble.incoming {
    align-self: flex-start;
    background: #fff;
    border: 1px solid #000;
    border-top-left-radius: 0;
}

.chat-bubble.outgoing {
    align-self: flex-end;
    background: #3754DB;
    /* Stronger blue */
    color: #fff;
    border: 1px solid #000;
    border-top-right-radius: 0;
}

.chat-bubble.outgoing .chat-bubble-meta {
    color: rgba(255, 255, 255, 0.8);
}

.chat-bubble-meta {
    font-size: 0.65rem;
    color: #888;
    margin-top: 6px;
    text-align: right;
    font-weight: 600;
}

.inbox-input-mock {
    padding: 12px;
    border-top: 1px solid #000;
    background: #fff;
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    /* Prevent shrinking or growing */
}

.input-field {
    flex: 1;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
}

.send-btn {
    width: 40px;
    height: 40px;
    background: var(--ph-orange);
    border: 1px solid #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000;
}

/* Dashboard Mockup Styles */
.dashboard-mockup {
    background: #F3F4EF;
    border: 2px solid #000;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 1);
    border-radius: 8px;
    padding: 32px;
    width: 100%;
    max-width: 800px;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.dash-header {
    margin-bottom: 24px;
}

.dash-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.dash-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.dash-stat-card {
    background: #fff;
    border: 1px solid #000;
    padding: 16px;
    box-shadow: 4px 4px 0 #000;
}

.dash-stat-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dash-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
}

.dash-progress-box {
    background: #fff;
    border: 1px solid #000;
    padding: 16px;
    box-shadow: 4px 4px 0 #000;
    margin-bottom: 24px;
}

.dash-progress-header {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.dash-progress-bar-bg {
    height: 12px;
    background: #eee;
    border: 1px solid #000;
}

.dash-progress-bar-fill {
    height: 100%;
    background: var(--ph-orange);
    border-right: 1px solid #000;
}

.dash-step-card {
    background: #fff;
    border: 1px solid #000;
    padding: 16px;
    display: flex;
    gap: 16px;
    box-shadow: 4px 4px 0 #000;
}

.dash-step-icon {
    width: 32px;
    height: 32px;
    background: var(--ph-orange);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    flex-shrink: 0;
}

.dash-step-tag {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    background: #FEF3C7;
    padding: 2px 6px;
    border: 1px solid #000;
    display: inline-block;
    margin-bottom: 4px;
}

.dash-step-action {
    margin-top: 12px;
    background: var(--ph-orange);
    color: #fff;
    border: 1px solid #000;
    padding: 6px 16px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 2px 2px 0 #000;
    display: inline-block;
}

@media (max-width: 600px) {
    .dash-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Profile Sidebar */
.sidebar-profile {
    width: 200px;
    border-left: 1px solid #000;
    background: #fff;
    padding: 16px;
    display: none;
}

@media (min-width: 768px) {
    .sidebar-profile {
        display: block;
    }
}

.profile-section {
    margin-bottom: 24px;
}

.profile-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.profile-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}

/* ========================================
   NAVIGATION DROPDOWN
   ======================================== */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    border-radius: 4px;
    min-width: 180px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.15s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ph-black);
    transition: background 0.1s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--ph-orange);
    color: #fff;
}

/* ========================================
   BLOG PAGES
   ======================================== */

.blog-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 4rem;
    margin-bottom: 16px;
}

.blog-hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.blog-listing {
    padding: 60px 0 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.blog-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 6px;
    box-shadow: 4px 4px 0 #000;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000;
}

.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--ph-orange) 0%, #ff8c42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #000;
}

.blog-card-placeholder {
    font-size: 3rem;
    text-align: center;
}

.blog-card-placeholder p {
    font-size: 0.9rem;
    color: #fff;
    margin-top: 8px;
}

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

.blog-card-category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ph-orange);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
}

.blog-cta-section {
    padding: 80px 0;
    background: var(--ph-beige);
}

.blog-cta-card {
    background: var(--ph-orange);
    padding: 60px;
    border: 2px solid #000;
    box-shadow: 8px 8px 0 #000;
    border-radius: 8px;
    text-align: center;
}

.blog-cta-card h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 #000;
}

.blog-cta-card p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.blog-cta-card .btn-dark {
    background: #fff;
    color: #000;
}

/* Blog Post Article */
.article-header {
    padding: 80px 0 40px;
    text-align: center;
}

.article-back-link {
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    color: var(--ph-orange);
}

.article-back-link:hover {
    text-decoration: underline;
}

.article-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ph-orange);
    background: rgba(245, 78, 0, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--ph-orange);
    margin-bottom: 16px;
}

.article-title {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto 32px;
    line-height: 1.15;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--ph-orange);
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.article-details {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.article-featured-image {
    padding: 0 0 60px;
}

.featured-image-placeholder {
    background: linear-gradient(135deg, var(--ph-orange) 0%, #ff8c42 100%);
    border: 2px solid #000;
    box-shadow: 8px 8px 0 #000;
    border-radius: 8px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.featured-image-placeholder p {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 16px;
}

.article-content {
    padding: 0 0 80px;
}

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

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-main);
}

.article-body p {
    margin-bottom: 24px;
    font-size: 1.15rem;
    color: var(--color-text-main);
}

.article-intro {
    font-size: 1.35rem !important;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-muted) !important;
    border-left: 4px solid var(--ph-orange);
    padding-left: 24px;
    margin-bottom: 40px !important;
}

.article-body h2 {
    font-size: 1.75rem;
    margin: 48px 0 20px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 24px 24px;
}

.article-body li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.article-quote {
    background: var(--ph-beige);
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    padding: 32px;
    margin: 40px 0;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
}

.article-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 700;
    color: var(--ph-orange);
}

.article-feature-box {
    background: #fff;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    padding: 32px;
    margin: 32px 0;
    border-radius: 4px;
}

.article-feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--ph-orange);
}

.article-feature-box ul {
    margin: 0;
    list-style: none;
}

.article-feature-box li {
    position: relative;
    padding-left: 24px;
}

.article-feature-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ph-orange);
    font-weight: 800;
}

.article-cta {
    padding: 60px 0;
    background: var(--ph-beige);
}

.article-cta-card {
    background: #fff;
    border: 2px solid #000;
    box-shadow: 6px 6px 0 #000;
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.article-cta-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.article-cta-card p {
    margin-bottom: 24px;
}

.related-posts {
    padding: 80px 0;
}

.related-posts h3 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 700px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FREE TOOLS PAGE
   ======================================== */

.tools-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.tools-hero h1 {
    font-size: 4rem;
    margin-bottom: 16px;
}

.tools-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.tools-listing {
    padding: 60px 0 100px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.tool-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 4px 4px 0 #000;
    padding: 32px;
    display: flex;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s ease;
}

.tool-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000;
}

.tool-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff 0%, #fef5f0 100%);
}

@media (max-width: 700px) {
    .tool-card-featured {
        grid-column: span 1;
    }
}

.tool-card-coming-soon {
    opacity: 0.7;
    cursor: default;
}

.tool-card-coming-soon:hover {
    transform: none;
    box-shadow: 4px 4px 0 #000;
}

.tool-card-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.tool-card-content {
    flex: 1;
}

.tool-card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--ph-orange);
    color: #fff;
    padding: 4px 8px;
    border-radius: 2px;
    border: 1px solid #000;
    margin-bottom: 12px;
}

.tool-card-badge-soon {
    background: #888;
}

.tool-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.tool-card-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.tool-card-cta {
    font-weight: 700;
    color: var(--ph-orange);
}

.tools-cta-section {
    padding: 80px 0;
    background: var(--ph-beige);
}

.tools-cta-card {
    background: #fff;
    border: 2px solid #000;
    box-shadow: 8px 8px 0 #000;
    border-radius: 8px;
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tools-cta-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.tools-cta-card p {
    margin-bottom: 24px;
}

/* ========================================
   ROI CALCULATOR
   ======================================== */

.roi-hero {
    padding: 100px 0 40px;
    text-align: center;
}

.roi-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.roi-hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-muted);
}

.roi-benefits {
    padding: 40px 0 60px;
}

.roi-section-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ph-orange);
    margin-bottom: 24px;
    text-align: center;
}

.roi-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .roi-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .roi-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.roi-benefit-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 6px;
    box-shadow: 4px 4px 0 #000;
    padding: 24px;
    text-align: center;
}

.roi-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.roi-benefit-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.roi-benefit-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.roi-calculator-section {
    padding: 60px 0;
    background: var(--ph-beige);
}

.roi-calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: #fff;
    border: 2px solid #000;
    box-shadow: 8px 8px 0 #000;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .roi-calculator-wrapper {
        grid-template-columns: 1fr;
    }
}

.roi-calculator-inputs {
    padding: 48px;
}

.roi-calculator-inputs h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.roi-calculator-intro {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.roi-input-group {
    margin-bottom: 28px;
}

.roi-input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ph-black);
}

.roi-slider-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.roi-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: linear-gradient(to right, var(--ph-orange) 0%, var(--ph-orange) var(--slider-fill, 50%), #ddd var(--slider-fill, 50%), #ddd 100%);
    border-radius: 4px;
    outline: none;
    border: 1px solid #000;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000;
}

.roi-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000;
}

.roi-slider-value {
    min-width: 140px;
    text-align: right;
}

.roi-slider-value span:first-child {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ph-black);
}

.roi-slider-unit {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.roi-email-capture {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #ddd;
}

.roi-email-capture label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.roi-email-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: inherit;
    box-shadow: 2px 2px 0 #000;
}

.roi-email-input:focus {
    outline: none;
    border-color: var(--ph-orange);
}

.roi-email-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.roi-calculator-results {
    background: var(--ph-orange);
    padding: 48px;
    color: #fff;
}

.roi-results-header {
    margin-bottom: 32px;
}

.roi-results-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.roi-results-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 8px;
}

.roi-result-main {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #000;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.roi-result-value-big {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 0 #000;
}

.roi-result-label-big {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-top: 8px;
}

.roi-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.roi-result-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.roi-result-value {
    font-size: 1.75rem;
    font-weight: 800;
}

.roi-result-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-top: 4px;
}

.roi-results-cta {
    text-align: center;
}

.btn-full {
    width: 100%;
}

.roi-results-cta .btn-dark {
    background: #fff;
    color: #000;
    font-size: 1.1rem;
    padding: 16px 32px;
}

.roi-results-note {
    font-size: 0.85rem;
    margin-top: 12px;
    opacity: 0.8;
}

/* Testimonials */
.roi-testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.testimonial-card {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    box-shadow: 4px 4px 0 #000;
    padding: 32px;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--ph-orange);
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 0.9rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.roi-final-cta {
    background: var(--ph-orange);
    padding: 100px 0;
}

.roi-cta-card {
    text-align: center;
}

.roi-cta-card h2 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 4px 4px 0 #000;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.roi-cta-card .btn-dark {
    background: #fff;
    color: #000;
    font-size: 1.25rem;
    padding: 20px 48px;
}

.btn-lg {
    font-size: 1.25rem;
    padding: 20px 48px;
}

/* ========================================
   MOBILE RESPONSIVENESS
   ======================================== */

/* Tablet & Mobile Navigation Logic */
@media (max-width: 900px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.75rem;
        z-index: 101;
        padding: 8px;
        order: 2;
        /* Push to right side */
    }

    .nav-actions {
        display: none;
    }

    /* Navigation Links - Mobile View */
    .nav-links {
        display: none;
        /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 2px solid #000;
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        max-height: 500px;
        /* Adjust as needed */
        overflow-y: auto;
    }

    .nav-links>a,
    .nav-dropdown-trigger {
        display: block;
        padding: 16px 24px;
        border-top: 1px solid #eee;
        width: 100%;
        text-align: left;
    }

    .nav-actions {
        display: none;
    }

    /* Show Nav Actions inside menu if needed */
    .mobile-cta {
        display: block;
        margin: 16px 24px 24px;
    }
}

@media (min-width: 901px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-cta {
        display: none;
    }
}

/* Global Typography Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 20px;
    }
}

/* Hero Section */
@media (max-width: 900px) {
    .hero {
        padding-bottom: 40px;
        overflow: visible;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-illustration {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
        transform: rotate(0deg);
        box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    }
}

/* Feature Splits */
@media (max-width: 900px) {
    .split-container {
        flex-direction: column !important;
        gap: 40px;
    }

    .split-visual {
        width: 100%;
    }

    .split-visual img,
    .split-visual video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* Grids */
@media (max-width: 768px) {

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Platform Grid */
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        padding: 32px 20px;
        overflow: hidden;
    }

    .card-visual img {
        max-width: 100%;
        height: auto;
    }

    /* Integrations Grid */
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .int-card-link {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .int-card-link img {
        margin-bottom: 8px;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Tools Grid */
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-card-featured {
        grid-column: span 1;
    }

    .tool-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .tool-card-icon {
        margin: 0 auto;
    }

    /* ROI Benefits */
    .roi-benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-branding-col {
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-nav-col {
        display: block !important;
    }

    .footer-nav-col h4 {
        margin-bottom: 16px;
    }

    .footer-nav-col a {
        display: block;
        margin-bottom: 12px;
    }

    .footer-badge-col {
        display: flex;
        justify-content: center;
    }
}

/* ROI Calculator Mobile Overrides */
@media (max-width: 900px) {
    .roi-calculator-wrapper {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .roi-calculator-inputs,
    .roi-calculator-results {
        padding: 24px;
    }

    .roi-slider-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .roi-slider {
        width: 100%;
    }

    .roi-slider-value {
        width: 100%;
        text-align: left;
        margin-bottom: 12px;
    }

    .roi-results-grid {
        grid-template-columns: 1fr;
    }

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

/* Navigation Dropdown Logic for Mobile */
@media (max-width: 900px) {
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid #eee;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 20px;
        background: #f9f9f9;
        width: 100%;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    /* Chevron rotation */
    .nav-dropdown.active .chevron {
        transform: rotate(180deg);
        display: inline-block;
    }
}

/* ========================================
   MOBILE OVERFLOW & LAYOUT FIXES
   ======================================== */

html,
body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 900px) {

    /* Fix Hero Overflow */
    .hero {
        overflow: hidden;
        /* Prevent horizontal scroll */
        padding-top: 60px;
        /* Reduced padding */
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.25rem !important;
        /* Ensure it fits */
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        text-align: center;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        text-align: center;
    }

    /* Fix Logo Strip Overflow */
    .logo-strip .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 30px;
    }

    .logo-strip .logo-text {
        font-size: 1rem;
    }

    /* Fix Chat Interface Overflow */
    .chat-interface {
        max-width: 100% !important;
        width: 100%;
        margin: 0 auto;
    }

    .chatmate-inbox-container {
        border-radius: 8px;
        overflow: hidden;
    }

    .split-visual {
        padding: 0 16px;
        /* Add padding to container so visual doesn't touch offset */
        box-sizing: border-box;
    }

    /* Dashboard Mockup scale fix */
    .dashboard-mockup {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 6px;
    }

    .hero-illustration {
        max-width: 100%;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    /* Bottom Logo Strip fix */
    .logo-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* ========================================
   CHAT DEMO REFINEMENTS (PHASE 9)
   ======================================== */

/* Hide sidebars for focused demo */
.inbox-nav,
.inbox-list,
.sidebar-profile {
    display: none !important;
}

/* Make chat area full width */
.inbox-area {
    width: 100%;
    max-width: 100%;
    border: none;
    display: flex;
    /* Ensure it stays a flex container */
    flex-direction: column;
}

/* Chat Header Adjustments */
.area-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

/* Chat Tabs Styles (Phase 10) */
.chat-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    padding: 0 16px;
    gap: 20px;
    overflow-x: auto;
    /* horizontal scroll on small mobile */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.chat-tabs::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.chat-tab {
    background: none;
    border: none;
    padding: 14px 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}

.chat-tab:hover {
    color: #000;
}

.chat-tab.active {
    color: #f54e00;
    /* PostHog Orange */
    font-weight: 700;
}

.chat-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    /* Overlap border */
    left: 0;
    width: 100%;
    height: 2px;
    background: #f54e00;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: #fff;
    border-bottom: 2px solid #000;
}

.pricing-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--ph-black);
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: 80px 0;
    background: #F9FAFB;
}

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

.pricing-card {
    background: #fff;
    border: 3px solid #000;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 8px 8px 0 #000;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 12px 12px 0 #000;
}

/* Plan Variants */
.pricing-card.plan-free {
    border-color: #000;
}

.pricing-card.plan-basic {
    border-color: var(--color-plan-basic);
    box-shadow: 8px 8px 0 var(--color-plan-basic);
}

.pricing-card.plan-plus {
    border-color: var(--color-plan-plus);
    box-shadow: 8px 8px 0 var(--color-plan-plus);
    background: #fff;
}

.pricing-card .plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    border: 2px solid #000;
    white-space: nowrap;
}

.pricing-card.plan-plus .plan-badge {
    background: var(--color-plan-plus);
    border-color: #000;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price span {
    font-size: 1.25rem;
    color: #666;
    font-weight: 500;
}

.plan-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
    min-height: 3em;
}

/* Slider Styles */
.slider-container {
    margin: 20px 0 30px 0;
    padding: 0 10px;
}

.pricing-slider {
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    margin: 20px 0;
    cursor: pointer;
}

.pricing-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-plan-plus);
    border: 3px solid #000;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000;
    transition: transform 0.1s;
}

.pricing-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.slider-labels span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.pricing-card.plan-free .plan-features li::before {
    content: "✓";
    color: #666;
    font-weight: 900;
}

.pricing-card.plan-basic .plan-features li::before {
    content: "✓";
    color: var(--color-plan-basic);
    font-weight: 900;
}

.pricing-card.plan-plus .plan-features li::before {
    content: "✓";
    color: var(--color-plan-plus);
    font-weight: 900;
}

.channel-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.channel-icons img {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.channel-icons img:hover {
    opacity: 1;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    transition: all 0.15s;
    text-align: center;
}

.btn-pricing:hover {
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 #000;
}

.btn-pricing:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 #000;
}

.btn-free {
    background: #f0f0f0;
    color: #000;
}

.btn-basic {
    background: var(--color-plan-basic);
    color: #fff;
}

.btn-plus {
    background: var(--color-plan-plus);
    color: #fff;
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-title {
    font-size: 3rem;
}

/* Zaapi-Style Structural Layout */

/* Split Hero */
.split-hero {
    padding: 120px 0 80px;
    background: var(--ph-beige);
    border-bottom: 2px solid #000;
}

.split-hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-left .tag-pill {
    display: inline-block;
    background: #e1f5fe;
    color: var(--ph-blue);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid var(--ph-blue);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-left .hero-subtitle {
    font-size: 1.25rem;
    color: var(--ph-black);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-visual-box {
    background: #fff;
    border: 2px solid #000;
    box-shadow: 10px 10px 0 #000;
    padding: 20px;
    width: 100%;
    max-width: 560px;
    transform: rotate(1deg);
}

/* Alternating Feature Blocks (Z-Pattern) */
.alternating-features {
    padding: 80px 0;
    background: #fff;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reversed {
    flex-direction: row-reverse;
}

.feature-info {
    flex: 1;
}

.feature-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-info p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.feature-visual {
    flex: 1;
    background: var(--ph-beige);
    padding: 40px;
    border: 2px solid #000;
    box-shadow: 6px 6px 0 #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Split-Header Features Grid */
.split-header-grid {
    padding: 100px 0;
    background: var(--ph-beige);
    border-top: 2px solid #000;
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.grid-header .header-title {
    flex: 1;
}

.grid-header .header-title h2 {
    font-size: 3rem;
    margin: 0;
}

.grid-header .header-desc {
    flex: 1;
    max-width: 450px;
}

.grid-header .header-desc p {
    font-size: 1.1rem;
    margin: 0;
}

.features-grid-zaapi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-zaapi {
    background: #fff;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.feature-card-zaapi:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
}

.card-visual {
    background: #F9F9F9;
    padding: 40px;
    border-bottom: 2px solid #000;
}

.card-info {
    padding: 24px;
    flex-grow: 1;
    position: relative;
    padding-bottom: 70px;
    /* Space for arrow */
}

.card-info h3 {
    font-size: 1.2rem;
    line-height: 1.3;
}

.arrow-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

/* Centered CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: #fff;
    text-align: center;
    border-top: 2px solid #000;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {

    .split-hero .container,
    .feature-block {
        flex-direction: column !important;
        text-align: center;
    }

    .hero-left,
    .feature-info {
        text-align: center;
    }

    .hero-left .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right,
    .feature-visual {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .grid-header {
        flex-direction: column;
        align-items: center;
    }

    .header-desc {
        text-align: center;
    }

    .features-grid-zaapi {
        grid-template-columns: 1fr;
    }
}