/* 1Tech AI - Global Stylesheet */
/* Design: Clean, corporate, aimakers.co-inspired */
/* Colors: Deep Navy #0A1F3F + Electric Blue #0066FF */

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

:root {
    --primary: #0A1F3F;
    --accent: #0066FF;
    --accent-dark: #0052CC;
    --accent-light: #E8F0FF;
    --text-dark: #0A1F3F;
    --text-body: #4A5568;
    --text-light: #718096;
    --border: #E2E8F0;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-dark);
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-footer img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-content a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-body);
    font-size: 0.9rem;
}

.nav-dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-cta:hover {
    background: var(--accent-dark);
    color: white !important;
}

/* Mobile Nav */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

/* Hero Sections */
.hero {
    padding: 5rem 0;
}

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

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

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-dark {
    background: linear-gradient(135deg, var(--primary) 0%, #1A3A5C 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-dark h1,
.hero-dark h2,
.hero-dark h3 {
    color: white;
}

.hero-dark p {
    color: rgba(255,255,255,0.9);
}

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

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

.stat-item .stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Trust Section */
.trust-section {
    padding: 2.5rem 0;
    text-align: center;
    background: var(--bg-light);
}

.trust-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem 2.75rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: Poppins, system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.15rem 0;
    border: 0;
    background: transparent;
    opacity: 0.72;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.trust-logo:hover,
.trust-logo:focus-visible {
    opacity: 1;
    color: var(--primary);
    text-decoration: none;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

.section-dark {
    background: var(--primary);
    color: white;
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-dark p {
    color: rgba(255,255,255,0.85);
}

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

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
    transform: translateY(-2px);
}

.card-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-body);
    line-height: 1.8;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-body);
    line-height: 1.8;
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.case-study-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.case-study-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1A3A5C 100%);
    color: white;
    padding: 2.5rem 2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.case-study-header .industry-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.case-study-header h3 {
    color: white;
    font-size: 1.4rem;
}

.case-study-body {
    padding: 2rem;
}

.case-study-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric {
    background: var(--accent-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.metric-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.case-study-quote {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--accent);
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-body);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

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

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

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

.faq-question {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
}

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

.faq-answer {
    display: none;
    padding-top: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Integration Grid */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.integration-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.integration-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.integration-item.has-info {
    cursor: pointer;
    position: relative;
    font: inherit;
    width: 100%;
    min-height: 3rem;
    -webkit-tap-highlight-color: transparent;
}
.integration-item.has-info::after {
    content: '';
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.45;
}
.integration-item.has-info:hover,
.integration-item.has-info:focus-visible {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.12);
}
.integration-item.has-info.is-open {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--accent);
}
.integration-item.has-info.is-open::after {
    opacity: 1;
}
.integration-hint {
    margin: 0 0 0.85rem;
    font-size: 0.8rem;
    color: var(--text-light);
}
.integration-detail {
    display: none;
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 1rem 1.15rem;
    text-align: left;
    box-shadow: 0 8px 24px rgba(10, 31, 63, 0.08);
    animation: integ-in 0.18s ease;
}
.integration-detail.is-visible { display: block; }
.integration-detail strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.integration-detail p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}
.integration-detail-close {
    float: right;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.15rem;
}
.integration-detail-close:hover { color: var(--primary); }
@keyframes integ-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .integration-detail { animation: none; }
    .integration-item { transition: none; }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.office-card {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.office-card:last-child {
    border-bottom: none;
}

.office-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.office-card p {
    color: var(--text-body);
    margin-bottom: 0.25rem;
}

.contact-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

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

.form-submit {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: var(--accent-dark);
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    margin-left: 1.5rem;
}

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

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

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

.blog-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
    transform: translateY(-3px);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #1A3A5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.blog-card-image .blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 1.5rem;
}

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

.blog-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

.blog-card-body h3 a:hover {
    color: var(--accent);
}

.blog-card-body p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.blog-card-footer .read-time {
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-card-footer .read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

/* Blog Article Page */
.article-header {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--border);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--accent-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-content ul, .article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Client Logo Grid */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.client-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.client-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.08);
}

.client-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.client-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

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

    .hero-ctas {
        flex-direction: column;
    }

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

/* ═══════════════════════════════════════════════════
   v2 additions — booking, timeline, systems grid,
   sprint offer, form status
   ═══════════════════════════════════════════════════ */

[id] { scroll-margin-top: 96px; }

/* ── Hero engagement timeline card ── */
.timeline-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(10, 31, 63, 0.10);
    padding: 1.75rem;
    align-self: center;
}
.timeline-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.timeline-row {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 0.9rem;
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-week {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-transform: uppercase;
    white-space: nowrap;
}
.timeline-desc { font-size: 0.92rem; color: var(--text-body); }
.timeline-row.highlight {
    background: var(--accent-light);
    border-radius: 8px;
    border-bottom: none;
    margin-top: 0.35rem;
}
.timeline-row.highlight .timeline-desc { color: var(--text-dark); font-weight: 600; }

/* ── Capacity note ── */
.capacity-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--text-light);
}
.capacity-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    animation: capacity-pulse 2.2s infinite;
}
@keyframes capacity-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
    70%  { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
@media (prefers-reduced-motion: reduce) { .capacity-dot { animation: none; } }

/* ── Systems we build grid ── */
.build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
}
.build-item {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.15rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.build-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(10, 31, 63, 0.08);
}
.build-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}
.build-item span { font-size: 0.85rem; color: var(--text-light); line-height: 1.45; }

/* ── Sprint offer ── */
.sprint-offer {
    background: linear-gradient(135deg, var(--primary) 0%, #143462 60%, var(--accent-dark) 100%);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    color: #fff;
    align-items: center;
}
.sprint-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.1rem;
}
.sprint-offer h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 1rem;
}
.sprint-offer p { color: rgba(255, 255, 255, 0.85); }
.sprint-offer .sprint-small { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.85rem; }
.sprint-deliverables {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.75rem;
}
.sprint-deliverables h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}
.sprint-deliverables li {
    list-style: none;
    padding: 0.45rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sprint-deliverables li:last-child { border-bottom: none; }
@media (max-width: 860px) {
    .sprint-offer { grid-template-columns: 1fr; padding: 2rem; gap: 1.75rem; }
}

/* ── Booking embed (inline widget, no iframe) ── */
.booking-embed {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(10, 31, 63, 0.08);
}
.booking-embed iframe { display: none; } /* legacy */
.booking-widget { padding: 1.5rem 1.6rem 1.75rem; color: var(--primary, #0A1F3F); }
.bw-head { margin-bottom: 1.1rem; }
.bw-title { margin: 0 0 0.35rem; font-family: Poppins, system-ui, sans-serif; font-size: 1.25rem; font-weight: 700; }
.bw-sub { margin: 0; color: var(--text-light, #64748b); font-size: 0.95rem; line-height: 1.45; max-width: 40rem; }
.bw-step { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light, #64748b); font-weight: 600; margin: 1.1rem 0 0.55rem; }
.bw-tz { text-transform: none; letter-spacing: 0; font-weight: 500; }
.bw-dates { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.15rem 0 0.4rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.bw-date { flex: 0 0 auto; min-width: 4.75rem; min-height: 4.25rem; appearance: none; border: 1px solid var(--border, #e2e8f0); background: #fff; border-radius: 10px; padding: 0.65rem 0.7rem; cursor: pointer; font: inherit; color: inherit; display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; -webkit-tap-highlight-color: transparent; }
.bw-date:hover { border-color: var(--accent, #0066FF); }
.bw-date.active { border-color: var(--accent, #0066FF); background: #eef4ff; box-shadow: inset 0 0 0 1px var(--accent, #0066FF); }
.bw-date-day { font-weight: 700; font-size: 0.9rem; }
.bw-date-mon { font-size: 0.8rem; color: var(--text-light, #64748b); }
.bw-date-n { font-size: 0.7rem; color: var(--accent, #0066FF); margin-top: 0.1rem; }
.bw-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr)); gap: 0.5rem; }
.bw-slot { appearance: none; border: 1px solid var(--border, #e2e8f0); background: #fff; border-radius: 8px; padding: 0.75rem 0.5rem; min-height: 2.75rem; cursor: pointer; font: inherit; font-weight: 600; color: inherit; -webkit-tap-highlight-color: transparent; }
.bw-slot:hover { border-color: var(--accent, #0066FF); }
.bw-slot.active { border-color: var(--accent, #0066FF); background: #eef4ff; box-shadow: inset 0 0 0 1px var(--accent, #0066FF); color: var(--accent, #0066FF); }
.bw-hint { margin: 0.85rem 0 0; }
.bw-form { margin-top: 0.35rem; }
.bw-form label { display: block; font-size: 0.82rem; font-weight: 600; margin: 0.65rem 0 0.3rem; }
.bw-form input, .bw-form textarea { width: 100%; font: inherit; font-size: 16px; padding: 0.7rem 0.75rem; border: 1px solid var(--border, #e2e8f0); border-radius: 8px; } /* 16px avoids iOS zoom */
.bw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 560px) { .bw-grid { grid-template-columns: 1fr; } }
.bw-opt { font-weight: 500; color: var(--text-light, #64748b); }
.bw-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.bw-submit { margin-top: 1rem; width: 100%; max-width: 20rem; background: var(--accent, #0066FF); color: #fff; border: 0; border-radius: 8px; padding: 0.85rem 1rem; min-height: 2.85rem; font-weight: 600; font: inherit; font-size: 1rem; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.bw-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.bw-privacy { margin: 0.85rem 0 0; font-size: 0.75rem; line-height: 1.45; color: var(--text-light, #64748b); max-width: 20rem; }
.bw-privacy a { color: var(--accent, #0066FF); }
.bw-back { appearance: none; background: none; border: 0; color: var(--accent, #0066FF); font: inherit; font-size: 0.9rem; padding: 0.35rem 0; margin: 0.35rem 0 0; cursor: pointer; }
.bw-summary { margin: 0.5rem 0 0; font-weight: 600; color: var(--text-dark, #0A1F3F); }
.bw-progress { display: flex; gap: 0.35rem; margin-bottom: 0.75rem; }
.bw-progress span { flex: 1; height: 4px; border-radius: 99px; background: var(--border, #e2e8f0); }
.bw-progress span.on { background: var(--accent, #0066FF); }
.bw-skeleton { min-height: 12rem; }
.bw-skel-row { height: 2.75rem; border-radius: 8px; background: linear-gradient(90deg, #eef2f7 25%, #f7fafc 50%, #eef2f7 75%); background-size: 200% 100%; animation: bw-shimmer 1.2s ease-in-out infinite; margin-bottom: 0.5rem; }
.bw-skel-row.short { width: 60%; }
.bw-skel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.45rem; margin-top: 0.75rem; }
.bw-skel-grid::before, .bw-skel-grid::after { content: ''; height: 2.5rem; border-radius: 8px; background: #eef2f7; }
.bw-skel-grid::before { grid-column: 1 / 3; }
.bw-skel-grid::after { grid-column: 3 / 5; }
@keyframes bw-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .bw-skel-row { animation: none; } }
.bw-muted { color: var(--text-light, #64748b); font-size: 0.9rem; }
.bw-err { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; padding: 0.7rem 0.85rem; border-radius: 8px; margin-top: 0.85rem; font-size: 0.9rem; }
.bw-ok { background: #E8F9F1; color: #065F46; border: 1px solid #A7F3D0; padding: 1rem 1.1rem; border-radius: 10px; }
.bw-ok strong { display: block; font-size: 1.05rem; margin-bottom: 0.35rem; }
.bw-ok p { margin: 0.25rem 0 0; }

.booking-fallback {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ── Form status messages ── */
.form-status {
    display: none;
    margin: 0 0 1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.92rem;
    line-height: 1.45;
}
.form-status.show { display: block; }
.form-status.success { background: #E8F9F1; color: #065F46; border: 1px solid #A7F3D0; }
.form-status.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ── Currency switcher ── */
.currency-switch {
    display: inline-flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 100px;
    overflow: hidden;
    background: var(--bg-white);
    margin: 0 auto 1.5rem;
}
.currency-switch button {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.currency-switch button + button { border-left: 1px solid var(--border); }
.currency-switch button:hover { color: var(--accent); }
.currency-switch button.active { background: var(--accent); color: #fff; }
.hero-dark .currency-switch { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
.hero-dark .currency-switch button { color: rgba(255,255,255,0.7); }
.hero-dark .currency-switch button + button { border-left-color: rgba(255,255,255,0.2); }
.hero-dark .currency-switch button.active { background: #fff; color: var(--primary); }
#sprint .currency-switch { display: flex; width: fit-content; margin: 0 auto 2rem; }

/* ═══ v5 additions ═══ */

/* Sprint landing page */
.lp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #143462 60%, var(--accent-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 5.5rem 0 4.5rem;
}
.lp-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    line-height: 1.2;
    color: #fff;
    margin: 1.25rem 0 1rem;
}
.lp-sub {
    max-width: 680px;
    margin: 0 auto 1.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}
.lp-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.lp-price-note {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
}
.lp-hero-note { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); margin-top: 1rem; }
.lp-hero .currency-switch { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); }
.lp-hero .currency-switch button { color: rgba(255,255,255,0.75); }
.lp-hero .currency-switch button + button { border-left-color: rgba(255,255,255,0.2); }
.lp-hero .currency-switch button.active { background: #fff; color: var(--primary); }

.lp-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.lp-fit-col h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.check-list li, .cross-list li {
    list-style: none;
    padding: 0.5rem 0 0.5rem 1.9rem;
    position: relative;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
}
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cross-list li::before { content: "✕"; position: absolute; left: 0; color: var(--text-light); font-weight: 700; }
@media (max-width: 720px) { .lp-fit { grid-template-columns: 1fr; } }

/* Newsletter */
.newsletter-box {
    background: var(--accent-light);
    border: 1px solid #CFE0FF;
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}
.newsletter-box h3 { margin-bottom: 0.4rem; }
.newsletter-box p { color: var(--text-body); font-size: 0.95rem; }
.newsletter-row { display: flex; gap: 0.6rem; }
.newsletter-row input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}
.newsletter-row .form-submit { white-space: nowrap; padding: 0.8rem 1.4rem; }
.newsletter-form .form-status { margin: 0.75rem 0 0; }
@media (max-width: 720px) {
    .newsletter-box { grid-template-columns: 1fr; padding: 1.5rem; }
    .newsletter-row { flex-direction: column; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Mobile sticky book bar */
.mobile-book-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 900;
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(10, 31, 63, 0.97);
    backdrop-filter: blur(6px);
    transform: translateY(110%);
    transition: transform 0.25s ease;
}
.mobile-book-bar.show { transform: translateY(0); }
.mobile-book-bar a {
    display: block;
    text-align: center;
    background: var(--accent);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem;
    min-height: 2.85rem;
    border-radius: 8px;
    text-decoration: none;
}
@media (max-width: 768px) { .mobile-book-bar { display: block; } }
@media (prefers-reduced-motion: reduce) { .mobile-book-bar { transition: none; } }

/* Consent banner */
.consent-banner {
    position: fixed;
    left: 1rem; bottom: 1rem;
    z-index: 950;
    max-width: 340px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(10, 31, 63, 0.18);
    padding: 1.1rem 1.2rem;
}
.consent-banner p { font-size: 0.85rem; color: var(--text-body); margin-bottom: 0.8rem; line-height: 1.5; }
.consent-actions { display: flex; gap: 0.6rem; }
.consent-actions button {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-body);
}
.consent-actions .consent-accept { background: var(--accent); border-color: var(--accent); color: #fff; }
@media (max-width: 480px) { .consent-banner { left: 0.75rem; right: 0.75rem; max-width: none; } }


/* ═══ v7 additions ═══ */
.blog-toolbar { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }
.blog-toolbar input[type="search"] {
    flex: 1; min-width: 220px; padding: 0.75rem 1rem;
    border: 1px solid var(--border); border-radius: 100px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem;
}
.blog-toolbar select {
    padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 100px;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; background: var(--bg-white); color: var(--text-body);
}
.blog-count { font-size: 0.85rem; color: var(--text-light); white-space: nowrap; }

.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 980px; margin: 0 auto; }
.roi-inputs, .roi-outputs {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
}
.roi-outputs { background: var(--bg-light); }
.roi-inputs h3, .roi-outputs h3 { margin-bottom: 1.25rem; }
.roi-inputs .form-group { margin-bottom: 1.1rem; }
.roi-inputs label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.35rem; }
.roi-inputs input[type="number"], .roi-inputs select {
    width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
    border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
}
.roi-inputs input[type="range"] { width: 100%; accent-color: var(--accent); }
.roi-hint { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 0.35rem; line-height: 1.4; }
.roi-stat { display: flex; justify-content: space-between; align-items: baseline; padding: 0.85rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.roi-stat-label { font-size: 0.9rem; color: var(--text-body); }
.roi-stat-value { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--text-dark); white-space: nowrap; }
.roi-stat.highlight { background: var(--accent-light); border-radius: 8px; padding: 0.85rem 1rem; border-bottom: none; margin-top: 0.5rem; }
.roi-stat.highlight .roi-stat-value { color: var(--accent-dark); }
.roi-payback { font-size: 0.92rem; color: var(--text-body); margin-top: 1rem; line-height: 1.5; }
.roi-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.75rem; line-height: 1.45; }
@media (max-width: 820px) { .roi-grid { grid-template-columns: 1fr; } }

.cmp-wrap { overflow-x: auto; margin: 1.5rem 0 2rem; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.cmp-table th, .cmp-table td { padding: 0.8rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.cmp-table thead th { font-family: 'Poppins', sans-serif; font-size: 0.85rem; color: var(--text-dark); border-bottom: 2px solid var(--accent); }
.cmp-table td:first-child { font-weight: 600; color: var(--text-dark); width: 24%; }
.cmp-table td:nth-child(2) { background: var(--accent-light); }
.cmp-table tr:last-child td { border-bottom: none; }

.download-reveal { display: none; margin-top: 1rem; text-align: center; }
