/* ServicePages.co Design System - Light Corporate Theme */

:root {
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --bg-input: #ffffff;
    --border-color: #e2e8f0;
    --border-color-hover: #cbd5e1;
    --border-focus: #3b82f6;
    
    --color-primary: #0f172a; /* Deep Slate Navy */
    --color-primary-light: #1e293b;
    --color-secondary: #0284c7; /* Trust Sky Blue */
    --color-accent: #d97706; /* Amber Gold */
    --color-accent-hover: #b45309; /* Dark Amber Gold */
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-main);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-primary);
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(217, 119, 6, 0.3);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.15);
}

.btn-whatsapp-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 6px;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.btn-whatsapp-chat:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

.btn-email-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 6px;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.btn-email-chat:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.25);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: rgba(15, 23, 42, 0.03);
    border-color: var(--color-primary-light);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-accent-hover);
    background-color: #fef3c7; /* Light Gold/Amber */
    border: 1px solid #fde68a;
    border-radius: 4px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-secondary {
    color: var(--color-secondary);
    background-color: #e0f2fe; /* Light Blue */
    border-color: #bae6fd;
}

.gradient-text {
    color: var(--color-primary);
}

.gradient-accent-text {
    color: var(--color-accent);
}

/* Page Components */
.section {
    padding: 7rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-alt {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    margin-top: 4rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-sm);
    padding: 4.5rem 3rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Navigation bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: var(--shadow-sm);
    background: #ffffff;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--color-primary);
}

.logo img {
    height: 42px;
    display: block;
    width: auto;
    transition: height var(--transition-fast);
}

.navbar.scrolled .logo img {
    height: 35px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    background: rgba(15, 23, 42, 0.04);
    padding: 4px;
    border-radius: 100px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 1.15rem;
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 10rem 2rem 5rem 2rem;
    min-height: 85vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 1.85rem;
    color: var(--color-primary);
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mockup window (Light style) */
.mockup-container {
    position: relative;
    width: 100%;
}

.mockup-window {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border: 1px solid var(--border-color-hover);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mockup-header {
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.mockup-address {
    flex-grow: 1;
    background: #ffffff;
    border-radius: 4px;
    padding: 0.15rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    border: 1px solid var(--border-color);
}

.mockup-screen {
    height: 380px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    border-top: none;
}

/* Simulated Local Service Pages */
.screen-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    color: #334155;
}

.screen-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.screen-logo {
    font-weight: 700;
    font-size: 0.85rem;
    color: #0f172a;
    font-family: var(--font-heading);
}

.screen-logo-color {
    color: #2563eb;
}

.screen-cta-pill {
    background: #1e3a8a;
    color: #fff;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 4px;
}

.screen-hero {
    margin-top: 1.25rem;
    text-align: left;
}

.screen-badge {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.screen-title {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-weight: 800;
}

.screen-title span {
    color: #d97706;
}

.screen-desc {
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.screen-features {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.screen-feat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #475569;
    font-weight: 500;
}

.screen-feat svg {
    color: #059669;
}

.screen-booking-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.booking-left h5 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
}

.booking-left p {
    font-size: 0.6rem;
    color: #64748b;
}

.booking-btn {
    background: #d97706;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
}

.mockup-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    background: #f1f5f9;
    padding: 0.35rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.control-btn {
    background: transparent;
    border: none;
    padding: 0.4rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.control-btn:hover {
    color: var(--color-primary);
}

.control-btn.active {
    background: #ffffff;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* Service Benefits (No-Stress Grid) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2.25rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    color: var(--color-accent);
}

.benefit-svg {
    width: 26px;
    height: 26px;
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

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

/* Local ROI Calculator (Light Theme) */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    align-items: center;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: border-color var(--transition-fast);
}

.input-group:hover {
    border-color: var(--border-color-hover);
}

.input-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-label-row label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
}

.input-val-badge {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.slider-input {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-secondary);
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.1s;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-results {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.results-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.results-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.revenue-showcase {
    margin: 2rem 0;
}

.rev-val-wrap {
    margin-bottom: 0.25rem;
}

.rev-val {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: #059669; /* Emerald Green */
}

.rev-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.calc-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    line-height: 1.5;
}

/* Verticals Showcase Industry Tabs */
.verticals-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.vertical-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vertical-opt {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.vertical-opt:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-alt);
}

.vertical-opt.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.vertical-opt h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    color: inherit;
}

.vertical-opt p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.vertical-opt.active p {
    color: #94a3b8;
}

.preview-browser {
    background: #ffffff;
    border: 1px solid var(--border-color-hover);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.browser-header {
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 1rem;
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
}

.browser-screen {
    height: 400px;
    position: relative;
    overflow-y: auto;
    background: #ffffff;
}

.industry-card-preview {
    padding: 3rem;
    display: none;
    animation: fadeIn 0.3s ease forwards;
}

.industry-card-preview.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.preview-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.preview-headline {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.preview-subtext {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.preview-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.preview-card h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--color-primary);
}

.preview-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Timeline Process (Step-by-step) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 1.5rem 3rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid var(--color-accent);
    position: absolute;
    top: 2rem;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -7px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -7px;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.25rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-fast);
}

.timeline-content:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
}

.timeline-step {
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(15, 23, 42, 0.04);
    font-size: 3.5rem;
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    line-height: 1;
}

.timeline-item:nth-child(odd) .timeline-step {
    left: 1.5rem;
    right: auto;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--color-secondary);
    border-width: 2px;
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-price .amount {
    font-size: 3.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li svg {
    color: #059669;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

.pricing-action {
    width: 100%;
    border-radius: 6px;
}

/* FAQ Accordion Toggle */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.35rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding: 0 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

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

.faq-item.active .faq-content {
    max-height: 250px;
    padding-bottom: 1.5rem;
}

/* Split Contact Section */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-field-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-field-group input, 
.form-field-group select, 
.form-field-group textarea {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1.15rem;
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-field-group input:focus, 
.form-field-group select:focus, 
.form-field-group textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.1);
}

.info-card-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item-block {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.info-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.general-q-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-submit-btn {
    transition: var(--transition-fast);
    cursor: pointer;
}

.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: #059669;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.success-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* Footer (Deep slate color for authoritative footer) */
/* Footer (Deep slate color for authoritative footer) */
.footer {
    border-top: 1px solid #1e293b;
    padding: 3.5rem 2rem 3rem 2rem;
    background: linear-gradient(180deg, #0f172a 0%, #090d16 100%);
    color: #ffffff;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-brand .logo {
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 280px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links li {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links a {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1e293b;
    padding-top: 2.5rem;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-socials a {
    color: #94a3b8;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-socials a:hover {
    color: #ffffff;
}

/* Projects List Alternating Layout */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.project-showcase {
    display: flex;
    gap: 4.5rem;
    align-items: center;
    justify-content: space-between;
}

.project-showcase:nth-child(even) {
    flex-direction: row-reverse;
}

.project-visual {
    width: 56%;
}

.project-content {
    width: 40%;
}

.project-window {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #ffffff;
    transition: var(--transition-smooth);
}

.project-showcase:hover .project-window {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color-hover);
}

.project-header {
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

/* Wistia Video Placeholders */
.wistia-video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    background: #f8fafc;
}

.project-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    opacity: 0.9;
    transition: opacity var(--transition-fast), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wistia-video-placeholder:hover .project-img-bg {
    opacity: 0.75;
    transform: scale(1.02);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition-fast);
}

.wistia-video-placeholder:hover .video-play-overlay {
    background: rgba(15, 23, 42, 0.55);
}

.play-button-glowing {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.4);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color var(--transition-fast);
}

.wistia-video-placeholder:hover .play-button-glowing {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(217, 119, 6, 0.6);
    background-color: var(--color-accent-hover);
}

/* Wistia Iframe styles to stretch automatically */
.project-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.project-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.project-tag-badge {
    color: var(--color-secondary);
    background: #e0f2fe;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-family: var(--font-heading);
}

.project-location-text {
    color: var(--text-muted);
}

.project-title-name {
    font-size: 1.85rem;
    margin-bottom: 0.85rem;
    font-weight: 800;
    color: var(--color-primary);
}

.project-description-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.project-result-tag {
    font-size: 0.95rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 4px;
    padding: 0.5rem 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    /* Switch navbar to mobile layout on tablets to prevent text and button overlap overflow */
    .navbar {
        padding: 1rem !important;
    }

    .navbar.scrolled {
        padding: 0.75rem 1rem !important;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
        box-shadow: var(--shadow-md) !important;
        gap: 1.25rem !important;
    }

    .nav-links.active {
        display: flex !important;
    }
    
    .nav-link:hover {
        background: none !important;
        box-shadow: none !important;
    }
    
    .mobile-nav-toggle {
        display: block;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 8.5rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto 0 auto;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .projects-list {
        gap: 4rem;
    }

    .project-showcase {
        flex-direction: column !important;
        gap: 2rem;
        text-align: left;
    }

    .project-visual, .project-content {
        width: 100%;
    }



    /* Stack split sections on tablet viewports to avoid narrow columns */
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .section {
        padding: 5rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    /* ROI Calculator Mobile Padding Adjustments */
    .calculator-grid {
        padding: 1.75rem 1rem !important;
        gap: 2rem !important;
    }
    
    .input-group {
        padding: 1rem !important;
    }

    /* Pricing Mobile Padding Adjustments */
    .pricing-card {
        padding: 2.5rem 1.5rem !important;
    }

    /* Hero Mockup Dynamic Scaling for Smaller Viewports */
    .mockup-screen {
        height: 360px;
    }

    @media (max-width: 480px) {
        .mockup-screen {
            height: 250px !important;
        }
        .screen-content {
            padding: 0.75rem !important;
        }
        .screen-navbar {
            padding-bottom: 0.5rem !important;
        }
        .screen-logo {
            font-size: 0.7rem !important;
        }
        .screen-cta-pill {
            font-size: 0.55rem !important;
            padding: 0.15rem 0.4rem !important;
        }
        .screen-hero {
            margin-top: 0.75rem !important;
        }
        .screen-badge {
            font-size: 0.5rem !important;
            margin-bottom: 0.25rem !important;
            padding: 0.1rem 0.3rem !important;
        }
        .screen-title {
            font-size: 1.05rem !important;
            margin-bottom: 0.25rem !important;
        }
        .screen-desc {
            font-size: 0.55rem !important;
            margin-bottom: 0.5rem !important;
            line-height: 1.3 !important;
        }
        .screen-feat {
            gap: 4px !important;
        }
        .screen-feat span {
            font-size: 0.5rem !important;
        }
        .screen-booking-box {
            padding: 0.4rem 0.5rem !important;
        }
        .booking-left h5 {
            font-size: 0.65rem !important;
        }
        .booking-left p {
            font-size: 0.5rem !important;
        }
        .booking-btn {
            font-size: 0.55rem !important;
            padding: 0.25rem 0.5rem !important;
        }
        .hero-actions {
            flex-direction: column !important;
            width: 100% !important;
            align-items: stretch !important;
            gap: 0.75rem !important;
        }
        .hero-actions .btn {
            width: 100% !important;
            text-align: center !important;
            justify-content: center !important;
        }
    }
    
    .timeline::after {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding: 1.5rem 0 1.5rem 45px;
    }
    
    .timeline-dot {
        left: 13px !important;
        right: auto !important;
    }
    
    .timeline-step {
        right: 1.5rem !important;
        left: auto !important;
    }
    .form-row-double {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-alt {
        padding: 4rem 1.25rem;
        border-radius: 16px;
        margin: 2rem 1rem;
    }


}

/* Subpage Premium Layout Styling */
.subpage-container {
    max-width: 850px;
    margin: 140px auto 5rem auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.legal-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    margin-bottom: 2rem;
    font-family: var(--font-header);
    letter-spacing: -0.01em;
}

.back-home-btn:hover {
    border-color: var(--color-primary);
    background: var(--bg-alt);
    color: var(--color-primary);
}

.back-home-btn .arrow-icon {
    transition: transform var(--transition-fast);
}

.back-home-btn:hover .arrow-icon {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .subpage-container {
        margin-top: 110px;
    }
    .legal-card {
        padding: 2rem 1.5rem;
    }
}

/* About Us Subpage Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Scroll-triggered reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
