/* =========================================================
   Lift Lider — design tokens & base
   ========================================================= */
:root {
    --navy: #071F45;
    --navy-deep: #061B3A;
    --navy-soft: #082A59;
    --blue: #006EFF;
    --blue-bright: #168BFF;
    --blue-dark: #0057CC;
    --blue-light: #EAF3FF;
    --blue-pale: #F5F9FF;
    --white: #FFFFFF;
    --ink: #0A1B33;
    --gray-700: #45566B;
    --gray-500: #6B7A8D;
    --gray-300: #C7D2DE;
    --gray-200: #DCE4EE;
    --gray-100: #F1F5FA;
    --border: #E3E9F1;
    --star: #F5B301;
    --danger: #DC2626;
    --success: #1DB854;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(6, 27, 58, 0.07);
    --shadow-md: 0 12px 28px rgba(6, 27, 58, 0.12);
    --shadow-lg: 0 24px 60px rgba(6, 27, 58, 0.20);

    --container: 1180px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-hand: 'Caveat', cursive;

    --dur: 200ms;
    --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy); line-height: 1.2; margin: 0; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--blue);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    z-index: 1000;
}
.skip-link:focus { left: 0; }

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
}

.cursor-pointer, a, button, .accordion-trigger, .btn { cursor: pointer; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    min-height: 48px;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
    white-space: nowrap;
    border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 110, 255, 0.28);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 10px 26px rgba(0, 110, 255, 0.36); transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-white {
    background: #fff;
    color: var(--blue-dark);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-1px); }

.btn-outline-navy {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--blue);
    white-space: nowrap;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--font-heading); font-size: 17px; letter-spacing: 0.3px; color: var(--navy); }
.logo-text small { font-size: 10px; letter-spacing: 1.5px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--gray-700);
    padding: 8px 2px;
    position: relative;
    transition: color var(--dur) var(--ease);
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform var(--dur) var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: none; align-items: center; gap: 10px; }
.header-phone strong { display: block; font-size: 14.5px; color: var(--navy); }
.header-phone small { display: block; font-size: 11.5px; color: var(--gray-500); }
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    flex-shrink: 0;
}
.icon-circle svg { width: 18px; height: 18px; }
.icon-circle-light { background: rgba(255,255,255,0.15); color: #fff; }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero — full-bleed photographic composition with wave divider
   ========================================================= */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--navy);
}
.hero-photo-layer {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: stretch;
}
.hero-illustration {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-illustration svg { width: 100%; height: 100%; display: block; }
.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, var(--navy-deep) 0%, rgba(6,27,58,0.94) 32%, rgba(6,27,58,0.55) 58%, rgba(6,27,58,0.08) 78%);
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.35;
    pointer-events: none;
}
.hero-blob-1 { width: 480px; height: 480px; top: -180px; left: -160px; background: radial-gradient(circle, var(--blue-bright), transparent 70%); }
.hero-blob-2 { width: 360px; height: 360px; bottom: -140px; left: 20%; background: radial-gradient(circle, var(--blue), transparent 70%); opacity: 0.22; }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 76px 0 120px;
}
.hero-copy { max-width: 620px; }
.eyebrow { color: var(--blue-bright); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; margin-bottom: 16px; }
.hero h1 { font-size: clamp(32px, 4.4vw, 50px); font-weight: 800; letter-spacing: -0.3px; color: #fff; text-transform: uppercase; text-wrap: balance; }
.hero h1 span { color: var(--blue-bright); }
.hero-lead { margin-top: 20px; color: rgba(255,255,255,0.82); font-size: 17px; max-width: 46ch; font-weight: 400; }

.hero-features { display: grid; grid-template-columns: repeat(4, auto); gap: 22px; margin-top: 34px; }
.hero-features li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: #fff; }
.feature-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.12); color: var(--blue-bright); box-shadow: none;
    flex-shrink: 0;
}
.feature-icon svg { width: 17px; height: 17px; }

.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 38px; flex-wrap: wrap; }

.hero-tagline {
    position: absolute;
    z-index: 3;
    right: 6%;
    top: 14%;
    text-align: right;
    color: #fff;
    pointer-events: none;
}
.hero-tagline span {
    display: block;
    font-family: var(--font-hand);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.hero-tagline svg { width: 150px; height: auto; margin: 4px 0 0 auto; }

.hero-badge {
    position: absolute;
    z-index: 3;
    right: 6%;
    bottom: 108px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.hero-badge-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue); flex-shrink: 0;
}
.hero-badge-icon svg { width: 20px; height: 20px; }
.hero-badge strong { display: block; font-size: 15px; color: var(--navy); }
.hero-badge small { display: block; font-size: 12px; color: var(--gray-500); }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* =========================================================
   Section heads (shared across services / why / how / ready / projects)
   ========================================================= */
section { padding: 84px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 34px); font-weight: 800; text-transform: uppercase; letter-spacing: 0.2px; text-wrap: balance; }
.section-head h2 span { color: var(--blue); }
.section-head p { margin-top: 12px; max-width: 60ch; color: var(--gray-700); }

.section-head-center { flex-direction: column; align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.section-head-center p { margin-left: auto; margin-right: auto; }
.section-head-center > div { max-width: 640px; }

/* =========================================================
   Services
   ========================================================= */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card-body { padding: 30px 26px 28px; }
.service-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--blue);
    color: #fff;
    margin-bottom: 20px;
    transition: transform var(--dur) var(--ease);
}
.service-card:hover .service-card-icon { transform: scale(1.06); }
.service-card-icon svg { width: 25px; height: 25px; }
.service-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.service-card-body p { color: var(--gray-700); font-size: 14.5px; }

.grad-0 { background: linear-gradient(135deg, var(--blue), var(--navy-deep)); }
.grad-1 { background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark)); }
.grad-2 { background: linear-gradient(135deg, var(--navy-deep), var(--blue)); }
.grad-3 { background: linear-gradient(135deg, var(--blue-bright), var(--navy-soft)); }
.grad-4 { background: linear-gradient(135deg, var(--navy-soft), var(--blue-bright)); }
.grad-5 { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); }

/* =========================================================
   CTA strip (compact, right after Services)
   ========================================================= */
.cta-strip { padding: 44px 0; background: var(--blue-light); }
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-strip h2 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; }
.cta-strip-copy p { margin-top: 6px; color: var(--gray-700); font-size: 15px; }

/* =========================================================
   Stats
   ========================================================= */
.stats { position: relative; background: var(--navy); padding: 0; overflow: hidden; }
.stats::before {
    content: "";
    position: absolute;
    width: 360px; height: 360px;
    right: 4%; top: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--blue-bright) 0%, transparent 70%);
    opacity: 0.16;
    pointer-events: none;
}
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 6px;
    padding: 40px 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat strong { font-family: var(--font-heading); font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; color: #fff; }
.stat span { font-size: 13.5px; color: rgba(255,255,255,0.7); font-weight: 600; }

/* =========================================================
   Why us — 6 numbered cards
   ========================================================= */
.why { background: var(--blue-pale); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 26px 28px;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--blue-bright);
    margin-bottom: 14px;
}
.why-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--blue-light); color: var(--blue);
    margin-bottom: 16px;
}
.why-card-icon svg { width: 23px; height: 23px; }
.why-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--gray-700); font-size: 14px; }
.why-cta { display: flex; justify-content: center; margin-top: 40px; }

/* =========================================================
   Cum lucrăm — 4-step process
   ========================================================= */
.how { background: #fff; }
.how-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.how-grid::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.how-card { position: relative; z-index: 1; text-align: center; }
.how-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(6, 27, 58, 0.22);
}
.how-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.how-card p { color: var(--gray-700); font-size: 14px; }

/* =========================================================
   Projects
   ========================================================= */
.projects { background: #fff; }
.projects-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.project-tile {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    color: #fff; text-align: center; padding: 16px;
    transition: transform var(--dur) var(--ease);
}
.project-tile:hover { transform: translateY(-4px); }
.project-tile > svg { width: 30px; height: 30px; }
.project-tile span { font-size: 13px; font-weight: 700; }
.project-tile-label { font-size: 13px; font-weight: 700; }
.project-tile-locality {
    display: flex; align-items: center; gap: 4px;
    font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.75);
}
.project-tile-locality svg { width: 12px; height: 12px; }
.project-tile-more { background: var(--navy); }

/* =========================================================
   CTA banner (main)
   ========================================================= */
.cta-banner {
    position: relative;
    background: linear-gradient(120deg, var(--navy-deep) 0%, var(--blue-dark) 100%);
    color: #fff;
    overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner::before { width: 420px; height: 420px; right: -140px; top: -180px; background: radial-gradient(circle, var(--blue-bright) 0%, transparent 70%); opacity: 0.28; }
.cta-banner::after { width: 300px; height: 300px; left: 8%; bottom: -180px; background: radial-gradient(circle, var(--blue-bright) 0%, transparent 70%); opacity: 0.18; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin-bottom: 14px; }
.cta-banner > .container > div:first-child p { color: rgba(255,255,255,0.8); max-width: 46ch; margin-bottom: 26px; }
.cta-contact { display: flex; flex-direction: column; gap: 18px; }
.cta-contact a, .cta-contact .cta-address { display: flex; align-items: center; gap: 14px; }
.cta-contact strong { display: block; font-size: 15.5px; }
.cta-contact small { display: block; font-size: 12.5px; color: rgba(255,255,255,0.7); }

/* =========================================================
   Ready section (replaces invented testimonials)
   ========================================================= */
.ready { background: var(--gray-100); }
.ready-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ready-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.ready-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue);
    margin-bottom: 16px;
}
.ready-icon svg { width: 24px; height: 24px; }
.ready-item p { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.5; }
.ready-cta { display: flex; justify-content: center; margin-top: 40px; }

/* =========================================================
   FAQ + contact form
   ========================================================= */
.faq-contact { background: #fff; }
.faq-contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.faq-col h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; text-transform: uppercase; letter-spacing: 0.2px; }
.faq-col h2 span { color: var(--blue); }
.faq-col > p { margin-top: 12px; color: var(--gray-700); margin-bottom: 28px; }

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 4px;
    text-align: left;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--navy);
}
.accordion-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue); flex-shrink: 0;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.accordion-icon svg { width: 15px; height: 15px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); background: var(--blue); color: #fff; }
.accordion-panel { padding: 0 4px 20px; color: var(--gray-700); font-size: 14.5px; line-height: 1.7; }

.form-col { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 26px 28px;
}
.contact-info-brand { margin-bottom: 18px; display: flex; flex-direction: column; gap: 2px; }
.contact-info-brand strong { font-size: 17px; font-weight: 800; letter-spacing: 0.3px; }
.contact-info-brand span { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.contact-info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.contact-info-list li { display: flex; align-items: center; gap: 10px; }
.contact-info-list a, .contact-info-list span { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.contact-info-list a { transition: color var(--dur) var(--ease); }
.contact-info-list a:hover { color: var(--blue-bright); }
.contact-info-list svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--blue-bright); }
.contact-info-hours {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
    color: var(--blue-bright);
    margin-bottom: 20px;
}
.contact-info-hours svg { width: 15px; height: 15px; }
.contact-info-card .btn-outline-navy { background: #fff; border-color: #fff; color: var(--navy); }
.contact-info-card .btn-outline-navy:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: #fff; }

.form-card {
    background: var(--blue-pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.form-card h3 { font-size: 20px; font-weight: 800; }
.form-card > p { margin-top: 8px; color: var(--gray-700); font-size: 14px; margin-bottom: 22px; }

.form-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.form-field label { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.form-field label svg { width: 15px; height: 15px; color: var(--blue); }
.form-field input, .form-field select, .form-field textarea {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    background: #fff;
    min-height: 52px;
    font-size: 16px;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 110, 255, 0.14);
    outline: none;
}
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"] { border-color: var(--danger); }
.field-error { font-size: 12.5px; color: var(--danger); min-height: 15px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 18px; text-align: center; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 1fr;
    gap: 32px;
    padding: 72px 24px 48px;
}
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.65; max-width: 32ch; }
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text small { color: rgba(255,255,255,0.55); }
.footer-col h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue-bright); }
.social-row { display: flex; gap: 10px; margin-bottom: 24px; }
.social-row a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: #fff;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social-row a:hover { background: var(--blue); transform: translateY(-2px); }
.social-row svg { width: 17px; height: 17px; }
.footer-signature { font-family: var(--font-hand); font-weight: 700; color: var(--blue-bright); font-size: 20px; line-height: 1.3; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    font-size: 12.5px;
}

.back-to-top {
    position: fixed;
    right: 22px; bottom: 22px;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(20px) rotate(180deg);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    z-index: 90;
}
.back-to-top.is-visible { transform: translateY(0) rotate(180deg); opacity: 1; pointer-events: auto; }
.back-to-top svg { width: 20px; height: 20px; }

/* Sticky mobile call bar — hidden on desktop, shown only on small screens (see media query) */
.mobile-call-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 16px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 -8px 24px rgba(6, 27, 58, 0.18);
}
.mobile-call-bar svg { width: 19px; height: 19px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .hero-photo-layer { min-height: 720px; }
    .hero-scrim { background: linear-gradient(180deg, rgba(6,27,58,0.55) 0%, var(--navy-deep) 62%, var(--navy-deep) 100%); }
    .hero-content { align-items: flex-end; padding-bottom: 150px; }
    .hero-tagline { top: 8%; right: 5%; }
    .hero-badge { right: 5%; bottom: 130px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
    .how-grid::before { display: none; }
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
    .ready-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .main-nav { position: fixed; inset: 72px 0 0 0; background: #fff; padding: 20px 24px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); overflow-y: auto; }
    .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 14px 4px; font-size: 17px; border-bottom: 1px solid var(--border); }
    .header-phone { display: none !important; }
    .nav-toggle { display: inline-flex; }
    .cta-grid { grid-template-columns: 1fr; }
    .cta-strip-inner { justify-content: center; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (min-width: 861px) {
    .header-phone { display: flex; }
    .nav-toggle { display: none; }
}

@media (max-width: 700px) {
    section { padding: 56px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-features { grid-template-columns: repeat(2, auto); }
    .why-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; gap: 24px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .ready-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; padding-top: 48px; }
    .footer-bottom { flex-direction: column; text-align: center; padding-bottom: 84px; }
    .section-head { flex-direction: column; align-items: flex-start; }

    .hero-photo-layer { min-height: 620px; }
    .hero-content { padding-bottom: 120px; }
    .hero-tagline { display: none; }
    .hero-badge { left: 24px; right: auto; bottom: 44px; }

    .mobile-call-bar { display: flex; }
    .back-to-top { bottom: 76px; }
}

@media (max-width: 420px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
    .hero-photo-layer { min-height: 560px; }
    .hero-badge { padding: 10px 14px; gap: 8px; }
    .hero-badge strong { font-size: 13px; }
}
