/* ============================================
   VA-Labs — Stylesheet
   Light, warm, professional — teal accent
   Mobile-first | SVG-driven | Zero bloat
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --bg-card: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --primary: #0f1d35;
    --primary-dark: #0b1528;
    --primary-light: #c8d3e5;
    --primary-glow: rgba(15, 29, 53, 0.15);
    --accent: #A58D52;
    --accent-light: #f5f0e4;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

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

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

h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-label::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 0.75rem;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.nav-logo svg { width: 36px; height: 36px; }

.nav-logo span.va { color: var(--primary); }

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-links.active { display: flex; }

.nav-links a {
    padding: 0.85rem 1.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-glow);
}

.nav-dropdown {
    width: 100%;
}

.nav-dropdown > summary {
    list-style: none;
    cursor: pointer;
    padding: 0.85rem 1.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition), background var(--transition);
}

.nav-dropdown > summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown > summary:hover {
    color: var(--primary);
    background: var(--primary-glow);
}

.nav-submenu {
    display: none;
    flex-direction: column;
}

.nav-dropdown[open] .nav-submenu {
    display: flex;
}

.nav-submenu a {
    padding-left: 2.25rem;
}

.nav-cta {
    display: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 29, 53, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

.btn svg { width: 18px; height: 18px; }

/* --- Hero --- */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f0f2f7 0%, #fff 40%, #f0f9ff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
    margin-bottom: 1.25rem;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-desc {
    font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-svg-container {
    width: 100%;
    max-width: 420px;
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--bg);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(1.6rem, 1.4rem + 1.2vw, 2.2rem);
    color: var(--primary);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* --- Sections --- */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

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

.section-header .section-subtitle {
    margin: 0.75rem auto 0;
}

/* --- Problem / Solution --- */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.problem-card, .solution-card {
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
}

.problem-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.problem-card h3 { color: #dc2626; }

.solution-card {
    background: #f0f2f7;
    border: 1px solid var(--primary-light);
}

.solution-card h3 { color: var(--primary); }

.ps-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.ps-list {
    margin-top: 1rem;
}

.ps-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.ps-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.problem-card .ps-list li::before { background: #fca5a5; }
.solution-card .ps-list li::before { background: var(--primary-light); }

/* --- How It Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    counter-reset: step;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    counter-increment: step;
}

.step-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.step-card h4 { margin-bottom: 0.4rem; }
.step-card p { color: var(--text-muted); font-size: 0.92rem; }

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg { width: 26px; height: 26px; color: var(--primary); }

.service-card h3 { margin-bottom: 0.6rem; }

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.service-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    background: var(--bg-alt);
    color: var(--text-muted);
    border: 1px solid var(--border);
    font-weight: 500;
}

/* --- AI Section --- */
.ai-section {
    background: linear-gradient(135deg, #0b1528 0%, #0f1d35 50%, #14b8a6 100%);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.ai-section h2 { color: #fff; }
.ai-section .section-label { color: var(--primary-light); }
.ai-section .section-label::before { background: var(--primary-light); }

.ai-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.ai-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ai-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-feature-icon svg { width: 22px; height: 22px; color: #fff; }

.ai-feature h4 { color: #fff; margin-bottom: 0.3rem; font-size: 1rem; }
.ai-feature p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* --- Pricing --- */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 0;
}

.pricing-toggle button {
    padding: 0.65rem 1.5rem;
    border: 2px solid var(--border);
    background: var(--bg);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}

.pricing-toggle button:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.pricing-toggle button:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.pricing-toggle button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.currency-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
    align-items: center;
}

.currency-toggle span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.currency-switch {
    width: 48px;
    height: 26px;
    background: var(--border);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    border: none;
    transition: background var(--transition);
}

.currency-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.currency-switch.gbp { background: var(--primary); }
.currency-switch.gbp::after { transform: translateX(22px); }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(13,148,136,0.12);
}

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

.pricing-card h3 { margin-bottom: 0.5rem; }

.pricing-hours {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.pricing-amount {
    font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.6rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3 4.3L6 11.6 2.7 8.3' stroke='%230d9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* --- Add-ons Table --- */
.addons-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.addons-table th,
.addons-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.92rem;
}

.addons-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.addons-table td { border-bottom: 1px solid var(--border); }

.addons-table tr:last-child td { border-bottom: none; }

.addons-table tr:nth-child(even) td { background: var(--bg-alt); }

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* --- FAQ --- */
.faq-list { max-width: 750px; margin: 0 auto; }

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 2rem 1.25rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    position: relative;
    font-family: var(--font);
    transition: color var(--transition);
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* --- Partner Banner --- */
.partner-banner {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.partner-banner h3 { color: var(--text); }
.partner-banner p { color: var(--text-muted); font-size: 0.95rem; max-width: 500px; }

/* --- Blog Cards --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
}

.blog-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-glow), var(--bg-alt));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb svg { width: 48px; height: 48px; color: var(--primary); opacity: 0.5; }

.blog-body {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.honeypot { position: absolute; left: -9999px; }

.contact-info-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg { width: 20px; height: 20px; color: var(--primary); }

.contact-info-item h4 { font-size: 0.9rem; margin-bottom: 0.15rem; }
.contact-info-item p { font-size: 0.85rem; color: var(--text-muted); }

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #0b1528 0%, #0f1d35 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand { max-width: 300px; }

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

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

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    padding: 0.35rem 0;
    color: #94a3b8;
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p { font-size: 0.8rem; color: #64748b; }

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.footer-socials a:hover { background: var(--primary); }
.footer-socials a svg { width: 16px; height: 16px; color: #94a3b8; }

/* --- Breadcrumbs --- */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { margin: 0 0.4rem; }

/* --- Page Header --- */
.page-header {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, #f0f2f7 0%, #fff 50%, #f0f9ff 100%);
    text-align: center;
}

.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* --- Process Timeline --- */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--primary-light);
}

.timeline-item h4 { margin-bottom: 0.3rem; }
.timeline-item p { color: var(--text-muted); font-size: 0.92rem; }

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Success / Error Messages --- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* === Responsive === */
@media (min-width: 640px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-features { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .problem-solution { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
    .hero-grid { grid-template-columns: 1.1fr 0.9fr; text-align: left; }
    .hero-content { text-align: left; }
    .hero-desc { margin: 0 0 2rem 0; }
    .hero-actions { justify-content: flex-start; }
}

@media (min-width: 960px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        backdrop-filter: none;
        border: none;
        padding: 0;
        gap: 0;
    }

    .nav-links a {
        padding: 0.5rem 0.9rem;
        border-radius: var(--radius-sm);
    }

    .nav-links a:hover { background: var(--primary-glow); }

    .nav-dropdown {
        position: relative;
        width: auto;
    }

    .nav-dropdown > summary {
        padding: 0.5rem 0.9rem;
        border-radius: var(--radius-sm);
        font-size: 0.95rem;
    }

    .nav-dropdown > summary:hover {
        background: var(--primary-glow);
    }

    .nav-submenu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        min-width: 210px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        box-shadow: 0 12px 24px rgba(15, 29, 53, 0.12);
        padding: 0.4rem 0;
        z-index: 50;
    }

    .nav-dropdown[open] .nav-submenu {
        display: flex;
    }

    .nav-submenu a {
        padding: 0.6rem 0.9rem;
        border-radius: 0;
    }

    .nav-cta {
        display: inline-flex;
    }

    .nav-toggle { display: none; }

    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Print --- */
@media print {
    .nav, .footer, .btn, .nav-toggle { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
}
