/* ==============================================
   TIMEWIZE WEBSITE STYLES
   Dark theme with organic gradients
   ============================================== */

/* CSS Variables */
:root {
    --bg-primary: #0A1410;
    --bg-secondary: #0F1D17;
    --bg-card: rgba(20, 35, 27, 0.95);
    --text-primary: #FFFFFF;
    --text-muted: #7A8B82;
    --accent-green: #3D5A4C;
    --accent-lime: #D4E157;
    --accent-gradient-start: #4A6B5A;
    --accent-gradient-end: #D4E157;
    --border-color: rgba(255, 255, 255, 0.1);
    --success: #4CAF50;
    --warning: #FF9800;
    --container-max: 1400px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.4;
    font-size: 14px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-lime);
    margin-bottom: 0.5rem;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.link-arrow {
    color: var(--accent-lime);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-speed);
}

.link-arrow:hover {
    gap: 0.75rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-lime);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 225, 87, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
}

.btn-cta {
    background: var(--accent-lime);
    color: var(--bg-primary);
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 225, 87, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}

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

.micro-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 20, 16, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: padding 0.3s;
}

.navbar.scrolled {
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    z-index: 1001;
}

.logo-image {
    height: 48px;
    width: auto;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color var(--transition-speed);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link .arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-speed);
}

.nav-item:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed), top var(--transition-speed);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    z-index: 1005;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 1rem);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background var(--transition-speed);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dropdown-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 999;
    transition: right 0.3s;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-item {
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.mobile-menu-item.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu a {
    display: block;
    padding: 0.75rem 0 0.75rem 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mobile-menu-cta {
    margin-top: 2rem;
}

@media (max-width: 1024px) {

    .nav-menu,
    .nav-actions .btn-link {
        display: none;
    }

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

    .nav-actions .btn-primary {
        display: inline-block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    padding-top: 120px;
    padding-bottom: 2rem;
    overflow: hidden;
}

.blob,
.gradient-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #D4E157 0%, #4A6B5A 100%);
    top: 10%;
    right: 15%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #5A8A6D 0%, #2D4A3C 100%);
    bottom: 10%;
    right: 5%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #A8C657 0%, #3D5A4C 100%);
    top: 50%;
    left: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.hero-cta-group {
    margin-bottom: 1.5rem;
}

.hero-proof {
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.hero-proof .quote {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-proof .attribution {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badges .badge {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 700px;
}

.user-badge {
    position: absolute;
    top: 20px;
    right: 50px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    border-radius: 8px;
}

.user-name {
    font-size: 0.95rem;
    font-weight: 600;
}

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

.dashboard-card {
    position: absolute;
    top: 120px;
    left: 0;
    width: 520px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.table-row {
    display: grid;
    grid-template-columns: 20px 20px 200px 100px;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.row-toggle {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
}

.row-toggle.active {
    background: var(--accent-lime);
    border-color: var(--accent-lime);
}

.row-toggle.active::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid var(--bg-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.row-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.row-status.approved {
    background: var(--success);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.row-status.pending {
    background: var(--warning);
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

.row-status.loading {
    background: var(--accent-lime);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.badge-approved,
.badge-pending,
.badge-review {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-approved {
    background: rgba(76, 175, 80, 0.15);
    color: var(--success);
}

.badge-pending {
    background: rgba(255, 152, 0, 0.15);
    color: var(--warning);
}

.badge-review {
    background: rgba(212, 225, 87, 0.15);
    color: var(--accent-lime);
}

.metrics-card {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 240px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.metrics-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.metric-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 600;
}

.metric-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.needs-attention {
    background: var(--warning);
}

.dot.ok {
    background: var(--success);
}

.metric-item .count {
    margin-left: auto;
    font-weight: 600;
}

.progress-ring {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background: conic-gradient(var(--accent-lime) 0deg 331deg, rgba(255, 255, 255, 0.1) 331deg 360deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-ring::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--bg-secondary);
    border-radius: 50%;
}

.ring-value {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-lime);
}

/* Section Styles */
section {
    padding: 2rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Problem Section */
.problem-section {
    background: var(--bg-secondary);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pain-points {
    list-style: none;
    margin-bottom: 1rem;
}

.pain-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pain-points li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--warning);
    font-size: 1.2rem;
}

.persona-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 225, 87, 0.1);
    color: var(--accent-lime);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.transition-statement {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.transition-statement p {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Solution Section */
.feature-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
}

.feature-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.label-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-lime);
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.capability-list {
    list-style: none;
    margin-bottom: 1.25rem;
}

.capability-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.capability-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-visual {
    position: relative;
}

.mockup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: var(--text-muted);
}

.mock-button {
    padding: 1rem;
    background: var(--accent-lime);
    color: var(--bg-primary);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.mock-status {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.mock-status.approved {
    background: rgba(76, 175, 80, 0.15);
    color: var(--success);
}

.skill-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 225, 87, 0.1);
    color: var(--accent-lime);
    border-radius: 6px;
    margin: 0.25rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.metric-value {
    font-weight: 600;
    color: var(--accent-lime);
}

.chart-placeholder {
    height: 100px;
    background: linear-gradient(to top, rgba(212, 225, 87, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    margin-top: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Free Tier Section */
.free-tier-section {
    background: linear-gradient(135deg, rgba(77, 107, 90, 0.2) 0%, rgba(212, 225, 87, 0.1) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.free-tier-statement {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--accent-lime);
    margin: 1.5rem 0;
}

.commitment-line {
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 1rem;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.pricing-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}

.pricing-table h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row .included {
    color: var(--accent-lime);
    font-weight: 500;
}

.enterprise-callout {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}

.enterprise-callout h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.enterprise-callout p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.enterprise-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.enterprise-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.enterprise-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
}

.primary-cta-block {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.primary-cta-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: var(--accent-lime);
    color: var(--bg-primary);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step-time {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 225, 87, 0.1);
    color: var(--accent-lime);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

.step p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.proof-callout {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
}

.proof-callout .quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.proof-callout .attribution {
    color: var(--text-muted);
}

/* Persona Tabs Section */
.persona-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.tab-button:hover {
    border-color: var(--accent-lime);
    color: var(--text-primary);
}

.tab-button.active {
    background: var(--accent-lime);
    color: var(--bg-primary);
    border-color: var(--accent-lime);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.persona-content {
    text-align: center;
}

.persona-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.persona-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.persona-content>p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.benefit-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
    font-size: 1.2rem;
}

.persona-proof {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin: 1.5rem 0;
}

.persona-proof p {
    font-style: italic;
    margin-bottom: 0.75rem;
}

.persona-proof span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Comparison Table Section */
.comparison-section {
    background: var(--bg-secondary);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
    font-weight: 600;
}

.comparison-cell.label {
    font-weight: 500;
}

.comparison-cell.old {
    color: var(--text-muted);
}

.comparison-cell.new {
    color: var(--text-primary);
    position: relative;
    padding-left: 2rem;
}

.comparison-cell.new::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
}

.comparison-summary {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    color: var(--accent-lime);
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.industry-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(212, 225, 87, 0.1);
    color: var(--accent-lime);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-metric {
    padding: 1rem;
    background: rgba(212, 225, 87, 0.05);
    border-radius: 8px;
    color: var(--accent-lime);
    font-weight: 600;
    text-align: center;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-speed);
}

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

.faq-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.faq-contact {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.05rem;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, rgba(77, 107, 90, 0.3) 0%, rgba(212, 225, 87, 0.15) 100%);
    text-align: center;
}

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

.cta-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto;
}

.cta-block {
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.cta-block.primary {
    border-color: var(--accent-lime);
}

.cta-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-block p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

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

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-lime);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    transition: color var(--transition-speed);
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem 3rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition-speed);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    transition: background var(--transition-speed), color var(--transition-speed);
}

.footer-social a:hover {
    background: var(--accent-lime);
    color: var(--bg-primary);
}

/* ==============================================
   PRODUCT & SOLUTION PAGES
   ============================================== */

/* Product Hero - Single column, centered layout */
.product-hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 3rem;
    text-align: center;
}

.product-hero .container {
    max-width: 900px;
}

.product-hero .hero-content {
    max-width: 100%;
}

.product-hero .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.product-hero .hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-hero .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.product-hero .cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Solution Section */
.solution-section {
    background: var(--bg-secondary);
}

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

.solution-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Feature Content */
.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Feature Visual - Mockup Cards */
.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mockup-card .card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-card .card-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-lime);
    margin: 0;
}

/* Metric Rows */
.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-row span:first-child {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.metric-row .metric-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.metric-row .metric-value.success {
    color: var(--success);
}

.metric-row .metric-value.warning {
    color: var(--warning);
}

.metric-row .metric-value.alert {
    color: #f44336;
}

/* Progress Ring (for utilization display) */
.progress-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gradient-start) 0%, var(--accent-gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    position: relative;
}

.progress-ring::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--bg-card);
    border-radius: 50%;
}

.progress-ring .ring-value {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-lime);
}

/* Problem Section (used on some product pages) */
.problem-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA Blocks */
.cta-blocks {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-block {
    text-align: center;
}

.cta-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-container {
        gap: 3rem;
    }

    .dashboard-card {
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 1024px) {

    .hero-container,
    .feature-block {
        grid-template-columns: 1fr;
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .hero-visual {
        height: 600px;
        margin-top: 2rem;
    }

    .problem-cards,
    .testimonial-grid,
    .cta-blocks {
        grid-template-columns: 1fr;
    }

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

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

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .comparison-cell.label {
        font-weight: 600;
        color: var(--accent-lime);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 100px;
    }

    .product-hero {
        padding-top: 120px;
        padding-bottom: 2rem;
    }

    .product-hero .hero-title {
        font-size: 2rem;
    }

    .product-hero .hero-description {
        font-size: 1rem;
    }

    .mockup-card {
        max-width: 100%;
    }

    .progress-ring {
        width: 100px;
        height: 100px;
    }

    .progress-ring::before {
        width: 75px;
        height: 75px;
    }

    .progress-ring .ring-value {
        font-size: 1.25rem;
    }

    .hero-visual {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .user-badge {
        position: static;
        align-self: flex-end;
    }

    .dashboard-card,
    .metrics-card {
        position: static;
        margin: 0 auto;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }
}

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