/* ===== ProWeb Home Services - Custom Design ===== */

:root {
    --blue: #004BA8;
    --blue-dark: #003a84;
    --blue-light: #0057c2;
    --blue-pale: #e8f1fc;
    --blue-glow: rgba(0, 75, 168, 0.15);

    --green: #10b981;
    --green-pale: #d1fae5;
    --orange: #f59e0b;
    --orange-pale: #fef3c7;

    --dark: #0f172a;
    --dark-soft: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.15;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.125rem; font-weight: 600; }

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--blue);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.3s var(--ease);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s var(--ease);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 75, 168, 0.35);
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: transparent;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--blue);
    border-radius: 60px;
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-outline.small { padding: 10px 20px; font-size: 13px; }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s var(--ease);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--dark); }

.nav-cta {
    padding: 12px 28px;
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s var(--ease);
}

.mobile-menu.active span:first-child {
    transform: rotate(45deg) translate(6px, 5px);
}

.mobile-menu.active span:last-child {
    transform: rotate(-45deg) translate(5px, -4px);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    z-index: 999;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-cta {
    margin-top: 8px;
    padding: 16px;
    background: var(--blue);
    color: var(--white) !important;
    text-align: center;
    border-radius: 12px;
    border: none !important;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

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

.hero h1 span { color: var(--blue); }

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-bullet {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--gray-700);
}

.bullet-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 50%;
    flex-shrink: 0;
}

.bullet-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--green);
}

.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.hero-note { font-size: 14px; color: var(--gray-500); }

/* Hero Visual */
.hero-right { position: relative; height: 500px; }

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    animation: float 6s ease-in-out infinite;
}

.hero-card-1 { top: 10%; right: 10%; animation-delay: 0s; }
.hero-card-2 { top: 40%; left: 5%; animation-delay: -2s; }
.hero-card-3 { bottom: 15%; right: 15%; animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.card-icon svg { width: 24px; height: 24px; }

.card-icon.green { background: var(--green-pale); }
.card-icon.green svg { fill: var(--green); }
.card-icon.blue { background: var(--blue-pale); }
.card-icon.blue svg { fill: var(--blue); }
.card-icon.orange { background: var(--orange-pale); }
.card-icon.orange svg { fill: var(--orange); }

.card-text { display: flex; flex-direction: column; }
.card-text strong { font-size: 16px; color: var(--dark); font-weight: 700; }
.card-text span { font-size: 13px; color: var(--gray-500); }

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ===== Social Proof ===== */
.social-proof {
    padding: 32px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.social-proof .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-logos {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.proof-logos span {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    opacity: 0.8;
}

/* ===== Section Styles ===== */
.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 16px auto 0;
    text-align: center;
}

/* ===== Reviews ===== */
.reviews {
    padding: 100px 0;
    background: var(--white);
}

.reviews .container { text-align: center; }
.reviews h2 { margin-bottom: 0; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: start;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.review-featured {
    max-width: 800px;
    margin: 32px auto 0;
    background: var(--gray-50);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.review-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-item {
    background: var(--gray-50);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.review-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.video-wrapper {
    position: relative;
    background: var(--dark);
    width: 100%;
}

.video-wrapper.portrait { aspect-ratio: 9/16; }
.video-wrapper.landscape { aspect-ratio: 16/9; }

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

.review-name {
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    background: var(--gray-50);
}

/* ===== Services ===== */
.services {
    padding: 100px 0 0;
    background: var(--white);
}

.services > .container { text-align: center; }
.services > .container h2 { margin-bottom: 0; }

/* Service Row - Alternating Layout */
.service-row {
    padding: 80px 0;
    background: var(--white);
}

.service-row.alt { background: var(--gray-50); }

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-layout.reverse {
    direction: rtl;
}

.service-layout.reverse > * {
    direction: ltr;
}

.service-content {
    text-align: left;
}

.service-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-content h3 {
    margin-bottom: 16px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.service-desc {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.service-features li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    fill: var(--blue);
    margin-top: 2px;
}

.service-features li span {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.service-features li strong {
    color: var(--dark);
    font-weight: 600;
}

/* Service Visual Card */
.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s var(--ease);
}

.service-row.alt .visual-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--blue-pale) 100%);
}

.visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 75, 168, 0.12);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: var(--blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.visual-card span {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.visual-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 75, 168, 0.15);
    transition: all 0.3s var(--ease);
}

.visual-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 75, 168, 0.2);
}

.visual-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Estimate Mockup */
.estimate-mockup {
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 75, 168, 0.15);
    transition: all 0.3s var(--ease);
}

.estimate-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 75, 168, 0.2);
}

.estimate-header {
    background: linear-gradient(135deg, var(--blue) 0%, #0066cc 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.estimate-logo {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.estimate-logo svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.estimate-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.estimate-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.estimate-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.estimate-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estimate-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
}

.estimate-select svg {
    width: 20px;
    height: 20px;
    fill: var(--gray-400);
}

.estimate-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.estimate-counter {
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.counter-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-value {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.estimate-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.estimate-option {
    padding: 10px 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.estimate-option.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.estimate-result {
    background: linear-gradient(135deg, rgba(0, 75, 168, 0.08) 0%, rgba(0, 75, 168, 0.04) 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.result-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.result-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
}

.result-note {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.estimate-cta {
    width: 100%;
    padding: 14px 24px;
    background: var(--blue);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.estimate-cta:hover {
    background: #003d8a;
}

/* Chat Mockup */
.chat-mockup {
    width: 100%;
    max-width: 360px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 75, 168, 0.15);
    transition: all 0.3s var(--ease);
}

.chat-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 75, 168, 0.2);
}

.chat-header {
    background: linear-gradient(135deg, var(--blue) 0%, #0066cc 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.chat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.chat-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 240px;
    background: var(--gray-50);
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: var(--white);
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chat-message.user {
    background: var(--blue);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message p {
    margin: 0;
}

.chat-input {
    padding: 16px 20px;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-100);
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    font-size: 0.875rem;
    color: var(--dark);
    outline: none;
}

.chat-input input::placeholder {
    color: var(--gray-400);
}

.chat-send {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-send:hover {
    background: #003d8a;
}

.chat-send svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* Review Mockup */
.review-mockup {
    width: 100%;
    max-width: 340px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 75, 168, 0.15);
    transition: all 0.3s var(--ease);
}

.review-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 75, 168, 0.2);
}

.review-mockup-header {
    background: linear-gradient(135deg, var(--blue) 0%, #0066cc 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-mockup-logo {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-mockup-logo svg {
    width: 22px;
    height: 22px;
    fill: #fbbf24;
}

.review-mockup-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.review-mockup-body {
    padding: 28px 24px;
    text-align: center;
}

.review-prompt {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.review-stars .star {
    width: 36px;
    height: 36px;
    fill: var(--gray-200);
    transition: all 0.2s ease;
    cursor: pointer;
}

.review-stars .star.filled {
    fill: #fbbf24;
}

.review-flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flow-path {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.flow-path.positive {
    background: rgba(34, 197, 94, 0.08);
}

.flow-path.negative {
    background: rgba(0, 75, 168, 0.06);
}

.flow-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
}

.flow-path.positive .flow-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.flow-path.negative .flow-badge {
    background: rgba(0, 75, 168, 0.1);
    color: var(--blue);
}

.flow-arrow {
    color: var(--gray-400);
    font-size: 1rem;
}

.flow-destination {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.flow-destination svg {
    width: 18px;
    height: 18px;
}

.flow-path.positive .flow-destination svg {
    fill: #4285f4;
}

.flow-path.negative .flow-destination svg {
    fill: var(--gray-500);
}

.flow-destination span {
    font-weight: 600;
    color: var(--dark);
}

/* CRM Mockup */
.crm-mockup {
    width: 100%;
    max-width: 340px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 75, 168, 0.15);
    transition: all 0.3s var(--ease);
}

.crm-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 75, 168, 0.2);
}

.crm-header {
    background: linear-gradient(135deg, var(--blue) 0%, #0066cc 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.crm-logo {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-logo svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.crm-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.crm-badge {
    margin-left: auto;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.crm-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crm-lead {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.crm-lead:hover {
    border-color: var(--blue);
    background: var(--blue-pale);
}

.lead-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lead-status.new {
    background: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 75, 168, 0.2);
}

.lead-status.scheduled {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.lead-status.won {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.lead-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.lead-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lead-project {
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lead-stage {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.crm-lead:nth-child(1) .lead-stage {
    background: rgba(0, 75, 168, 0.1);
    color: var(--blue);
}

.crm-lead:nth-child(2) .lead-stage {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.crm-lead:nth-child(3) .lead-stage,
.crm-lead:nth-child(4) .lead-stage {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.crm-footer {
    padding: 14px 20px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-around;
}

.crm-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Report Mockup */
.report-mockup {
    width: 100%;
    max-width: 340px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 75, 168, 0.15);
    transition: all 0.3s var(--ease);
}

.report-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 75, 168, 0.2);
}

.report-header {
    background: linear-gradient(135deg, var(--blue) 0%, #0066cc 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.report-logo {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-logo svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.report-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.report-badge {
    margin-left: auto;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.report-body {
    padding: 20px;
}

.report-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.report-metric {
    text-align: center;
    padding: 12px 8px;
    background: var(--gray-50);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.metric-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.metric-change {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

.metric-change.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.metric-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.report-chart {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 16px;
}

.chart-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chart-row {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 10px;
}

.chart-source {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
}

.chart-bar-bg {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue) 0%, #0066cc 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.chart-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: right;
}

.report-footer {
    padding: 12px 20px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.report-note {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
}

/* ===== Industries ===== */
.industries {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 75, 168, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 75, 168, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.industries .container {
    position: relative;
    z-index: 1;
}

.industries h2 { color: var(--white); }
.industries .section-label { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.industries .section-desc { color: var(--gray-400); max-width: 600px; margin-left: auto; margin-right: auto; }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gray-700);
    border-radius: 16px;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all 0.3s var(--ease);
    cursor: default;
}

.industry-card:hover {
    background: rgba(0, 75, 168, 0.2);
    border-color: var(--blue);
    transform: translateY(-4px);
}

.industry-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.industry-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

/* ===== Process ===== */
.process {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.process h2 { margin-bottom: 0; }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    text-align: left;
}

.process-step {
    position: relative;
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.step-marker {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-time {
    display: inline-block;
    padding: 6px 12px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
}

.step-content h4 { margin-bottom: 12px; }
.step-content p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.pricing h2 { margin-bottom: 0; }

/* Pricing Card */
.pricing-card {
    max-width: 480px;
    margin: 60px auto 0;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0, 75, 168, 0.1);
}

.pricing-header {
    padding: 40px 40px 32px;
    background: linear-gradient(135deg, var(--blue) 0%, #0066cc 100%);
    color: var(--white);
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.pricing-tagline {
    font-size: 15px;
    opacity: 0.85;
}

.pricing-body {
    padding: 40px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 8px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-decimal {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 8px;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 4px;
}

.price-setup {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    fill: var(--green);
}

.feature-row span {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

/* Add-ons Section */
.addons-section {
    max-width: 900px;
    margin: 80px auto 0;
    text-align: center;
}

.addons-section h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.addons-desc {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

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

.addon-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 30px rgba(0, 75, 168, 0.1);
}

.addon-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 75, 168, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.addon-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--blue);
}

.addon-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.addon-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 20px;
}

.addon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.addon-link:hover {
    gap: 10px;
}

.addon-link svg {
    width: 16px;
    height: 16px;
}

.addon-info h4 { margin-bottom: 4px; }
.addon-info p { font-size: 14px; color: var(--gray-500); }

/* ===== Why Us ===== */
.why-us {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.why-us h2 { margin-bottom: 0; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    text-align: left;
}

.why-item {
    padding: 32px;
    background: var(--gray-50);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}

.why-item:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(0, 75, 168, 0.06);
}

.why-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-pale);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.why-item:hover .why-num { color: var(--blue); }

.why-item h4 { margin-bottom: 12px; }
.why-item p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-header h2 { margin-bottom: 16px; }
.faq-header p { color: var(--gray-600); font-size: 15px; }
.faq-header a { color: var(--blue); font-weight: 600; }
.faq-header a:hover { text-decoration: underline; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item:hover { border-color: var(--gray-300); }
.faq-item.active { border-color: var(--blue); }

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
}

.faq-trigger svg {
    width: 24px;
    height: 24px;
    fill: var(--gray-400);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.faq-item.active .faq-trigger svg {
    fill: var(--blue);
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-content { max-height: 600px; }

.faq-content p,
.faq-content ul {
    padding: 0 24px 16px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-content ul { padding-left: 48px; list-style: disc; }
.faq-content li { margin-bottom: 8px; }

/* ===== Booking ===== */
.booking {
    padding: 100px 0;
    background: var(--dark);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.booking-info h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.booking-info > p {
    color: var(--gray-400);
    font-size: 1.0625rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-300);
}

.booking-feature svg {
    width: 22px;
    height: 22px;
    fill: var(--green);
    flex-shrink: 0;
}

/* Booking Form */
.booking-form-wrap {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.booking-form {
    padding: 40px;
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    text-align: center;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-field input {
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark);
    transition: all 0.2s;
}

.form-field input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-field input::placeholder { color: var(--gray-400); }

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 16px;
}

/* Date Selector */
.date-selector {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 12px;
}

.date-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.date-option:hover { border-color: var(--blue); }

.date-option.selected {
    background: var(--blue);
    border-color: var(--blue);
}

.date-option .day {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.date-option .date {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.date-option .month {
    font-size: 11px;
    color: var(--gray-500);
}

.date-option.selected .day,
.date-option.selected .month { color: rgba(255, 255, 255, 0.7); }
.date-option.selected .date { color: var(--white); }

/* Time Selector */
.time-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-option {
    padding: 14px 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.time-option:hover { border-color: var(--blue); color: var(--blue); }

.time-option.selected {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* Booking Success */
.booking-success {
    display: none;
    padding: 60px 40px;
    text-align: center;
}

.booking-success.show { display: block; }

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--green);
}

.booking-success h3 { margin-bottom: 12px; }
.booking-success p { color: var(--gray-600); }

/* ===== Footer ===== */
.footer {
    padding: 48px 0 32px;
    background: var(--gray-900);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand .logo { color: var(--white); }
.footer-brand p { font-size: 14px; color: var(--gray-500); margin-top: 8px; }

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-left { order: 2; }
    .hero-right { order: 1; height: 300px; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-bullets { align-items: center; }
    .hero-actions { align-items: center; }

    .hero-card-1 { top: 20%; right: 5%; }
    .hero-card-2 { top: 50%; left: 0; }
    .hero-card-3 { bottom: 10%; right: 10%; }

    .reviews-grid {
        max-width: 600px;
    }

    .review-featured {
        max-width: 700px;
    }

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

    .service-layout.reverse {
        direction: ltr;
    }

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

    .service-features {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .visual-card {
        max-width: 320px;
        aspect-ratio: 1.2;
    }

    .visual-image {
        max-width: 380px;
    }

    .estimate-mockup {
        max-width: 340px;
        margin: 0 auto;
    }

    .chat-mockup {
        max-width: 320px;
        margin: 0 auto;
    }

    .review-mockup {
        max-width: 300px;
        margin: 0 auto;
    }

    .crm-mockup {
        max-width: 320px;
        margin: 0 auto;
    }

    .report-mockup {
        max-width: 320px;
        margin: 0 auto;
    }

    .industries-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .industry-card {
        padding: 20px 12px;
    }

    .industry-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .industry-icon svg {
        width: 22px;
        height: 22px;
    }

    .industry-card span {
        font-size: 13px;
    }

    .process-timeline { grid-template-columns: 1fr 1fr; }
    .addons-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .pricing-card { max-width: 420px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-header { text-align: center; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-info { text-align: center; }
    .booking-features { align-items: center; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu { display: flex; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-right { display: none; }
    .hero h1 { font-size: 2.5rem; }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .review-featured {
        margin-top: 16px;
    }

    .service-row {
        padding: 60px 0;
    }

    .service-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .visual-card {
        max-width: 280px;
    }

    .visual-image {
        max-width: 320px;
    }

    .estimate-mockup {
        max-width: 320px;
    }

    .estimate-body {
        padding: 20px;
        gap: 16px;
    }

    .result-price {
        font-size: 1.5rem;
    }

    .chat-mockup {
        max-width: 300px;
    }

    .chat-body {
        min-height: 200px;
        padding: 16px;
        gap: 10px;
    }

    .chat-message {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .review-mockup {
        max-width: 280px;
    }

    .review-mockup-body {
        padding: 24px 20px;
    }

    .review-stars .star {
        width: 32px;
        height: 32px;
    }

    .flow-path {
        padding: 10px 14px;
    }

    .crm-mockup {
        max-width: 300px;
    }

    .crm-header {
        padding: 14px 16px;
    }

    .crm-body {
        padding: 14px;
        gap: 8px;
    }

    .crm-lead {
        padding: 10px 12px;
        gap: 10px;
    }

    .lead-name {
        font-size: 0.8rem;
    }

    .lead-project {
        font-size: 0.7rem;
    }

    .lead-stage {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .crm-footer {
        padding: 12px 16px;
    }

    .stat-num {
        font-size: 1rem;
    }

    .report-mockup {
        max-width: 300px;
    }

    .report-header {
        padding: 14px 16px;
    }

    .report-body {
        padding: 16px;
    }

    .report-metrics {
        gap: 8px;
        margin-bottom: 16px;
    }

    .report-metric {
        padding: 10px 6px;
    }

    .metric-value {
        font-size: 1.1rem;
    }

    .report-chart {
        padding: 14px;
    }

    .chart-row {
        grid-template-columns: 55px 1fr 35px;
        gap: 8px;
    }

    .chart-source {
        font-size: 0.75rem;
    }

    .report-footer {
        padding: 10px 16px;
    }

    .visual-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .visual-icon svg {
        width: 32px;
        height: 32px;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .industry-card {
        padding: 18px 10px;
        gap: 10px;
    }

    .process-timeline { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }

    .form-grid { grid-template-columns: 1fr; }
    .date-selector { grid-template-columns: repeat(4, 1fr); }
    .time-selector { grid-template-columns: 1fr 1fr; }

    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .btn-primary { padding: 14px 24px; font-size: 14px; }

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

    .review-name { padding: 12px; font-size: 13px; }

    .service-row {
        padding: 48px 0;
    }

    .service-layout {
        gap: 32px;
    }

    .service-desc {
        font-size: 1rem;
    }

    .service-features li {
        gap: 12px;
    }

    .service-features li svg {
        width: 18px;
        height: 18px;
    }

    .service-features li span {
        font-size: 14px;
    }

    .visual-card {
        max-width: 240px;
        aspect-ratio: 1.3;
    }

    .visual-card span {
        font-size: 16px;
    }

    .visual-image {
        max-width: 100%;
        border-radius: 16px;
    }

    .estimate-mockup {
        max-width: 100%;
        border-radius: 16px;
    }

    .estimate-header {
        padding: 16px 20px;
    }

    .estimate-body {
        padding: 18px;
        gap: 14px;
    }

    .estimate-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .estimate-options {
        gap: 6px;
    }

    .estimate-option {
        padding: 8px 6px;
        font-size: 0.75rem;
    }

    .estimate-result {
        padding: 16px;
    }

    .result-price {
        font-size: 1.35rem;
    }

    .estimate-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .chat-mockup {
        max-width: 100%;
        border-radius: 16px;
    }

    .chat-header {
        padding: 14px 16px;
    }

    .chat-avatar {
        width: 36px;
        height: 36px;
    }

    .chat-body {
        min-height: 180px;
        padding: 14px;
        gap: 8px;
    }

    .chat-message {
        padding: 10px 12px;
        font-size: 0.8rem;
        border-radius: 14px;
    }

    .chat-input {
        padding: 12px 16px;
    }

    .chat-input input {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .chat-send {
        width: 40px;
        height: 40px;
    }

    .review-mockup {
        max-width: 100%;
        border-radius: 16px;
    }

    .review-mockup-header {
        padding: 16px 20px;
    }

    .review-mockup-body {
        padding: 20px 16px;
    }

    .review-stars {
        gap: 6px;
        margin-bottom: 24px;
    }

    .review-stars .star {
        width: 28px;
        height: 28px;
    }

    .review-flow {
        gap: 10px;
    }

    .flow-path {
        padding: 10px 12px;
        gap: 8px;
    }

    .flow-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .flow-destination svg {
        width: 16px;
        height: 16px;
    }

    .flow-destination span {
        font-size: 0.75rem;
    }

    .crm-mockup {
        max-width: 100%;
        border-radius: 16px;
    }

    .crm-header {
        padding: 12px 14px;
        gap: 10px;
    }

    .crm-logo {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .crm-logo svg {
        width: 18px;
        height: 18px;
    }

    .crm-title {
        font-size: 0.85rem;
    }

    .crm-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .crm-body {
        padding: 12px;
        gap: 8px;
    }

    .crm-lead {
        padding: 10px;
        gap: 8px;
        border-radius: 10px;
    }

    .lead-status {
        width: 8px;
        height: 8px;
    }

    .lead-name {
        font-size: 0.75rem;
    }

    .lead-project {
        font-size: 0.65rem;
    }

    .lead-stage {
        font-size: 0.6rem;
        padding: 3px 6px;
    }

    .crm-footer {
        padding: 10px 14px;
    }

    .stat-num {
        font-size: 0.9rem;
    }

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

    .report-mockup {
        max-width: 100%;
        border-radius: 16px;
    }

    .report-header {
        padding: 12px 14px;
        gap: 10px;
    }

    .report-logo {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .report-logo svg {
        width: 18px;
        height: 18px;
    }

    .report-title {
        font-size: 0.85rem;
    }

    .report-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .report-body {
        padding: 14px;
    }

    .report-metrics {
        gap: 6px;
        margin-bottom: 14px;
    }

    .report-metric {
        padding: 8px 4px;
        border-radius: 10px;
    }

    .metric-value {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.6rem;
    }

    .metric-change {
        font-size: 0.6rem;
        padding: 2px 5px;
    }

    .report-chart {
        padding: 12px;
        border-radius: 10px;
    }

    .chart-label {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .chart-bars {
        gap: 8px;
    }

    .chart-row {
        grid-template-columns: 50px 1fr 32px;
        gap: 6px;
    }

    .chart-source {
        font-size: 0.7rem;
    }

    .chart-bar-bg {
        height: 6px;
    }

    .chart-value {
        font-size: 0.65rem;
    }

    .report-footer {
        padding: 10px 14px;
    }

    .report-note {
        font-size: 0.7rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industry-card {
        padding: 16px 8px;
        gap: 8px;
        border-radius: 12px;
    }

    .industry-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .industry-icon svg {
        width: 20px;
        height: 20px;
    }

    .industry-card span {
        font-size: 12px;
    }

    .pricing-card { margin: 40px auto 0; }
    .pricing-header { padding: 32px 24px 24px; }
    .pricing-header h3 { font-size: 1.5rem; }
    .pricing-body { padding: 32px 24px; }
    .price-amount { font-size: 3rem; }
    .addons-section { margin-top: 60px; }
    .addons-grid { grid-template-columns: 1fr; gap: 16px; }
    .addon-card { padding: 24px 20px; }

    .date-selector { grid-template-columns: repeat(3, 1fr); }
    .time-selector { grid-template-columns: 1fr; }

    .booking-form { padding: 28px 20px; }
}
