/* ==========================================================================
   DOEL Tanzania — Design System
   Tokens, base styles, typography, and every reusable component.
   Mobile-first; breakpoint overrides live in responsive.css.
   ========================================================================== */

:root {
    /* Palette */
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #f7f7f8;
    --gray-100: #eeeeef;
    --gray-200: #e2e2e5;
    --gray-400: #a9a9b0;
    --gray-500: #6b6b70;
    --gray-700: #3a3a3e;
    --gray-900: #161618;
    --accent: #1e3af1;
    --accent-dark: #1226b3;
    --accent-soft: #eef0fe;

    /* Type */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Layout */
    --container-w: 1240px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.06), 0 1px 1px rgba(10, 10, 10, 0.04);
    --shadow-md: 0 12px 32px rgba(10, 10, 10, 0.08);
    --shadow-lg: 0 24px 64px rgba(10, 10, 10, 0.14);
    --nav-h: 76px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--black);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
table { border-collapse: collapse; width: 100%; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---- Skip link ---- */
.skip-link {
    position: fixed; top: -60px; left: 12px; z-index: 1000;
    background: var(--black); color: var(--white); padding: 12px 20px;
    border-radius: var(--radius-sm); transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container-w); margin-inline: auto; padding-inline: 20px; }
main { display: block; }
.section { padding-block: 88px; }
.section--tight { padding-block: 56px; }
.section--dark { background: var(--gray-900); color: var(--white); }
.section--light { background: var(--gray-50); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--accent); display: inline-block; }
.section-title { font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.75rem); }
.section-subtitle { margin-top: 14px; color: var(--gray-500); font-size: 1.05rem; }
.section--dark .section-subtitle { color: var(--gray-400); }

/* ---- Typography helpers ---- */
.text-gray { color: var(--gray-500); }
.text-accent { color: var(--accent); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 30px; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 0.95rem; white-space: nowrap;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--black { background: var(--black); color: var(--white); }
.btn--black:hover { background: var(--gray-900); box-shadow: var(--shadow-md); }
.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-dark); box-shadow: 0 12px 28px rgba(30, 58, 241, 0.28); }
.btn--outline { background: transparent; color: var(--black); border: 1.5px solid var(--gray-200); }
.btn--outline:hover { border-color: var(--black); }
.btn--outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.3); }
.btn--outline-light:hover { border-color: var(--white); }
.btn--block { width: 100%; }

/* ---- Icons ---- */
.icon { width: 22px; height: 22px; flex-shrink: 0; }
.icon--lg { width: 30px; height: 30px; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav {
    position: fixed; inset: 0 0 auto 0; z-index: 500; height: var(--nav-h);
    display: flex; align-items: center;
    background: transparent; transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-nav.is-scrolled {
    background: rgba(10, 10, 10, 0.72); backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-nav__brand { display: inline-flex; align-items: center; }
.site-nav__logo { height: 34px; width: auto; }

.site-nav__links ul { display: flex; align-items: center; gap: 4px; }
.site-nav__links a {
    display: inline-block; padding: 10px 16px; border-radius: var(--radius-pill);
    font-size: 0.92rem; font-weight: 500; color: rgba(255, 255, 255, 0.82);
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.site-nav__links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.site-nav__links a.is-active { color: var(--white); background: var(--accent); }

.site-nav__actions { display: flex; align-items: center; gap: 10px; }
.site-nav__toggle { display: flex; align-items: center; justify-content: center; padding: 8px; color: var(--white); }
.site-nav__toggle .icon--close { display: none; }
.site-nav__toggle[aria-expanded="true"] .icon--menu { display: none; }
.site-nav__toggle[aria-expanded="true"] .icon--close { display: block; }

/* Inline nav CTA is desktop-only; mobile gets one inside the slide-out menu instead
   (avoids the "Get a Quote" button + hamburger overflowing narrow viewports). */
.site-nav__actions > .btn { display: none; }

/* Mobile nav overlay (desktop layout restored in responsive.css) */
.site-nav__links {
    position: fixed; inset: var(--nav-h) 0 0 0; background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px); transform: translateX(100%); transition: transform 0.35s var(--ease);
    overflow-y: auto;
}
.site-nav__links.is-open { transform: translateX(0); }
.site-nav__links ul { flex-direction: column; align-items: stretch; padding: 28px 24px 4px; gap: 4px; }
.site-nav__links a { font-size: 1.1rem; padding: 16px 18px; }
.nav-mobile-cta { margin: 20px 24px 28px; text-align: center; }
body.nav-open { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative; padding-top: calc(var(--nav-h) + 64px); padding-bottom: 96px;
    background: var(--black); color: var(--white); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg::before, .hero__bg::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(90px);
    opacity: 0.35; animation: float 16s ease-in-out infinite;
}
.hero__bg::before { width: 420px; height: 420px; background: var(--accent); top: -120px; right: -60px; }
.hero__bg::after { width: 360px; height: 360px; background: #4a5cff; bottom: -140px; left: -80px; animation-delay: -8s; }
.hero__grid { position: absolute; inset: 0; z-index: 0; opacity: 0.5;
    background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 56px 56px; mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
}
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-24px, 24px); } }

.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
    border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.04em; margin-bottom: 28px;
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.hero__title {
    font-size: clamp(2.4rem, 1.9rem + 3.5vw, 4.6rem); max-width: 15ch;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: block; animation: rise 0.9s var(--ease) both; }
.hero__title .line:nth-child(2) span { animation-delay: 0.1s; }
.hero__title .accent-word { color: var(--accent); }
@keyframes rise { from { transform: translateY(110%); } to { transform: translateY(0); } }

.hero__lead { margin-top: 26px; max-width: 46ch; font-size: 1.15rem; color: rgba(255, 255, 255, 0.72); }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__stats { margin-top: 72px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat-card {
    padding: 22px; border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}
.stat-card__value { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; }
.stat-card__label { margin-top: 4px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.62); }

.hero__columns { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.hero__illustration { margin-top: 0; }
.hero__illustration svg { width: 100%; height: auto; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
    position: relative; padding-top: calc(var(--nav-h) + 56px); padding-bottom: 64px;
    background: var(--black); color: var(--white); overflow: hidden;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero__title { font-size: clamp(2rem, 1.6rem + 2.2vw, 3.2rem); }
.page-hero__lead { margin-top: 18px; font-size: 1.08rem; color: rgba(255, 255, 255, 0.72); max-width: 62ch; }
.page-hero__crumb { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.page-hero__crumb a { color: rgba(255, 255, 255, 0.8); }
.page-hero__crumb a:hover { color: var(--white); }

/* ==========================================================================
   Cards & grids
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

.card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
    padding: 32px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.icon-tile {
    width: 56px; height: 56px; border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--black); color: var(--white); margin-bottom: 22px;
}
.icon-tile--accent { background: var(--accent); }
.icon-tile .icon { width: 26px; height: 26px; }

/* Service card */
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 0.96rem; }
.service-card__benefits { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.service-card__benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-700); }
.service-card__benefits .icon { width: 16px; height: 16px; color: var(--accent); margin-top: 3px; }
.service-card__cta { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--black); }
.service-card__cta .icon { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.service-card__cta:hover .icon { transform: translateX(4px); }

/* Value card */
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--gray-500); font-size: 0.92rem; }

/* Why-us list item */
.why-item { display: flex; gap: 18px; padding: 26px 0; border-top: 1px solid var(--gray-200); }
.why-item:first-child { border-top: none; padding-top: 0; }
.why-item__num { font-size: 0.85rem; font-weight: 700; color: var(--accent); min-width: 34px; }
.why-item h3 { font-size: 1.02rem; margin-bottom: 6px; }
.why-item p { color: var(--gray-500); font-size: 0.92rem; }
.section--dark .why-item { border-color: rgba(255, 255, 255, 0.12); }
.section--dark .why-item p { color: var(--gray-400); }

/* Industry row */
.industry-table { width: 100%; }
.industry-table tr { border-bottom: 1px solid var(--gray-200); }
.industry-table td { padding: 18px 12px; vertical-align: top; }
.industry-table td:first-child { font-weight: 700; white-space: nowrap; padding-right: 32px; }
.industry-table td:last-child { color: var(--gray-500); }

/* ==========================================================================
   Process
   ========================================================================== */
.process-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.process-item { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding-block: 30px; position: relative; }
.process-item::before {
    content: ''; position: absolute; left: 31px; top: 0; bottom: 0; width: 2px;
    background: var(--gray-200);
}
.process-item:first-child::before { top: 32px; }
.process-item:last-child::before { bottom: calc(100% - 32px); }
.process-item__node {
    width: 64px; height: 64px; border-radius: 50%; background: var(--black); color: var(--white);
    display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; flex-shrink: 0;
}
.process-item__node .icon { width: 26px; height: 26px; }
.process-item__step { position: absolute; top: -8px; left: 46px; background: var(--accent); color: var(--white);
    font-size: 0.68rem; font-weight: 800; width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; z-index: 2; }
.process-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.process-item p { color: var(--gray-500); max-width: 60ch; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-card { position: relative; display: flex; flex-direction: column; }
.pricing-card--featured { border-color: var(--black); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.pricing-card__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--white); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill);
}
.pricing-card__code {
    width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--gray-100);
    display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 20px;
}
.pricing-card--featured .pricing-card__code { background: var(--black); color: var(--white); }
.pricing-card h3 { font-size: 1.3rem; }
.pricing-card__tagline { color: var(--gray-500); font-size: 0.88rem; margin-top: 4px; }
.pricing-card__price { margin-top: 24px; font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; }
.pricing-card__price small { font-size: 0.95rem; font-weight: 600; color: var(--gray-500); }
.pricing-card__note { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }
.pricing-card__suitable { margin-top: 18px; color: var(--gray-500); font-size: 0.9rem; }
.pricing-card__features { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.pricing-card__features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.pricing-card__features .icon { width: 17px; height: 17px; color: var(--accent); margin-top: 2px; }
.pricing-card .btn { margin-top: 26px; }

.includes-strip {
    display: flex; flex-wrap: wrap; gap: 14px 28px; padding: 28px 32px; border-radius: var(--radius-md);
    background: var(--gray-50); border: 1px solid var(--gray-200); margin-top: 40px;
}
.includes-strip__item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }
.includes-strip__item .icon { width: 18px; height: 18px; color: var(--accent); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.hosting-table, .domain-table { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; min-width: 560px; }
.domain-table { min-width: 360px; }
.industry-table { min-width: 640px; }
.hosting-table th, .hosting-table td, .domain-table th, .domain-table td { padding: 16px 20px; text-align: left; font-size: 0.92rem; }
.hosting-table thead th, .domain-table thead th {
    background: var(--black); color: var(--white); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hosting-table tbody tr, .domain-table tbody tr { border-top: 1px solid var(--gray-200); }
.hosting-table tbody tr.is-featured { background: var(--accent-soft); }
.hosting-table td:first-child { font-weight: 700; }

.disclaimer-box {
    margin-top: 48px; padding: 28px 32px; border-radius: var(--radius-md); border: 1.5px dashed var(--gray-200);
    background: var(--gray-50);
}
.disclaimer-box h3 { font-size: 1rem; margin-bottom: 10px; }
.disclaimer-box p { color: var(--gray-500); font-size: 0.92rem; }
.disclaimer-box ul { margin-top: 14px; display: grid; grid-template-columns: 1fr; gap: 6px 24px; }
.disclaimer-box ul li { font-size: 0.86rem; color: var(--gray-700); position: relative; padding-left: 16px; }
.disclaimer-box ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.terms-list { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.terms-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.92rem; color: var(--gray-700); }
.terms-list .num { font-weight: 800; color: var(--accent); min-width: 24px; }

/* ==========================================================================
   Clients
   ========================================================================== */
.clients-intro { max-width: 640px; margin: 0 auto 48px; text-align: center; color: var(--gray-500); }

.clients-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.clients-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 28s linear infinite; }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.client-tile {
    display: flex; align-items: center; justify-content: center;
    height: 80px; width: 180px; flex-shrink: 0; padding: 14px 20px;
    border-radius: var(--radius-md); background: var(--gray-50); border: 1px solid var(--gray-200);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.client-tile:hover { transform: translateY(-5px) scale(1.03); box-shadow: var(--shadow-md); border-color: transparent; }
.client-tile img {
    max-height: 100%; max-width: 100%; object-fit: contain;
    filter: grayscale(100%) contrast(1.05); opacity: 0.72;
    transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}
.client-tile:hover img { opacity: 1; filter: grayscale(70%) contrast(1.05); }
.client-tile__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ==========================================================================
   Portfolio
   ========================================================================== */
.portfolio-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); background: var(--gray-50); }
.portfolio-card__media { aspect-ratio: 4 / 3; background: var(--white); display: flex; align-items: center; justify-content: center; padding: 32px; border-bottom: 1px solid var(--gray-200); }
.portfolio-card__media svg { width: 100%; height: 100%; }
.portfolio-card__body { padding: 26px 28px; }
.portfolio-card__tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.portfolio-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.portfolio-card p { color: var(--gray-500); font-size: 0.9rem; }
.portfolio-card__badge {
    position: absolute; top: 16px; right: 16px; background: rgba(10,10,10,0.85); color: var(--white);
    font-size: 0.7rem; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-pill);
}

/* ==========================================================================
   Testimonials (coming soon state)
   ========================================================================== */
.testimonial-placeholder {
    text-align: center; padding: 64px 32px; border-radius: var(--radius-lg);
    border: 1.5px dashed var(--gray-200); background: var(--gray-50);
}
.testimonial-placeholder .icon-tile { margin-inline: auto; }
.testimonial-placeholder h3 { font-size: 1.3rem; margin-bottom: 10px; }
.testimonial-placeholder p { color: var(--gray-500); max-width: 46ch; margin-inline: auto; }

/* ==========================================================================
   FAQ (native details/summary accordion)
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.faq-item summary {
    list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center;
    justify-content: space-between; gap: 20px; font-weight: 600; font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { width: 20px; height: 20px; color: var(--gray-500); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary .icon { transform: rotate(180deg); color: var(--accent); }
.faq-item__answer { padding: 0 26px 24px; color: var(--gray-500); font-size: 0.95rem; max-width: 68ch; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.contact-info-card { padding: 32px; border-radius: var(--radius-md); background: var(--gray-900); color: var(--white); }
.contact-info-card h3 { font-size: 1.2rem; margin-bottom: 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.92rem; }
.contact-info-list .icon { color: var(--accent); margin-top: 2px; }
.contact-info-list a:hover { color: var(--accent); }
.contact-info-list .social-row { display: flex; gap: 10px; margin-top: 4px; }
.contact-info-list .social-row a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center; transition: background-color 0.25s var(--ease);
}
.contact-info-list .social-row a:hover { background: var(--accent); }
.contact-info-list .social-row .icon { margin-top: 0; width: 17px; height: 17px; }

.map-embed { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

.form-card { padding: 36px; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.form-grid { display: grid; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.85rem; font-weight: 600; }
.form-field .required { color: var(--accent); }
.form-field input, .form-field select, .form-field textarea {
    padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200);
    background: var(--white); font-size: 0.95rem; transition: border-color 0.2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-hp { position: absolute; left: -9999px; top: -9999px; }

.form-alert { padding: 16px 20px; border-radius: var(--radius-sm); font-size: 0.92rem; margin-bottom: 24px; display: flex; gap: 12px; align-items: flex-start; }
.form-alert--success { background: #eafaf0; color: #146c3a; border: 1px solid #b8ecc9; }
.form-alert--error { background: #fdeeee; color: #a11616; border: 1px solid #f6c7c7; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black); color: var(--white); padding-top: 80px; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-logo { height: 26px; margin-bottom: 18px; }
.footer-tagline { font-weight: 600; color: var(--accent); font-size: 0.95rem; }
.footer-about { margin-top: 14px; color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center; transition: background-color 0.25s var(--ease);
}
.footer-social a:hover { background: var(--accent); }
.footer-social .icon { width: 16px; height: 16px; }

.footer-heading { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); }
.footer-contact .icon { width: 18px; height: 18px; color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--white); }

.site-footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 24px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }

/* ---- Back to top ---- */
.back-to-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 400; width: 48px; height: 48px; border-radius: 50%;
    background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }

/* ==========================================================================
   Reveal / counter animation hooks (JS toggles .is-visible)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.27s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: 0.36s; }

/* ---- CTA band ---- */
.cta-band { border-radius: var(--radius-lg); background: var(--black); color: var(--white); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(30,58,241,0.35), transparent 55%); }
.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem); max-width: 20ch; margin-inline: auto; }
.cta-band p { margin-top: 14px; color: rgba(255,255,255,0.7); max-width: 50ch; margin-inline: auto; }
.cta-band__actions { margin-top: 32px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
