/**
 * Baltic Electrical — Main Stylesheet (Design System)
 * Version: 1.0.0
 *
 * Table of Contents:
 * 1. CSS Variables
 * 2. CSS Reset
 * 3. Base Typography
 * 4. Layout (Container, Section)
 * 5. Buttons
 * 6. Stage Labels (stag pattern)
 * 7. Reveal Animations
 * 8. Header
 * 9. Footer
 * 10. Divider
 * 11. Utilities
 * 12. Responsive
 */

/* ═══════════════════════════════════════════
   1. CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
    /* Brand */
    --sky:    #00AADC;
    --sky-l:  #33BFEA;
    --sky-p:  #E8F7FC;
    --navy:   #002D78;
    --navy-l: #003A99;
    --navy-d: #001B47;

    /* Text */
    --td: #0A1628;   /* headings, dark text */
    --tb: #3A4A5C;   /* body text */
    --tm: #7A8A9C;   /* muted / secondary text */

    /* UI */
    --brd:   #DDE4EA;  /* borders */
    --bg:    #F4F7FA;  /* section backgrounds */
    --white: #ffffff;
    --gold:  #F5A623;  /* stars / ratings */

    /* Transparency helpers */
    --line:  rgba(0,170,220,0.09);
    --ls:    rgba(0,170,220,0.16);
    --cb:    rgba(255,255,255,0.09);

    /* Font */
    --font: 'DM Sans', Arial, sans-serif;
}

/* ═══════════════════════════════════════════
   2. CSS RESET
   ═══════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--tb);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font-family: var(--font);
    cursor: pointer;
}

/* ═══════════════════════════════════════════
   3. BASE TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    color: var(--td);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(36px, 6.5vw, 84px); letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
h4 { font-size: 17px; font-weight: 700; }

p {
    margin-bottom: 16px;
    line-height: 1.72;
}

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

a:hover {
    color: var(--navy);
}

strong, b {
    font-weight: 700;
}

em {
    font-style: normal;
}

/* ═══════════════════════════════════════════
   4. LAYOUT
   ═══════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.be-section {
    padding: 110px 0;
}

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

.be-section--navy {
    background: var(--navy);
    color: #fff;
}

.be-section--dark {
    background: var(--navy-d);
    color: #fff;
}

.be-section--gradient {
    background: linear-gradient(135deg, var(--navy), var(--sky));
    color: #fff;
}

/* ═══════════════════════════════════════════
   5. BUTTONS
   ═══════════════════════════════════════════ */
.be-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: transform 0.25s, background 0.25s, border-color 0.3s, color 0.3s;
}

.be-btn:hover {
    transform: translateY(-2px);
}

.be-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Primary: sky bg, white text */
.be-btn--primary,
.be-btn-primary {
    background: var(--sky);
    color: #fff;
}

.be-btn--primary:hover,
.be-btn-primary:hover {
    background: var(--sky-l);
    color: #fff;
}

/* Secondary: outline */
.be-btn--secondary,
.be-btn-secondary {
    border: 1.5px solid rgba(255,255,255,0.15);
    color: #fff;
    background: transparent;
}

.be-btn--secondary:hover,
.be-btn-secondary:hover {
    border-color: var(--sky);
    color: var(--sky);
}

/* Navy: dark bg */
.be-btn--navy {
    background: var(--navy);
    color: #fff;
}

.be-btn--navy:hover {
    background: var(--navy-l);
    color: #fff;
}

/* Outline on light bg */
.be-btn--outline {
    border: 1.5px solid var(--brd);
    background: #fff;
    color: var(--td);
}

.be-btn--outline:hover {
    border-color: var(--navy);
    color: var(--navy);
}

/* Ghost: white bg on gradient/dark */
.be-btn--ghost {
    background: #fff;
    color: var(--navy);
}

/* Larger CTA */
.be-btn--lg {
    min-height: 56px;
    padding: 0 34px;
}

/* ═══════════════════════════════════════════
   6. STAGE LABELS (stag pattern)
   Used across: services, portfolio, areas, reviews
   ═══════════════════════════════════════════ */
.be-stag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.be-stag-line {
    width: 40px;
    height: 2px;
    background: var(--sky);
    transform-origin: left;
}

.be-stag span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 700;
}

/* Badge: pill with dot or icon */
.be-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,170,220,0.06);
    color: var(--sky);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 700;
}

.be-badge--navy {
    background: var(--navy);
    border: none;
}

.be-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sky);
    box-shadow: 0 0 10px rgba(0,170,220,0.7);
    animation: be-pulse 2s ease-in-out infinite;
}

@keyframes be-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0,170,220,0.6); opacity: 1; }
    50% { box-shadow: 0 0 18px rgba(0,170,220,0.9); opacity: 0.7; }
}

/* Tag: small label on cards */
.be-tag {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    background: rgba(0,170,220,0.06);
    border: 1px solid rgba(0,170,220,0.14);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   7. REVEAL ANIMATIONS (GSAP sets these)
   ═══════════════════════════════════════════ */
.be-reveal {
    opacity: 0;
    transform: translateY(24px);
}

/* ═══════════════════════════════════════════
   8. HEADER / NAVIGATION (#be-nav)
   ═══════════════════════════════════════════ */
#be-nav, #be-nav * { box-sizing: border-box; margin: 0; padding: 0; }
#be-nav a { text-decoration: none; color: inherit; }
#be-nav img { display: block; }

/* Bar */
#be-nav .bn-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99999;
    background: rgba(0,27,71,.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--font);
    transition: background .4s, box-shadow .4s;
}
#be-nav .bn-bar.is-scrolled {
    background: rgba(0,27,71,.97);
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
#be-nav .bn-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
#be-nav .bn-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
#be-nav .bn-logo img { width: 36px; height: auto; }
#be-nav .bn-logo-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    font-family: var(--font);
}
#be-nav .bn-logo-lic {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: var(--sky);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: var(--font);
}

/* Desktop links */
#be-nav .bn-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
#be-nav .bn-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.65);
    font-family: var(--font);
    transition: color .3s;
    letter-spacing: .01em;
    border: none;
    background: none;
    padding: 0;
}
#be-nav .bn-links a:hover { color: #fff; }

/* Desktop contact hybrid */
#be-nav .bn-contact {
    position: relative;
}
#be-nav .bn-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: none;
    background: none;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    letter-spacing: .01em;
    transition: color .25s;
}
#be-nav .bn-contact-btn:hover,
#be-nav .bn-contact-btn.is-open { color: #fff; }
#be-nav .bn-contact-btn:focus-visible {
    outline: 2px solid var(--sky);
    outline-offset: 4px;
    border-radius: 2px;
}
#be-nav .bn-contact-chv {
    width: 10px;
    height: 10px;
    color: var(--sky);
    opacity: .45;
    transition: transform .3s, opacity .25s;
}
#be-nav .bn-contact-btn.is-open .bn-contact-chv {
    transform: rotate(180deg);
    opacity: .9;
}
#be-nav .bn-contact-dd {
    position: absolute;
    top: calc(100% + 22px);
    right: -34px;
    width: 388px;
    padding: 18px 18px 16px;
    background:
        radial-gradient(circle at 100% 0%, rgba(0,170,220,.16), transparent 34%),
        linear-gradient(180deg, rgba(18,35,58,.98) 0%, rgba(10,22,40,.98) 100%);
    border: 1px solid rgba(105,195,233,.16);
    border-radius: 0;
    box-shadow:
        0 26px 60px rgba(0,0,0,.42),
        0 0 0 1px rgba(0,170,220,.05) inset,
        0 12px 30px rgba(0,170,220,.08);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
    transform-origin: top right;
}
#be-nav .bn-contact-dd.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
#be-nav .bn-contact-dd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(0,170,220,0), rgba(68,215,255,.9) 50%, rgba(0,170,220,0));
    opacity: .85;
}
#be-nav .bn-contact-dd::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .18;
    pointer-events: none;
}
#be-nav .bn-contact-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 4px 4px 16px;
}
#be-nav .bn-contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 11px;
    border: 1px solid rgba(0,170,220,.18);
    background: rgba(0,170,220,.08);
    border-radius: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #71d9ff;
}
#be-nav .bn-contact-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px rgba(113,217,255,.6);
}
#be-nav .bn-contact-headline {
    max-width: 305px;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255,255,255,.76);
    font-weight: 500;
}
#be-nav .bn-contact-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    padding: 20px 22px;
    background:
        linear-gradient(135deg, rgba(0,170,220,.20), rgba(0,170,220,.07));
    border: 1px solid rgba(103,209,255,.22);
    border-radius: 0;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
#be-nav .bn-contact-cta:hover {
    background: linear-gradient(135deg, rgba(0,170,220,.28), rgba(0,170,220,.11));
    border-color: rgba(126,222,255,.34);
    box-shadow: 0 16px 30px rgba(0,170,220,.12);
    color: #fff;
}
#be-nav .bn-contact-cta:active { transform: scale(.98); }
#be-nav .bn-contact-cta:focus-visible {
    outline: 2px solid var(--sky);
    outline-offset: 2px;
}
#be-nav .bn-contact-cta svg {
    width: 22px;
    height: 22px;
    color: var(--sky);
    flex-shrink: 0;
}
#be-nav .bn-contact-cta-txt {
    flex: 1;
    display: block;
}
#be-nav .bn-contact-cta-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    letter-spacing: -.01em;
}
#be-nav .bn-contact-cta-sub {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,.58);
}
#be-nav .bn-contact-arr {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,.45);
    transition: color .2s, transform .2s;
}
#be-nav .bn-contact-cta:hover .bn-contact-arr {
    color: #7ee0ff;
    transform: translateX(2px);
}
#be-nav .bn-contact-sep {
    height: 1px;
    margin: 0 6px 8px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.10), rgba(255,255,255,0));
}
#be-nav .bn-contact-rows {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 10px 0 4px;
}
#be-nav .bn-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 0;
    background: rgba(255,255,255,.028);
    border: 1px solid rgba(255,255,255,.05);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255,255,255,.82);
    transition: color .2s, background .2s, border-color .2s, transform .2s;
}
#be-nav .bn-contact-row:hover {
    color: #fff;
    background: rgba(255,255,255,.05);
    border-color: rgba(0,170,220,.18);
    transform: translateY(-1px);
}
#be-nav .bn-contact-row:focus-visible {
    outline: 2px solid var(--sky);
    outline-offset: 0;
}
#be-nav .bn-contact-row svg {
    width: 18px;
    height: 18px;
    color: #78ddff;
    opacity: .95;
    flex-shrink: 0;
    transition: opacity .2s, transform .2s;
}
#be-nav .bn-contact-row:hover svg {
    opacity: 1;
    transform: scale(1.06);
}
#be-nav .bn-contact-row-copy {
    flex: 1;
    display: grid;
    gap: 4px;
}
#be-nav .bn-contact-row-title {
    display: block;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.01em;
    color: inherit;
}
#be-nav .bn-contact-row-sub {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255,255,255,.48);
}
#be-nav .bn-contact-row-name,
#be-nav .bn-contact-row-copy {
    flex: 1;
    color: inherit;
}
#be-nav .bn-contact-row small {
    display: none;
}
#be-nav .bn-contact-row-arr {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,.24);
    transition: color .2s, transform .2s;
}
#be-nav .bn-contact-row:hover .bn-contact-row-arr {
    color: #7ee0ff;
    transform: translateX(2px);
}

/* Right group */
#be-nav .bn-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
#be-nav .bn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--sky);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    white-space: nowrap;
    transition: background .3s;
    border: none;
}
#be-nav .bn-phone:hover { background: var(--sky-l); }
#be-nav .bn-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
#be-nav .bn-phone-txt { color: #fff; }

/* Gradient line */
#be-nav .bn-line {
    height: 3px;
    background: linear-gradient(90deg, #002D78, #00AADC, #33BFEA, #00AADC, #002D78);
    background-size: 400% 100%;
    animation: bnFlow 14s linear infinite;
    margin: 0; padding: 0;
}
@keyframes bnFlow { 0% { background-position: 0% 50%; } 100% { background-position: 400% 50%; } }

/* Hamburger */
#be-nav .bn-hb {
    display: none;
    width: 48px;
    height: 48px;
    border: 2px solid var(--sky);
    background: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
#be-nav .bn-hb span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sky);
    padding: 0; margin: 0; border: none;
}

/* ═══ Mobile menu ═══ */
#be-nav .bn-mob {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 100000;
    background: #001B47;
    flex-direction: column;
    font-family: var(--font);
    overflow: hidden;
}
#be-nav .bn-mob.is-open { display: flex; }

#be-nav .bn-mob-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    flex-shrink: 0;
}
#be-nav .bn-mob-top img { width: 32px; height: auto; }

#be-nav .bn-mob-x {
    width: 48px; height: 48px;
    border: 2px solid var(--sky);
    background: none;
    color: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
#be-nav .bn-mob-x svg { width: 24px; height: 24px; }

/* Circuit accent line */
#be-nav .bn-mob-circuit {
    width: 100%; height: 2px;
    background: var(--sky);
    transform-origin: left;
    transform: scaleX(0);
    opacity: .3;
    flex-shrink: 0;
}

#be-nav .bn-mob-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 32px;
    gap: 0;
    perspective: 800px;
}
#be-nav .bn-mob-links a {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: -.02em;
    font-family: var(--font);
    background: none;
    transition: color .3s, gap .3s;
}
#be-nav .bn-mob-links a:last-child { border-bottom: none; }
#be-nav .bn-mob-links a:hover { color: var(--sky); gap: 20px; }
#be-nav .bn-mob-links a .bn-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sky);
    flex-shrink: 0;
    opacity: .5;
}
#be-nav .bn-mob-contact-trigger {
    width: 100%;
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: none;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.02em;
    text-align: left;
    font-family: var(--font);
    transition: color .25s;
}
#be-nav .bn-mob-contact-trigger:hover,
#be-nav .bn-mob-contact-trigger.is-open { color: var(--sky); }
#be-nav .bn-mob-contact-chv {
    width: 14px;
    height: 14px;
    margin-left: auto;
    color: var(--sky);
    opacity: .4;
    transition: transform .3s, opacity .25s;
}
#be-nav .bn-mob-contact-trigger.is-open .bn-mob-contact-chv {
    transform: rotate(180deg);
    opacity: .8;
}
#be-nav .bn-mob-contact-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 0 0 20px;
}
#be-nav .bn-mob-contact-panel.is-open {
    padding: 12px 0 20px 20px;
}
#be-nav .bn-mob-contact-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 22px;
    background: linear-gradient(135deg, rgba(0,170,220,.18), rgba(0,170,220,.08));
    border: 1px solid rgba(126,222,255,.22);
    border-radius: 0;
    color: #fff;
    transition: background .2s;
}
#be-nav .bn-mob-contact-cta:active { background: rgba(0,170,220,.2); }
#be-nav .bn-mob-contact-cta svg {
    width: 22px;
    height: 22px;
    color: var(--sky);
    flex-shrink: 0;
}
#be-nav .bn-mob-contact-cta-title {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
}
#be-nav .bn-mob-contact-cta-sub {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,.55);
}
#be-nav .bn-mob-contact-sep {
    height: 1px;
    margin: 18px 0 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.12), rgba(255,255,255,0));
}
#be-nav .bn-mob-contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 10px;
    border-radius: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: color .2s, background .2s;
}
#be-nav .bn-mob-contact-row + .bn-mob-contact-row {
    margin-top: 6px;
}
#be-nav .bn-mob-contact-row:active {
    color: #fff;
    background: rgba(255,255,255,.04);
}
#be-nav .bn-mob-contact-row svg {
    width: 19px;
    height: 19px;
    color: #78ddff;
    opacity: .95;
    flex-shrink: 0;
}
#be-nav .bn-mob-contact-copy {
    flex: 1;
    display: grid;
    gap: 4px;
}
#be-nav .bn-mob-contact-title {
    display: block;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: inherit;
}
#be-nav .bn-mob-contact-sub {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255,255,255,.5);
}
#be-nav .bn-mob-contact-row small {
    display: none;
}
#be-nav .bn-mob-contact-row-arr {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,.28);
    flex-shrink: 0;
}

#be-nav .bn-mob-bot {
    padding: 28px 32px 44px;
    border-top: 1px solid rgba(255,255,255,.06);
    flex-shrink: 0;
}
#be-nav .bn-mob-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: var(--sky);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font);
    border: none;
}
#be-nav .bn-mob-ph svg { width: 20px; height: 20px; }
#be-nav .bn-mob-est {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 1.5px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: var(--font);
    background: none;
}
#be-nav .bn-mob-info p {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    line-height: 1.5;
    text-align: center;
    font-family: var(--font);
}

/* Main content push for fixed nav */
#main-content { padding-top: 67px; }
/* WP-018g: Hero starts at top edge on homepage — no white gap */
.home #main-content { padding-top: 0; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
    #be-nav .bn-links { display: none; }
    #be-nav .bn-hb { display: flex; }
    #be-nav .bn-inner { padding: 0 20px; height: 58px; gap: 12px; }
    #be-nav .bn-logo-lic { display: none; }
    #be-nav .bn-logo-name { font-size: 14px; }
    #be-nav .bn-phone-txt { display: none; }
    #be-nav .bn-phone { padding: 12px; background: transparent; border: none; }
    #be-nav .bn-phone svg { stroke: var(--sky); }
    #be-nav .bn-right { gap: 4px; }
    #main-content { padding-top: 61px; }
}
@media (max-width: 520px) {
    #be-nav .bn-mob-links a { font-size: 24px; padding: 16px 0; }
    #be-nav .bn-mob-contact-trigger { font-size: 24px; padding: 16px 0; }
    #be-nav .bn-logo img { width: 30px; }
    #be-nav .bn-logo-name { font-size: 13px; }
}


/* ═══════════════════════════════════════════
   9. FOOTER
   ═══════════════════════════════════════════ */
.be-footer {
    background: var(--navy-d);
    padding: 64px 0 32px;
    color: #fff;
}

.be-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 52px;
    align-items: start;
}

.be-footer__logo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}

.be-footer__tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    margin-bottom: 4px;
}

.be-footer__license {
    font-size: 11px;
    color: var(--sky);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.be-footer__nav .be-footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.be-footer__nav .be-footer__list li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s;
}

.be-footer__nav .be-footer__list li a:hover {
    color: var(--sky);
}

.be-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.be-footer__contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
}

.be-footer__contact a {
    color: rgba(255,255,255,0.55);
    transition: color 0.3s;
}

.be-footer__contact a:hover {
    color: var(--sky);
}

.be-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.be-footer__bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   10. DIVIDER
   ═══════════════════════════════════════════ */
.be-divider {
    height: 3px;
    background: linear-gradient(90deg, #002D78, #00AADC, #33BFEA, #00AADC, #002D78);
    background-size: 400% 100%;
    animation: be-div-flow 12s linear infinite;
}

@keyframes be-div-flow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* ═══════════════════════════════════════════
   11. UTILITIES
   ═══════════════════════════════════════════ */
.text-center { text-align: center; }
.text-sky { color: var(--sky); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--tm); }
.bg-white { background: var(--white); }
.bg-light { background: var(--bg); }

/* Facts / Stats grid (used in About, possibly other sections) */
.be-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--brd);
    border: 1px solid var(--brd);
}

.be-fact {
    background: #F5F8FA;
    padding: 20px 16px;
    text-align: center;
}

.be-fact__value {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.be-fact__label {
    font-size: 11px;
    color: var(--tb);
    line-height: 1.4;
    font-weight: 600;
}

.be-fact__label em {
    font-style: normal;
    font-weight: 400;
    color: var(--tm);
    font-size: 10px;
}

/* Credential / info bar (used in Hero) */
.be-cred {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--cb);
    background: rgba(255,255,255,0.05);
}

.be-cred-item {
    padding: 16px 16px 18px;
    border-right: 1px solid var(--cb);
}

.be-cred-item:last-child {
    border-right: 0;
}

.be-cred-label {
    margin-bottom: 5px;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 9px;
    font-weight: 700;
}

.be-cred-value {
    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
}

/* Services strip */
.be-services-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 16px;
    margin-bottom: 36px;
}

.be-services-strip span {
    font-size: 11px;
    font-weight: 700;
    color: var(--sky);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.be-services-strip span::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sky);
    opacity: 0.4;
}

/* ═══════════════════════════════════════════
   12. RESPONSIVE
   ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 28px;
    }

    .be-cred {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .be-cred-item:nth-child(2) { border-right: 0; }
    .be-cred-item:nth-child(1),
    .be-cred-item:nth-child(2) { border-bottom: 1px solid var(--cb); }
}

/* Mobile header: now in #be-nav section above */

/* Mobile: general */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .be-section {
        padding: 80px 0;
    }

    .be-footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .be-facts {
        grid-template-columns: 1fr 1fr;
    }

    .be-fact__value {
        font-size: 24px;
    }

    h1 { font-size: clamp(30px, 11vw, 52px); }
    h2 { font-size: clamp(24px, 8vw, 38px); }
}

/* Small mobile */
@media (max-width: 420px) {
    .be-cred {
        grid-template-columns: 1fr;
    }

    .be-cred-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--cb);
    }

    .be-cred-item:last-child {
        border-bottom: 0;
    }

    .be-facts {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION STYLES — Extracted from T123 Blocks
   ═══════════════════════════════════════════════════════════════ */

/* ═══ HERO ═══ */
#be-hero{position:relative;overflow:hidden;background:radial-gradient(circle at 78% 22%,rgba(0,170,220,.10),transparent 28%),radial-gradient(circle at 20% 85%,rgba(0,45,120,.28),transparent 25%),linear-gradient(180deg,#072a68,#001b47);min-height:0;color:#fff;font-family:var(--font)}
#be-hero .be-hero-inner{max-width:1000px;margin:0 auto;min-height:0;display:flex;align-items:center;padding:140px 24px 80px;position:relative;z-index:3}
#be-hero .be-hero-copy{max-width:680px;position:relative;z-index:4}
#be-hero .be-title{margin:0 0 20px;font-size:clamp(44px,6.5vw,84px);line-height:.98;letter-spacing:-.035em;font-weight:800;max-width:680px;color:#fff}
#be-hero .be-title span{display:block;margin-top:6px;background:linear-gradient(90deg,#0f5ec8,#00aadc);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
#be-hero .be-lead{margin:0 0 20px;max-width:560px;color:rgba(255,255,255,.60);font-size:18px;line-height:1.65;font-weight:400}
#be-hero .be-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:48px}
#be-hero .be-btn{min-height:52px;padding:0 28px;font-size:13px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
#be-hero .be-circuit{position:absolute;fill:none;stroke:var(--line);stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;z-index:1;pointer-events:none}
#be-hero .be-circuit circle,#be-hero .be-circuit ellipse{stroke:var(--ls);fill:rgba(0,170,220,.02)}
#be-hero .be-circuit .be-nd{fill:var(--ls);stroke:none}
#be-hero .be-circuit polyline{stroke:var(--ls);fill:none;stroke-width:1.4}
#be-hero .be-arm{stroke:rgba(0,170,220,0.22)}
#be-hero .be-st{fill:rgba(0,170,220,.13);font-family:'DM Sans',monospace;font-size:11px;font-weight:700;letter-spacing:.04em;stroke:none}
#be-hero .be-sl{font-size:18px}
#be-hero .be-circuit text{stroke:none}
#be-hero .be-motor-ring{stroke:rgba(0,170,220,0);fill:none;stroke-width:1.5}
#be-hero .be-circuit-top{width:min(50vw,760px);right:-4vw;top:6vh;opacity:.85}
#be-hero .be-circuit-bottom{width:min(28vw,380px);left:-3vw;bottom:4vh;opacity:.55}
#be-hero .be-hero-orb{position:absolute;border-radius:50%;pointer-events:none;z-index:0;filter:blur(6px)}
#be-hero .be-hero-orb-1{width:34vw;height:34vw;right:-8vw;top:6vh;background:radial-gradient(circle,rgba(0,170,220,.14) 0%,rgba(0,170,220,0) 68%)}
#be-hero .be-hero-orb-2{width:28vw;height:28vw;left:-10vw;bottom:-8vh;background:radial-gradient(circle,rgba(0,45,120,.38) 0%,rgba(0,45,120,0) 70%)}
@media(min-width:1200px){#be-hero .be-hero-inner{min-height:100vh}}
@media(max-width:1199px){#be-hero .be-cred{grid-template-columns:repeat(2,minmax(0,1fr))}#be-hero .be-cred-item:nth-child(2){border-right:0}#be-hero .be-cred-item:nth-child(1),#be-hero .be-cred-item:nth-child(2){border-bottom:1px solid var(--cb)}}
@media(max-width:767px){#be-hero .be-hero-inner{padding:100px 20px 40px;min-height:auto}#be-hero .be-title{font-size:clamp(36px,12vw,52px);line-height:1.02;margin-bottom:16px}#be-hero .be-lead{font-size:16px;line-height:1.6;margin-bottom:16px}#be-hero .be-services-strip{gap:4px 12px;margin-bottom:28px}#be-hero .be-services-strip span{font-size:10px}#be-hero .be-actions{flex-direction:column;align-items:stretch;margin-bottom:32px}#be-hero .be-btn{width:100%;min-height:50px;font-size:12px}#be-hero .be-cred{grid-template-columns:1fr 1fr}#be-hero .be-cred-item{border-bottom:1px solid var(--cb)}#be-hero .be-cred-item:nth-child(odd){border-right:1px solid var(--cb)}#be-hero .be-cred-item:nth-child(even){border-right:0}#be-hero .be-cred-item:nth-last-child(-n+2){border-bottom:0}#be-hero .be-cred-label{font-size:8px}#be-hero .be-cred-value{font-size:15px}#be-hero .be-circuit-top{width:80vw;right:-30vw;top:10vh;opacity:.5}#be-hero .be-circuit-bottom{width:55vw;left:-20vw;bottom:2vh;opacity:.35}#be-hero .be-badge{font-size:9px;letter-spacing:.12em;padding:8px 12px;margin-bottom:24px}}
@media(max-width:420px){#be-hero .be-title{font-size:clamp(30px,11vw,42px)}#be-hero .be-cred{grid-template-columns:1fr}#be-hero .be-cred-item{border-right:0!important;border-bottom:1px solid var(--cb)}#be-hero .be-cred-item:last-child{border-bottom:0}#be-hero .be-cred-value{font-size:14px}}

/* ═══ FOR CONTRACTORS ═══ */
#be-gc{background:var(--bg);padding:120px 0;color:var(--td)}
#be-gc .be-gc-wrap{max-width:1200px;margin:0 auto;padding:0 40px}
#be-gc .be-gc-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
#be-gc .be-gc-badge{display:inline-flex;align-items:center;gap:10px;padding:11px 20px;background:var(--navy);color:var(--sky);font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:36px}
#be-gc .be-gc-badge svg{width:14px;height:14px;flex-shrink:0}
#be-gc h2{font-size:clamp(32px,4vw,50px);font-weight:800;letter-spacing:-.03em;line-height:1.06;color:var(--td);margin-bottom:28px}
#be-gc h2 span{display:block;margin-top:6px;color:var(--navy)}
#be-gc .be-gc-desc{font-size:17px;line-height:1.72;color:var(--tb);margin-bottom:40px;max-width:520px}
#be-gc .be-gc-btns{display:flex;gap:14px;flex-wrap:wrap}
#be-gc .be-gc-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;height:56px;padding:0 32px;font-size:13px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-family:var(--font);cursor:pointer;border:none;transition:transform .25s,background .25s,border-color .3s,color .3s;text-decoration:none}
#be-gc .be-gc-btn:hover{transform:translateY(-2px)}
#be-gc .be-gc-btn svg{width:15px;height:15px;flex-shrink:0}
#be-gc .be-gc-btn-fill{background:var(--navy);color:#fff}
#be-gc .be-gc-btn-fill:hover{background:var(--navy-l);color:#fff}
#be-gc .be-gc-btn-out{border:1.5px solid var(--brd);background:#fff;color:var(--td);text-decoration:none}
#be-gc .be-gc-btn-out:hover{border-color:var(--navy);color:var(--navy)}
#be-gc .be-gc-photo{overflow:hidden}
#be-gc .be-gc-photo img{width:100%;display:block;object-fit:cover;object-position:center top}
#be-gc .be-gc-rv{opacity:0;transform:translateY(28px)}
@media(max-width:1024px){#be-gc .be-gc-wrap{padding:0 28px}#be-gc .be-gc-grid{gap:48px}}
@media(max-width:768px){#be-gc{padding:80px 0}#be-gc .be-gc-wrap{padding:0 20px}#be-gc .be-gc-grid{grid-template-columns:1fr;gap:36px}#be-gc .be-gc-photo{order:-1}#be-gc .be-gc-photo img{max-height:400px}#be-gc h2{font-size:clamp(28px,8vw,40px)}#be-gc .be-gc-desc{font-size:16px}#be-gc .be-gc-btns{flex-direction:column}#be-gc .be-gc-btn{width:100%}#be-gc .be-gc-badge{margin-bottom:28px}}
@media(max-width:420px){#be-gc .be-gc-photo img{max-height:340px}#be-gc h2{font-size:clamp(26px,9vw,34px)}#be-gc .be-gc-desc{font-size:15px}}

/* ═══ ABOUT ═══ */
#be-about{background:#fff;padding:0;color:var(--td);overflow:hidden}
#be-about .be-about-inner{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;min-height:660px}
#be-about .be-about-photo{position:relative;overflow:hidden;background:#001b47}
#be-about .be-about-photo-wrap{width:100%;height:100%;overflow:hidden;clip-path:inset(0 100% 0 0)}
#be-about .be-about-photo-wrap img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block;min-height:660px;transform:scale(1.08);transform-origin:center top}
#be-about .be-about-tag{position:absolute;bottom:24px;left:24px;display:inline-flex;align-items:center;gap:8px;padding:10px 16px;background:rgba(0,27,71,.88);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);color:var(--sky);font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;opacity:0;transform:translateX(-20px)}
#be-about .be-about-tag svg{width:14px;height:14px;flex-shrink:0}
#be-about .be-about-text{padding:80px 64px;display:flex;flex-direction:column;justify-content:center}
#be-about .be-about-stag{display:flex;align-items:center;gap:12px;margin-bottom:16px}
#be-about .be-about-line{width:40px;height:2px;background:var(--sky);transform:scaleX(0);transform-origin:left}
#be-about .be-about-stag span{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--sky);font-weight:700;opacity:0;transform:translateX(-8px)}
#be-about h2{font-size:clamp(30px,3.5vw,44px);font-weight:800;letter-spacing:-.03em;color:var(--td);margin-bottom:6px;line-height:1.1}
#be-about .be-about-role{font-size:15px;color:var(--sky);font-weight:600;margin-bottom:28px;letter-spacing:.01em}
#be-about .be-about-desc{font-size:15px;line-height:1.72;color:var(--tb);margin-bottom:16px;max-width:480px}
#be-about .be-about-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin:28px 0 36px;background:var(--brd);border:1px solid var(--brd)}
#be-about .be-about-fact{background:#F5F8FA;padding:20px 16px;text-align:center;opacity:0;transform:translateY(16px)}
#be-about .be-about-fv{font-size:28px;font-weight:800;color:var(--navy);line-height:1;margin-bottom:6px}
#be-about .be-about-fl{font-size:11px;color:var(--tb);line-height:1.4;font-weight:600}
#be-about .be-about-fl em{font-style:normal;font-weight:400;color:var(--tm);font-size:10px}
#be-about .be-about-cta{display:flex;gap:12px;flex-wrap:wrap}
#be-about .be-about-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:52px;padding:0 28px;font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-family:var(--font);cursor:pointer;border:none;transition:transform .25s,background .25s,border-color .3s,color .3s;text-decoration:none}
#be-about .be-about-btn:hover{transform:translateY(-2px)}
#be-about .be-about-btn svg{width:16px;height:16px;flex-shrink:0}
#be-about .be-about-btn-fill{background:var(--navy);color:#fff}
#be-about .be-about-btn-fill:hover{background:var(--navy-l);color:#fff}
#be-about .be-about-btn-out{border:1.5px solid var(--brd);background:transparent;color:var(--td);text-decoration:none}
#be-about .be-about-btn-out:hover{border-color:var(--sky);color:var(--sky)}
#be-about .be-about-rv{opacity:0;transform:translateY(24px)}
@media(max-width:1024px){#be-about .be-about-text{padding:60px 40px}}
@media(max-width:768px){#be-about .be-about-inner{grid-template-columns:1fr;min-height:auto}#be-about .be-about-photo-wrap img{min-height:380px;max-height:460px}#be-about .be-about-text{padding:44px 24px 56px}#be-about h2{font-size:clamp(26px,8vw,36px)}#be-about .be-about-desc{font-size:14px}#be-about .be-about-fv{font-size:24px}#be-about .be-about-fl{font-size:10px}#be-about .be-about-cta{flex-direction:column}#be-about .be-about-btn{width:100%}}
@media(max-width:420px){#be-about .be-about-photo-wrap img{min-height:300px;max-height:380px}#be-about .be-about-fv{font-size:20px}#be-about .be-about-fl em{display:none}}

/* ═══ SERVICES ═══ */
#be-svc{background:#FAFCFD;padding:110px 0;color:var(--td);position:relative}
#be-svc .be-svc-wrap{max-width:1200px;margin:0 auto;padding:0 40px}
#be-svc .be-svc-stag{display:flex;align-items:center;gap:12px;margin-bottom:14px}
#be-svc .be-svc-stag-line{width:40px;height:2px;background:var(--sky);transform:scaleX(0);transform-origin:left}
#be-svc .be-svc-stag span{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--sky);font-weight:700;opacity:0;transform:translateX(-8px)}
#be-svc h2{font-size:clamp(30px,4vw,48px);font-weight:800;letter-spacing:-.02em;color:var(--td);margin-bottom:12px}
#be-svc .be-svc-sub{font-size:16px;color:var(--tb);margin-bottom:52px;max-width:500px;line-height:1.6}
#be-svc .be-svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--brd);border:1px solid var(--brd)}
#be-svc .be-svc-card{background:#fff;padding:34px 30px;display:flex;flex-direction:column;cursor:default;border-left:3px solid transparent;transition:border-color .3s,background .3s}
#be-svc .be-svc-card:hover{background:#FAFCFD;border-left-color:var(--sky)}
#be-svc .be-svc-card.is-open{background:var(--sky-p);border-left-color:var(--sky)}
#be-svc .be-svc-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:18px}
#be-svc .be-svc-card svg{color:var(--sky)}
#be-svc .be-svc-tag{font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--navy);font-weight:700;padding:4px 10px;background:rgba(0,170,220,.06);border:1px solid rgba(0,170,220,.14);white-space:nowrap}
#be-svc .be-svc-card h3{font-size:17px;font-weight:700;color:var(--td);margin-bottom:10px}
#be-svc .be-svc-card>p{font-size:14px;line-height:1.65;color:var(--tb)}
#be-svc .be-svc-more{display:inline-flex;align-items:center;gap:6px;margin-top:18px;font-size:12px;font-weight:700;color:var(--navy);letter-spacing:.04em;text-transform:uppercase;background:none;border:none;cursor:pointer;font-family:var(--font);padding:0;transition:gap .3s,color .3s}
#be-svc .be-svc-more svg{width:14px;height:14px;transition:transform .3s}
#be-svc .be-svc-more:hover{gap:10px;color:var(--sky)}
#be-svc .be-svc-card.is-open .be-svc-more svg{transform:rotate(90deg)}
#be-svc .be-svc-card.is-open .be-svc-more{color:var(--sky)}
#be-svc .be-svc-expand{height:0;overflow:hidden}
#be-svc .be-svc-expand-inner{padding-top:22px;opacity:0;transform:translateY(10px)}
#be-svc .be-svc-expand-img{width:100%;height:160px;background-size:cover;background-position:center;margin-bottom:16px;opacity:0;transform:scale(.97)}
#be-svc .be-svc-expand-text p{font-size:13px;line-height:1.65;color:var(--tb);margin-bottom:14px}
#be-svc .be-svc-expand-details{display:flex;flex-wrap:wrap;gap:6px}
#be-svc .be-svc-expand-details span{font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--navy);padding:4px 10px;background:rgba(0,170,220,.06);border:1px solid rgba(0,170,220,.14)}
@media(max-width:1024px){#be-svc .be-svc-wrap{padding:0 28px}#be-svc .be-svc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){#be-svc{padding:80px 0}#be-svc .be-svc-wrap{padding:0 20px}#be-svc .be-svc-grid{grid-template-columns:1fr}#be-svc .be-svc-card{padding:28px 24px}#be-svc h2{font-size:clamp(26px,8vw,38px)}#be-svc .be-svc-sub{font-size:15px;margin-bottom:36px}}

/* ═══ PORTFOLIO ═══ */
#be-pf{background:var(--navy);padding:110px 0;color:#fff}
#be-pf .be-pf-wrap{max-width:1200px;margin:0 auto;padding:0 40px}
#be-pf .be-pf-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:20px;margin-bottom:28px}
#be-pf .be-pf-stag{display:flex;align-items:center;gap:12px;margin-bottom:14px}
#be-pf .be-pf-stag-line{width:40px;height:2px;background:var(--sky);transform:scaleX(0);transform-origin:left}
#be-pf .be-pf-stag span{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--sky);font-weight:700;opacity:0;transform:translateX(-8px)}
#be-pf h2{font-size:clamp(30px,4vw,48px);font-weight:800;letter-spacing:-.02em;color:#fff}
#be-pf .be-pf-ctrls{display:flex;align-items:center;gap:12px}
#be-pf .be-pf-counter{font-size:13px;color:rgba(255,255,255,.45);font-weight:600;letter-spacing:.02em;min-width:80px}
#be-pf .be-pf-arr{width:44px;height:44px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.04);color:rgba(255,255,255,.6);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s}
#be-pf .be-pf-arr:hover:not(:disabled){border-color:var(--sky);color:var(--sky);background:rgba(0,170,220,.08)}
#be-pf .be-pf-arr:disabled{opacity:.3;cursor:default}
#be-pf .be-pf-arr svg{width:16px;height:16px}
#be-pf .be-pf-filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:32px}
#be-pf .be-pf-fil{padding:8px 18px;font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;border:1px solid rgba(255,255,255,.12);background:transparent;color:rgba(255,255,255,.5);cursor:pointer;transition:all .3s;font-family:var(--font)}
#be-pf .be-pf-fil:hover{border-color:rgba(0,170,220,.4);color:rgba(255,255,255,.8)}
#be-pf .be-pf-fil.is-on{background:rgba(0,170,220,.12);border-color:var(--sky);color:var(--sky)}
#be-pf .be-pf-track{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:4px}
#be-pf .be-pf-track::-webkit-scrollbar{display:none}
#be-pf .be-pf-card{min-width:280px;max-width:300px;flex-shrink:0;scroll-snap-align:start;border:1px solid rgba(255,255,255,.08);background:rgba(0,45,120,.18);overflow:hidden;transition:transform .4s,border-color .4s,box-shadow .4s,opacity .4s;position:relative}
#be-pf .be-pf-card:hover{border-color:rgba(0,170,220,.35);transform:translateY(-6px)}
#be-pf .be-pf-card.is-hidden{display:none}
#be-pf .be-pf-img{height:170px;background:linear-gradient(135deg,rgba(0,45,120,.35),rgba(0,27,71,.55));display:flex;align-items:center;justify-content:center;border-bottom:1px solid rgba(255,255,255,.06);color:rgba(255,255,255,.1);position:relative;overflow:hidden}
#be-pf .be-pf-img img{width:100%;height:100%;object-fit:cover;display:block}
#be-pf .be-pf-info{padding:20px}
#be-pf .be-pf-meta{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
#be-pf .be-pf-type{font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--sky);font-weight:700}
#be-pf .be-pf-val{font-size:10px;color:rgba(255,255,255,.35);font-weight:600}
#be-pf .be-pf-card h3{font-size:16px;font-weight:700;margin-bottom:5px;color:#fff}
#be-pf .be-pf-loc{font-size:13px;color:rgba(255,255,255,.40);margin-bottom:4px}
#be-pf .be-pf-scope{font-size:12px;color:rgba(255,255,255,.28);line-height:1.45}
#be-pf .be-pf-card.is-current{border-color:rgba(0,170,220,.45);background:rgba(0,170,220,.08);animation:bpGlow 3s ease-in-out infinite}
#be-pf .be-pf-card.is-current .be-pf-img{background:linear-gradient(135deg,rgba(0,170,220,.12),rgba(0,45,120,.35))}
#be-pf .be-pf-card.is-current:hover{border-color:var(--sky);transform:translateY(-8px);box-shadow:0 0 40px rgba(0,170,220,.25)}
@keyframes bpGlow{0%,100%{box-shadow:0 0 20px rgba(0,170,220,.08),inset 0 0 20px rgba(0,170,220,.02);border-color:rgba(0,170,220,.35)}50%{box-shadow:0 0 35px rgba(0,170,220,.18),inset 0 0 30px rgba(0,170,220,.05);border-color:rgba(0,170,220,.6)}}
#be-pf .be-pf-cur-badge{position:absolute;top:12px;left:12px;display:inline-flex;align-items:center;gap:7px;padding:6px 12px;background:rgba(0,27,71,.85);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:1px solid rgba(0,170,220,.35);font-size:9px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--sky);z-index:2}
#be-pf .be-pf-cur-dot{width:6px;height:6px;border-radius:50%;background:var(--sky);animation:bpDot 2s ease-in-out infinite;box-shadow:0 0 8px rgba(0,170,220,.6);flex-shrink:0}
@keyframes bpDot{0%,100%{opacity:1;box-shadow:0 0 8px rgba(0,170,220,.6)}50%{opacity:.4;box-shadow:0 0 18px rgba(0,170,220,.9)}}
#be-pf .be-pf-rv{opacity:0;transform:translateY(28px)}
@media(max-width:1024px){#be-pf .be-pf-wrap{padding:0 28px}#be-pf .be-pf-card{min-width:260px}}
@media(max-width:768px){#be-pf{padding:80px 0}#be-pf .be-pf-wrap{padding:0 20px}#be-pf h2{font-size:clamp(26px,8vw,38px)}#be-pf .be-pf-head{margin-bottom:20px}#be-pf .be-pf-card{min-width:260px;max-width:280px}#be-pf .be-pf-filters{gap:6px;margin-bottom:24px}#be-pf .be-pf-fil{padding:6px 14px;font-size:10px}}
/* ── Portfolio section alias ── */
.be-portfolio{background:var(--navy);color:#fff}
.be-portfolio h2,.be-portfolio h3{color:#fff}
.be-portfolio .be-section-label{color:var(--sky)}


/* ═══ AREAS ═══ */
#be-areas{background:#fff;padding:96px 0;color:var(--td)}
#be-areas .be-areas-wrap{max-width:1200px;margin:0 auto;padding:0 40px}
#be-areas .be-areas-stag{display:flex;align-items:center;gap:12px;margin-bottom:14px}
#be-areas .be-areas-stag-line{width:40px;height:2px;background:var(--sky);transform-origin:left}
#be-areas .be-areas-stag span{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--sky);font-weight:700}
#be-areas h2{font-size:clamp(28px,4vw,44px);font-weight:800;letter-spacing:-.02em;color:var(--td);margin-bottom:10px}
#be-areas .be-areas-sub{font-size:16px;color:var(--tb);margin-bottom:40px;line-height:1.6}
#be-areas .be-areas-chips{display:flex;flex-wrap:wrap;gap:10px}
#be-areas .be-areas-chip{display:inline-flex;align-items:center;gap:9px;padding:14px 24px;border:1px solid var(--brd);transition:all .3s;cursor:pointer;text-decoration:none;color:var(--td)}
#be-areas .be-areas-chip:hover{border-color:var(--sky);background:var(--sky-p);color:var(--td)}
#be-areas .be-areas-chip svg{width:14px;height:14px;color:var(--sky);flex-shrink:0}
#be-areas .be-areas-chip span{font-size:14px;font-weight:600;color:var(--td)}
#be-areas .be-areas-chip em{font-style:normal;font-size:9px;color:var(--navy);font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:2px 7px;background:rgba(0,170,220,.08);border:1px solid rgba(0,170,220,.16)}
#be-areas .be-areas-rv{opacity:0;transform:translateY(24px)}
@media(max-width:768px){#be-areas{padding:72px 0}#be-areas .be-areas-wrap{padding:0 20px}#be-areas h2{font-size:clamp(24px,8vw,36px)}#be-areas .be-areas-sub{font-size:15px;margin-bottom:32px}#be-areas .be-areas-chip{padding:12px 18px}#be-areas .be-areas-chip span{font-size:13px}}

/* ═══ REVIEWS ═══ */
#be-rev{background:var(--bg);padding:100px 0;color:var(--td)}
#be-rev .be-rev-wrap{max-width:1200px;margin:0 auto;padding:0 40px}
#be-rev .be-rev-head{margin-bottom:48px}
#be-rev .be-rev-stag{display:flex;align-items:center;gap:12px;margin-bottom:14px}
#be-rev .be-rev-stag-line{width:40px;height:2px;background:var(--sky);transform-origin:left}
#be-rev .be-rev-stag span{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--sky);font-weight:700}
#be-rev h2{font-size:clamp(28px,4vw,44px);font-weight:800;letter-spacing:-.02em;color:var(--td);margin-bottom:10px}
#be-rev .be-rev-sub{font-size:16px;color:var(--tb);line-height:1.6}
#be-rev .be-rev-track-outer{overflow:hidden;padding:4px 0 8px;cursor:grab}
#be-rev .be-rev-track-outer:active{cursor:grabbing}
#be-rev .be-rev-track{display:flex;gap:20px;width:max-content}
#be-rev .be-rev-card{background:#fff;border:1px solid var(--brd);padding:28px 28px 24px;width:340px;flex-shrink:0;display:flex;flex-direction:column;gap:16px;transition:border-color .3s,box-shadow .3s}
#be-rev .be-rev-card:hover{border-color:rgba(0,170,220,.3);box-shadow:0 4px 20px rgba(0,42,120,.06)}
#be-rev .be-rev-stars{color:var(--gold);font-size:16px;letter-spacing:2px}
#be-rev .be-rev-text{font-size:14px;line-height:1.72;color:var(--tb);flex:1}
#be-rev .be-rev-author{display:flex;align-items:center;gap:12px;padding-top:16px;border-top:1px solid var(--brd)}
#be-rev .be-rev-avatar{width:36px;height:36px;border-radius:50%;background:var(--navy);color:#fff;font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;letter-spacing:.03em}
#be-rev .be-rev-info strong{display:block;font-size:13px;font-weight:700;color:var(--td)}
#be-rev .be-rev-info span{font-size:11px;color:var(--tb)}
#be-rev .be-rev-badge{display:inline-flex;align-items:center;gap:10px;margin-top:36px;padding:14px 24px;background:#fff;border:1px solid var(--brd)}
#be-rev .be-rev-badge svg{width:18px;height:18px;color:var(--gold);flex-shrink:0}
#be-rev .be-rev-badge span{font-size:14px;color:var(--td)}
#be-rev .be-rev-badge strong{font-weight:800;color:var(--navy)}
#be-rev .be-rev-badge em{font-style:normal;font-size:11px;color:var(--tb);padding-left:8px;border-left:1px solid var(--brd);margin-left:2px}
#be-rev .be-rev-rv{opacity:0;transform:translateY(24px)}
@media(max-width:768px){#be-rev{padding:72px 0}#be-rev .be-rev-wrap{padding:0 20px}#be-rev h2{font-size:clamp(24px,8vw,36px)}#be-rev .be-rev-sub{font-size:15px}#be-rev .be-rev-card{width:280px;padding:22px 20px 18px}}
@media(max-width:420px){#be-rev .be-rev-card{width:260px}}

/* ═══ CTA ═══ */
#be-cta{background:linear-gradient(135deg,var(--navy),var(--sky));padding:96px 0;color:#fff;text-align:center;position:relative;overflow:hidden}
#be-cta .be-cta-grid{position:absolute;inset:0;opacity:.05;background-image:linear-gradient(rgba(255,255,255,.3) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.3) 1px,transparent 1px);background-size:44px 44px;pointer-events:none}
#be-cta .be-cta-wrap{max-width:680px;margin:0 auto;padding:0 24px;position:relative;z-index:1}
#be-cta .be-cta-logo{height:70px;width:auto;display:block;margin:0 auto 28px;filter:drop-shadow(0 6px 24px rgba(0,0,0,.3))}
#be-cta h2{font-size:clamp(26px,4vw,42px);font-weight:800;letter-spacing:-.02em;margin-bottom:16px;line-height:1.12;color:#fff}
#be-cta p{font-size:16px;color:rgba(255,255,255,.65);margin-bottom:40px;line-height:1.65}
#be-cta .be-cta-btns{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
#be-cta .be-cta-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:54px;padding:0 34px;font-size:13px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;font-family:var(--font);transition:transform .25s,background .25s,border-color .3s;text-decoration:none}
#be-cta .be-cta-btn:hover{transform:translateY(-2px)}
#be-cta .be-cta-btn svg{width:16px;height:16px;flex-shrink:0}
#be-cta .be-cta-btn-w{background:#fff;color:var(--navy)}
#be-cta .be-cta-btn-g{border:2px solid rgba(255,255,255,.3);background:transparent;color:#fff}
#be-cta .be-cta-btn-g:hover{border-color:#fff;color:#fff}
#be-cta .be-cta-rv{opacity:0;transform:translateY(24px)}
@media(max-width:768px){#be-cta{padding:72px 0}#be-cta h2{font-size:clamp(24px,7vw,36px)}#be-cta p{font-size:15px;margin-bottom:32px}#be-cta .be-cta-btns{flex-direction:column;align-items:stretch}#be-cta .be-cta-btn{width:100%}}

/* ═══ POPUP ESTIMATE ═══ */
.be-est-overlay{position:fixed;inset:0;z-index:100001;display:flex;align-items:center;justify-content:center;padding:20px;pointer-events:none;opacity:0}
.be-est-overlay::before{content:'';position:absolute;inset:0;background:rgba(0,20,56,.65);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}
.be-est-overlay.is-open{pointer-events:all}
.be-est-modal{position:relative;background:#fff;width:100%;max-width:640px;max-height:calc(100vh - 40px);overflow-y:auto;z-index:1;transform:translateY(24px) scale(.97);scrollbar-width:thin;scrollbar-color:var(--brd) transparent}
.be-est-modal::-webkit-scrollbar{width:4px}
.be-est-modal::-webkit-scrollbar-thumb{background:var(--brd)}
.be-est-close{position:absolute;top:16px;right:16px;width:40px;height:40px;border-radius:50%;border:1px solid var(--brd);background:#fff;color:var(--tm);font-size:24px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:border-color .3s,color .3s;z-index:2;font-family:sans-serif;line-height:1}
.be-est-close:hover{border-color:var(--sky);color:var(--sky)}
.be-est-header{padding:40px 40px 0;margin-bottom:28px}
.be-est-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;background:var(--navy);color:var(--sky);font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;margin-bottom:20px}
.be-est-badge svg{width:14px;height:14px}
.be-est-header h3{font-size:26px;font-weight:800;color:var(--td);letter-spacing:-.02em;margin-bottom:8px}
.be-est-header p{font-size:14px;color:var(--tb);line-height:1.55}
.be-est-fields{padding:0 40px}
.be-est-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.be-est-field{margin-bottom:18px}
.be-est-field label{display:block;font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--tm);margin-bottom:6px}
.be-est-field input,.be-est-field select,.be-est-field textarea{display:block;width:100%;padding:13px 14px;border:1px solid var(--brd);background:var(--bg);font-family:var(--font);font-size:15px;color:var(--td);outline:none;transition:border-color .3s;border-radius:0;-webkit-appearance:none}
.be-est-field input:focus,.be-est-field select:focus,.be-est-field textarea:focus{border-color:var(--sky)}
.be-est-field input::placeholder,.be-est-field textarea::placeholder{color:var(--tm)}
.be-est-field textarea{resize:vertical;min-height:70px}
.be-est-field select{cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%237A8A9C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-size:16px;padding-right:36px}
.be-est-footer{padding:8px 40px 36px}
.be-est-submit{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;min-height:54px;background:var(--sky);color:#fff;font-size:14px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;border:none;cursor:pointer;font-family:var(--font);transition:background .3s,transform .25s}
.be-est-submit:hover{background:var(--sky-l);transform:translateY(-1px)}
.be-est-submit svg{width:16px;height:16px}
.be-est-submit:disabled{opacity:.5;cursor:default;transform:none}
.be-est-note{text-align:center;margin-top:16px;font-size:13px;color:var(--tm)}
.be-est-note a{color:var(--navy);font-weight:700;transition:color .3s}
.be-est-note a:hover{color:var(--sky)}
.be-est-success{display:none;padding:60px 40px;text-align:center}
.be-est-success-icon{color:var(--sky);margin-bottom:24px}
.be-est-success-icon svg{width:64px;height:64px}
.be-est-success h3{font-size:24px;font-weight:800;color:var(--td);margin-bottom:12px}
.be-est-success p{font-size:15px;color:var(--tb);line-height:1.6;margin-bottom:28px}
.be-est-success-phone{display:inline-flex;align-items:center;gap:10px;padding:14px 28px;border:1px solid var(--brd);font-size:14px;font-weight:700;color:var(--navy);transition:all .3s;text-decoration:none}
.be-est-success-phone:hover{border-color:var(--sky);color:var(--sky)}
.be-est-success-phone svg{width:18px;height:18px}
@media(max-width:768px){.be-est-overlay{padding:0;padding-top:64px;align-items:flex-end}.be-est-modal{max-width:100%;max-height:calc(100vh - 64px)}.be-est-header{padding:32px 24px 0}.be-est-fields{padding:0 24px}.be-est-row{grid-template-columns:1fr}.be-est-footer{padding:8px 24px 28px}.be-est-header h3{font-size:22px}.be-est-success{padding:48px 24px}}

/* ═══ FOOTER (T123 Block 11) ═══ */
#be-foot{background:#001B47;padding:64px 0 32px;color:#fff;position:relative}
#be-foot .be-foot-wrap{max-width:1200px;margin:0 auto;padding:0 40px}
#be-foot .be-foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1fr auto;gap:32px;margin-bottom:52px;align-items:start}
#be-foot .be-foot-logo{margin-bottom:20px}
#be-foot .be-foot-logo img{width:48px;height:auto}
#be-foot .be-foot-about{font-size:13px;color:rgba(255,255,255,.38);line-height:1.6}
#be-foot .be-foot-col{display:flex;flex-direction:column;gap:12px}
#be-foot .be-foot-col a{font-size:14px;color:rgba(255,255,255,.55);transition:color .3s;text-decoration:none}
#be-foot .be-foot-col a:hover{color:var(--sky)}
#be-foot .be-foot-social{display:flex;gap:10px;padding-top:2px}
#be-foot .be-foot-social a{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.6);transition:background .3s,color .3s;text-decoration:none}
#be-foot .be-foot-social a:hover{background:rgba(0,170,220,.15);color:var(--sky)}
#be-foot .be-foot-social svg{width:18px;height:18px}
#be-foot .be-foot-bottom{border-top:1px solid rgba(255,255,255,.06);padding-top:24px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px}
#be-foot .be-foot-bottom p{font-size:12px;color:rgba(255,255,255,.2);margin:0}
@media(max-width:1024px){#be-foot .be-foot-wrap{padding:0 28px}#be-foot .be-foot-grid{grid-template-columns:1.2fr 1fr 1fr 1fr;gap:28px}#be-foot .be-foot-social{grid-column:1/-1;padding-top:0}}
@media(max-width:768px){#be-foot .be-foot-wrap{padding:0 20px}#be-foot .be-foot-grid{grid-template-columns:1fr 1fr;gap:32px 24px}#be-foot .be-foot-brand-col{grid-column:1/-1}#be-foot .be-foot-social{grid-column:1/-1;justify-content:flex-start}}
@media(max-width:420px){#be-foot .be-foot-grid{grid-template-columns:1fr}}

/* ═══════════════════════════════════════════
   SECTION 10 — SERVICE PAGES
   ═══════════════════════════════════════════ */

/* ── Services Listing Hero ── */
.be-svc-list-hero {
  background: var(--navy);
  padding: 100px 0 72px;
}
.be-svc-list-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.2;
}
.be-svc-list-hero h1 span { color: var(--sky); }
.be-svc-list-lead {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 0 32px;
  line-height: 1.65;
}
.be-svc-list-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Services Listing Grid ── */
.be-svc-list-grid-wrap { background: var(--bg); }
.be-svc-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.be-svc-list-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: var(--td);
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.be-svc-list-card:hover {
  box-shadow: 0 8px 32px rgba(0,45,120,.1);
  border-color: var(--sky);
  transform: translateY(-2px);
}
.be-svc-list-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
}
.be-svc-list-body { flex: 1; }
.be-svc-list-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.be-svc-list-head h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--td);
  margin: 0;
}
.be-svc-list-body > p {
  color: var(--tb);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0 0 14px;
}
.be-svc-list-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--sky);
}

/* ── Services Listing GC Strip ── */
.be-svc-list-gc { background: var(--navy); }
.be-svc-list-gc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.be-svc-list-gc-copy { flex: 1 1 360px; }
.be-svc-list-gc-copy h2 { color: #fff; font-size: 1.5rem; margin: 12px 0 10px; }
.be-svc-list-gc-copy p { color: rgba(255,255,255,.7); margin: 0; line-height: 1.65; }
.be-svc-list-gc-copy a { color: var(--sky); }
.be-svc-list-gc-cred {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.be-cred-item { text-align: center; }
.be-cred-item strong { display: block; font-size: 1.4rem; font-weight: 700; color: var(--sky); }
.be-cred-item span { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ── Services Listing Bottom CTA ── */
.be-svc-list-cta { background: var(--bg); text-align: center; }
.be-svc-list-cta h2 { font-size: 1.7rem; color: var(--td); margin: 0 0 10px; }
.be-svc-list-cta p { color: var(--tb); }

/* ═══════════════════════════════════════════
   SERVICE SINGLE PAGE
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.be-svc-hero {
  background: var(--navy);
  padding: 100px 0 72px;
}
.be-svc-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.2;
  max-width: 680px;
}
.be-svc-hero h1 span { color: var(--sky); }
.be-svc-hero-lead {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 0 28px;
  line-height: 1.65;
}
.be-svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.be-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;

  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  transition: border-color .2s, background .2s;
}
.be-btn-phone:hover { border-color: var(--sky); background: rgba(0,170,220,.08); }
.be-svc-hero-cred {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  font-size: .83rem;
  color: rgba(255,255,255,.45);
}

/* ── What We Do ── */
.be-svc-what { background: #fff; }
.be-svc-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.be-svc-section-label .be-svc-stag-line {
  width: 32px;
  height: 2px;
  background: var(--sky);
  flex-shrink: 0;
}
.be-svc-section-label span {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sky);
}
.be-svc-what-intro {
  font-size: 1.05rem;
  color: var(--tb);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.be-svc-what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.be-svc-what-item {
  padding: 24px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--brd);
}
.be-svc-what-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--td);
  margin: 0 0 8px;
}
.be-svc-what-item p {
  font-size: .92rem;
  color: var(--tb);
  margin: 0;
  line-height: 1.6;
}

/* ── How It Works ── */
.be-svc-steps-heading {
  font-size: 1.5rem;
  color: var(--td);
  margin: 16px 0 36px;
}
.be-svc-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.be-svc-step {
  padding: 28px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--brd);
  position: relative;
}
.be-svc-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.be-svc-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--td);
  margin: 0 0 8px;
}
.be-svc-step p {
  font-size: .9rem;
  color: var(--tb);
  margin: 0;
  line-height: 1.6;
}

/* ── Why Us ── */
.be-svc-why { background: #fff; }
.be-svc-why-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.be-svc-why-copy h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--td);
  margin: 16px 0 28px;
}
.be-svc-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.be-svc-why-list li {
  padding-left: 24px;
  position: relative;
  font-size: .95rem;
  color: var(--tb);
  line-height: 1.55;
}
.be-svc-why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}
.be-cred-card {
  background: var(--bg);
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.be-cred-card .be-cred-item strong { color: var(--navy); }
.be-cred-card .be-cred-item span { color: var(--tm); font-size: .82rem; }
.be-svc-why-cta { display: flex; flex-direction: column; gap: 12px; }

/* ── FAQ ── */
.be-svc-faq-title { font-size: 1.5rem; color: var(--td); margin: 16px 0 32px; }
.be-faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 4px; }
.be-faq-item { background: #fff; border-radius: 10px; border: 1px solid var(--brd); overflow: hidden; }
.be-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font, 'DM Sans', Arial, sans-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--td);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .15s;
}
.be-faq-q:hover { color: var(--sky); }
.be-faq-q.is-open { color: var(--sky); }
.be-faq-arrow { flex-shrink: 0; transition: transform .2s; }
.be-faq-q.is-open .be-faq-arrow { transform: rotate(180deg); }
.be-faq-a {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--tb);
  line-height: 1.65;
}
.be-faq-a p { margin: 0; }

/* ── Bottom CTA ── */
.be-svc-bottom-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.be-svc-bottom-cta h2 { font-size: 1.8rem; color: #fff; margin: 0 0 12px; }
.be-svc-bottom-cta p { color: rgba(255,255,255,.7); margin: 0 0 32px; }
.be-svc-bottom-cta .be-svc-hero-ctas { justify-content: center; }

/* ── btn-outline light variant ── */
.be-svc-list-cta .be-btn-outline,
.be-svc-list-hero .be-btn-outline {
  border-color: var(--sky);
  color: var(--sky);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .be-svc-why-inner { grid-template-columns: 1fr; }
  .be-svc-list-grid { grid-template-columns: 1fr; }
  .be-svc-list-card { flex-direction: column; }
  .be-svc-steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .be-svc-steps-grid { grid-template-columns: 1fr; }
  .be-svc-list-gc-inner { flex-direction: column; }
  .be-svc-hero h1, .be-svc-list-hero h1 { font-size: 1.7rem; }
}

/* ═══════════════════════════════════════════
   SECTION 11 — PORTFOLIO PAGE
   ═══════════════════════════════════════════ */
.be-pf-page-hero {
  background: var(--navy);
  padding: 100px 0 72px;
}
.be-pf-page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.2;
}
.be-pf-page-hero h1 span { color: var(--sky); }
.be-pf-page-lead {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.65;
}
.be-pf-page-cred {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.be-pf-page-cred-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 2px;
}
.be-pf-page-cred-item span {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.be-pf-page-cta {
  background: var(--navy);
  padding: 80px 0;
}
.be-pf-page-cta h2 { font-size: 1.8rem; color: #fff; margin: 0 0 10px; }
.be-pf-page-cta p  { color: rgba(255,255,255,.7); margin: 0; }

/* ═══════════════════════════════════════════
   SECTION 12 — FOR CONTRACTORS PAGE
   ═══════════════════════════════════════════ */
.be-gc-cred-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.be-gc-cred-item { text-align: center; padding: 0 32px; }
.be-gc-cred-item strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--sky); }
.be-gc-cred-item span   { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 3px; display: block; }
.be-gc-cred-divider     { width: 1px; height: 40px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.be-gc-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.be-gc-page-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--brd);
  border-radius: 12px;
}
.be-gc-page-icon {
  width: 48px; height: 48px;
  background: rgba(0,170,220,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  margin-bottom: 16px;
}
.be-gc-page-card h3 { font-size: 1rem; font-weight: 600; color: var(--td); margin: 0 0 8px; }
.be-gc-page-card p  { font-size: .9rem; color: var(--tb); margin: 0; line-height: 1.6; }
.be-gc-coi-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.be-gc-coi-copy h2 { font-size: 1.7rem; color: var(--td); margin: 16px 0 12px; }
.be-gc-coi-copy > p { font-size: 1rem; color: var(--tb); line-height: 1.65; }
.be-gc-coi-box {
  background: var(--bg);
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.be-gc-coi-lic strong,
.be-gc-coi-bz strong  { display: block; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.be-gc-coi-lic span,
.be-gc-coi-bz span    { font-size: .82rem; color: var(--tm); }
@media (max-width: 768px) {
  .be-gc-coi-inner { grid-template-columns: 1fr; }
  .be-gc-cred-strip { gap: 24px; flex-direction: column; }
  .be-gc-cred-divider { display: none; }
}

/* ═══════════════════════════════════════════
   SECTION 13 — ABOUT PAGE EXTRAS
   ═══════════════════════════════════════════ */
.be-about-page-hero {
  background: var(--navy);
  padding: 100px 0 72px;
}
.be-about-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0;
  line-height: 1.15;
}
.be-about-page-hero h1 span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .65em;
  font-weight: 400;
  margin-top: 8px;
}
.be-about-cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.be-about-cred-card {
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 10px;
  padding: 20px 24px;
}
.be-about-cred-card strong { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.be-about-cred-card span   { font-size: .88rem; color: var(--tb); }

/* ═══════════════════════════════════════════
   SECTION 14 — CONTACT PAGE
   ═══════════════════════════════════════════ */
.be-contact-hero {
  background: var(--navy);
  padding: 100px 0 72px;
}
.be-contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.be-contact-hero h1 span { display: block; color: var(--sky); }
.be-contact-lead {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.65;
}
.be-contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.be-contact-info h2 { font-size: 1.6rem; color: var(--td); margin: 0 0 12px; }
.be-contact-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.be-contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 10px;
  text-decoration: none;
  color: var(--td);
  transition: border-color .2s, box-shadow .2s;
}
.be-contact-method:not(.be-contact-method--static):hover {
  border-color: var(--sky);
  box-shadow: 0 4px 16px rgba(0,170,220,.1);
}
.be-contact-method-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(0,170,220,.1);

  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
}
.be-contact-method strong { display: block; font-size: .9rem; font-weight: 700; color: var(--td); margin-bottom: 2px; }
.be-contact-method span   { font-size: .85rem; color: var(--tb); }
.be-contact-license {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--tm);
  padding: 10px 16px;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--brd);
}
.be-contact-license svg { color: var(--sky); flex-shrink: 0; }
.be-contact-form-card {
  background: #fff;
  border: 1px solid var(--brd);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,45,120,.07);
}
.be-contact-form-card h3 { font-size: 1.3rem; color: var(--td); margin: 0 0 10px; }
.be-contact-form-card > p { font-size: .92rem; color: var(--tb); line-height: 1.6; }
.be-contact-form-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: .82rem;
  color: var(--tb);
}
.be-contact-form-meta span { display: flex; align-items: center; gap: 4px; }
@media (max-width: 900px) {
  .be-contact-layout { grid-template-columns: 1fr; }
}
.pac-container{z-index:200000!important}

/* ── Nav: login button ── */
.bn-account{display:inline-flex;align-items:center;justify-content:center;min-width:96px;height:44px;padding:0 18px;color:#fff;border:1px solid rgba(0,170,220,.7);background:rgba(0,170,220,.04);text-decoration:none;transition:background .25s,color .25s,border-color .25s;white-space:nowrap;margin-right:0;flex-shrink:0;font-size:14px;font-weight:700;font-family:var(--font);line-height:1}
.bn-account-txt{display:block;transform:translateY(-.5px);color:#fff;opacity:1}
.bn-account:hover{background:rgba(0,170,220,.12);border-color:var(--sky-l);color:#9deaff}
.bn-account:focus-visible{outline:2px solid var(--sky);outline-offset:2px}
@media(max-width:1024px){.bn-account{display:none}}

#be-nav .bn-mob-login{
    display:flex;
    align-items:center;
    gap:14px;
    padding:22px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:#fff;
    font-size:17px;
    font-weight:700;
    letter-spacing:.01em;
}

/* ── Portfolio is_current badge ── */
.be-pf-card{position:relative}
.be-pf-current-badge{position:absolute;top:10px;right:10px;font-size:9px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--sky);background:rgba(0,170,220,.12);border:1px solid rgba(0,170,220,.3);padding:3px 8px;z-index:2}


/* ══════════════════════════════════════════════════════════════
   EV TESLA CHARGER LANDING — Mobile-first
   .ev-tesla-lp scopes all rules to this template
   ══════════════════════════════════════════════════════════════ */

/* RESET / BODY */
.ev-tesla-lp { margin:0; padding:0; background:var(--td,#0A1628); color:#fff; }
.ev-tesla-lp *,
.ev-tesla-lp *::before,
.ev-tesla-lp *::after { box-sizing:border-box; }

/* CONTAINER */
.ev-container { width:100%; max-width:1100px; margin:0 auto; padding:0 20px; }

/* BADGE */
.ev-badge { display:inline-block; background:rgba(0,170,220,0.12); border:1px solid rgba(0,170,220,0.35);
  color:var(--sky,#00AADC); font-size:11px; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; padding:5px 14px; border-radius:20px; }

/* BUTTONS */
.ev-btn { display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:8px; font-size:1rem; font-weight:700;
  text-decoration:none; cursor:pointer; border:none; transition:all 0.2s; }
.ev-btn-primary { background:var(--sky,#00AADC); color:#fff; }
.ev-btn-primary:hover { background:#0092c0; transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,170,220,0.3); }
.ev-btn-ghost { background:transparent; border:1.5px solid rgba(255,255,255,0.22); color:rgba(255,255,255,0.8); }
.ev-btn-ghost:hover { border-color:rgba(255,255,255,0.5); color:#fff; }

/* ── HERO ── */
.ev-hero { position:relative; min-height:100svh; min-height:100vh; display:flex; align-items:center;
  background:linear-gradient(150deg,#060e1a 0%,#002060 55%,#060e1a 100%); overflow:hidden; padding:60px 20px 90px; }
.ev-hero::before { content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 90% 70% at 70% 25%,rgba(0,170,220,0.13) 0%,transparent 65%);
  pointer-events:none; }
.ev-hero-inner { position:relative; z-index:1; width:100%; max-width:620px; margin:0 auto; text-align:center; }

.ev-logo-link { display:inline-flex; align-items:center; gap:10px; margin-bottom:44px;
  text-decoration:none; }
.ev-logo-link img { width:34px; height:34px; }
.ev-logo-link span { font-size:13px; font-weight:600; color:rgba(255,255,255,0.55); letter-spacing:0.05em; }

.ev-hero-badge { margin-bottom:20px; }
.ev-h1 { font-size:clamp(2.1rem,8vw,3.8rem); font-weight:800; line-height:1.12; margin:0 0 18px; color:#fff; }
.ev-hero-sub { font-size:1rem; color:rgba(255,255,255,0.6); margin-bottom:32px; line-height:1.65; }

.ev-hero-btns { display:flex; flex-direction:column; gap:12px; margin-bottom:0; }
.ev-hero-btns .ev-btn { width:100%; }

.ev-hero-trust { display:flex; flex-wrap:wrap; justify-content:center; gap:12px 20px;
  margin-top:32px; padding-top:24px; border-top:1px solid rgba(255,255,255,0.08); }
.ev-hero-trust span { font-size:12px; color:rgba(255,255,255,0.4); letter-spacing:0.04em; }

/* ── WHY ── */
.ev-why { padding:60px 0; background:#0d1e36; }
.ev-why-grid { display:grid; grid-template-columns:1fr; gap:16px; }
.ev-why-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.07);
  border-radius:14px; padding:28px 24px; text-align:center; }
.ev-why-icon { font-size:2rem; margin-bottom:14px; }
.ev-why-card h3 { font-size:1.05rem; font-weight:700; color:#fff; margin:0 0 8px; }
.ev-why-card p { font-size:0.875rem; color:rgba(255,255,255,0.5); line-height:1.65; margin:0; }

/* ── PACKAGES ── */
.ev-packages { padding:72px 0; background:var(--td,#0A1628); }
.ev-packages-inner { text-align:center; }
.ev-section-badge { display:block; margin-bottom:14px; }
.ev-section-h2 { font-size:clamp(1.7rem,5vw,2.5rem); font-weight:800; color:#fff; margin:0 0 12px; }
.ev-section-sub { font-size:0.9rem; color:rgba(255,255,255,0.45); margin:0 0 40px; }

.ev-pkg-grid { display:grid; grid-template-columns:1fr; gap:20px; text-align:left; margin-bottom:20px; }
.ev-pkg-card { position:relative; background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:36px 28px;
  display:flex; flex-direction:column; gap:22px; }
.ev-pkg-card--hot { border-color:var(--sky,#00AADC);
  box-shadow:0 0 0 1px var(--sky,#00AADC), 0 12px 48px rgba(0,170,220,0.14); }
.ev-pkg-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--sky,#00AADC); color:#fff; font-size:11px; font-weight:800;
  letter-spacing:0.08em; text-transform:uppercase; padding:5px 18px; border-radius:20px;
  white-space:nowrap; }
.ev-pkg-top h3 { font-size:1.25rem; font-weight:800; color:#fff; margin:0 0 6px; }
.ev-pkg-tagline { font-size:0.85rem; color:rgba(255,255,255,0.45); margin:0; }
.ev-pkg-price { display:flex; flex-direction:column; gap:4px; }
.ev-pkg-amount { font-size:2.4rem; font-weight:800; color:var(--sky,#00AADC); line-height:1; }
.ev-pkg-note { font-size:0.75rem; color:rgba(255,255,255,0.35); text-transform:uppercase; letter-spacing:0.06em; }
.ev-pkg-feats { list-style:none; padding:0; margin:0; flex:1; display:flex; flex-direction:column; gap:10px; }
.ev-pkg-feats li { font-size:0.875rem; color:rgba(255,255,255,0.65); padding-left:22px;
  position:relative; line-height:1.45; }
.ev-pkg-feats li::before { content:'\2713'; position:absolute; left:0; color:var(--sky,#00AADC); font-weight:700; }
.ev-pkg-cta { display:block; text-align:center; padding:13px 20px; border-radius:8px;
  font-size:0.95rem; font-weight:700; text-decoration:none; cursor:pointer; transition:all 0.2s;
  background:rgba(0,170,220,0.12); border:1.5px solid rgba(0,170,220,0.35); color:var(--sky,#00AADC); }
.ev-pkg-card--hot .ev-pkg-cta { background:var(--sky,#00AADC); border-color:var(--sky,#00AADC); color:#fff; }
.ev-pkg-cta:hover { filter:brightness(1.1); transform:translateY(-1px); }
.ev-pkg-disclaimer { font-size:0.78rem; color:rgba(255,255,255,0.25); margin:0; }

/* ── REVIEWS ── */
.ev-reviews { padding:64px 0; background:#0d1e36; }
.ev-reviews-inner { text-align:center; }
.ev-rev-grid { display:grid; grid-template-columns:1fr; gap:18px; margin-top:32px; text-align:left; }
.ev-rev-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.07);
  border-radius:14px; padding:26px 22px; display:flex; flex-direction:column; gap:16px; }
.ev-rev-stars { color:#F5C842; font-size:1rem; letter-spacing:3px; }
.ev-rev-text { font-size:0.9rem; color:rgba(255,255,255,0.68); line-height:1.7; flex:1; margin:0; }
.ev-rev-author { display:flex; align-items:center; gap:12px; }
.ev-rev-avatar { width:42px; height:42px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--sky,#00AADC),var(--navy,#002D78));
  display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; color:#fff; }
.ev-rev-info strong { display:block; font-size:0.9rem; color:#fff; }
.ev-rev-info span { font-size:0.8rem; color:rgba(255,255,255,0.38); }

/* ── FAQ ── */
.ev-faq { padding:64px 0; background:var(--td,#0A1628); }
.ev-faq-wrap { max-width:760px; text-align:center; }
.ev-faq-list { margin-top:32px; display:flex; flex-direction:column; gap:8px; text-align:left; }
.ev-faq-item { border:1px solid rgba(255,255,255,0.08); border-radius:10px; overflow:hidden;
  transition:border-color 0.2s; }
.ev-faq-item.is-open { border-color:rgba(0,170,220,0.28); }
.ev-faq-q { width:100%; background:rgba(255,255,255,0.03); border:none; color:#fff;
  font-size:0.95rem; font-weight:600; padding:18px 20px; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  line-height:1.45; text-align:left; transition:background 0.15s; }
.ev-faq-q:hover { background:rgba(255,255,255,0.06); }
.ev-faq-icon { flex-shrink:0; font-size:1.25rem; color:var(--sky,#00AADC); line-height:1; }
.ev-faq-a { max-height:0; overflow:hidden; transition:max-height 0.32s ease; }
.ev-faq-a-inner { padding:0 20px 20px; font-size:0.875rem; color:rgba(255,255,255,0.55); line-height:1.7; }

/* ── FINAL CTA ── */
.ev-final-cta { padding:72px 0; background:linear-gradient(150deg,#001430 0%,#002878 50%,#001430 100%); }
.ev-final-cta-inner { display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; }
.ev-final-cta-inner h2 { font-size:clamp(1.7rem,5vw,2.8rem); font-weight:800; color:#fff; margin:0; }
.ev-final-cta-inner p { font-size:1rem; color:rgba(255,255,255,0.5); margin:0; }
.ev-final-cta-inner .ev-btn { width:100%; max-width:300px; }

/* ── MINI FOOTER ── */
.ev-footer { background:#050c18; padding:28px 0; border-top:1px solid rgba(255,255,255,0.06); }
.ev-footer-inner { display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; }
.ev-footer-logo { display:inline-flex; align-items:center; gap:8px; text-decoration:none; }
.ev-footer-logo img { width:24px; height:24px; }
.ev-footer-logo span { font-size:13px; font-weight:600; color:rgba(255,255,255,0.5); }
.ev-footer-links { display:flex; flex-wrap:wrap; justify-content:center; gap:6px 14px;
  font-size:12px; }
.ev-footer-links a { color:rgba(255,255,255,0.45); text-decoration:none; }
.ev-footer-links a:hover { color:#fff; }
.ev-footer-links span { color:rgba(255,255,255,0.2); }
.ev-footer-copy { font-size:11px; color:rgba(255,255,255,0.2); margin:0; }

/* ── STICKY BAR ── */
.ev-sticky-bar { position:fixed; bottom:0; left:0; right:0; z-index:9999;
  background:rgba(6,14,26,0.97); border-top:1px solid rgba(0,170,220,0.18);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  padding:10px 16px; display:flex; gap:10px;
  transform:translateY(110%); transition:transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.ev-sticky-bar.is-visible { transform:translateY(0); }
.ev-sticky-call { flex:0 0 auto; display:flex; align-items:center; gap:8px; padding:12px 18px;
  background:rgba(255,255,255,0.07); border:1.5px solid rgba(255,255,255,0.14);
  border-radius:8px; color:#fff; font-weight:700; font-size:0.875rem; text-decoration:none; }
.ev-sticky-quote { flex:1; display:flex; align-items:center; justify-content:center;
  padding:12px 16px; background:var(--sky,#00AADC); border-radius:8px;
  color:#fff; font-weight:700; font-size:0.875rem; text-decoration:none; cursor:pointer; }

/* ── TABLET 768+ ── */
@media (min-width:768px){
  .ev-hero-btns { flex-direction:row; justify-content:center; }
  .ev-hero-btns .ev-btn { width:auto; }
  .ev-why-grid { grid-template-columns:repeat(3,1fr); }
  .ev-pkg-grid { grid-template-columns:repeat(3,1fr); align-items:start; }
  .ev-rev-grid { grid-template-columns:repeat(2,1fr); }
  .ev-final-cta-inner .ev-btn { width:auto; }
  .ev-sticky-bar { display:none; }
}

/* ── DESKTOP 1024+ ── */
@media (min-width:1024px){
  .ev-hero { padding:80px 40px 100px; min-height:100vh; }
  .ev-pkg-card { padding:40px 32px; }
}


/* ══════════════════════════════════════════════════════════════
   EV CHARGER CALCULATOR QUIZ  — .ev-calc-page
   Clean white/light design, mobile-first
   ══════════════════════════════════════════════════════════════ */

.ev-calc-page { margin:0; padding:0; background:#F4F7FA; color:#0A1628;
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif; }
.ev-calc-page *,
.ev-calc-page *::before,
.ev-calc-page *::after { box-sizing:border-box; }
#wpadminbar { display:none !important; }

/* WRAP */
.ev-calc-wrap { min-height:100svh; min-height:100vh; display:flex; flex-direction:column; background:#fff; }

/* HEADER */
.ev-calc-hdr { display:flex; align-items:center; gap:16px; padding:14px 20px;
  background:#fff; border-bottom:1px solid #EEF1F5; position:sticky; top:0; z-index:100; }
.ev-calc-logo { display:flex; align-items:center; gap:9px; text-decoration:none; flex-shrink:0; }
.ev-calc-logo img { width:28px; height:28px; }
.ev-calc-logo span { font-size:13px; font-weight:700; color:#0A1628; }
.ev-calc-prog-wrap { flex:1; display:flex; align-items:center; gap:10px; }
.ev-calc-prog-track { flex:1; height:5px; background:#EEF1F5; border-radius:99px; overflow:hidden; }
.ev-calc-prog-fill { height:100%; width:0%; background:linear-gradient(90deg,#002D78,#00AADC); border-radius:99px; }
.ev-calc-prog-label { font-size:12px; font-weight:600; color:#6B7A8D; white-space:nowrap; flex-shrink:0; }

/* MAIN */
.ev-calc-main { flex:1; display:flex; align-items:center; justify-content:center;
  padding:20px 16px 0; overflow:hidden; }

/* STEP */
.ev-calc-step { width:100%; max-width:680px; display:none; flex-direction:column;
  align-items:center; gap:20px; padding-bottom:20px; }
.ev-calc-step.is-active,
.ev-calc-step[style*="display:flex"] { display:flex; }
.ev-calc-step-num { font-size:12px; font-weight:600; color:#00AADC; letter-spacing:0.08em;
  text-transform:uppercase; margin:0; align-self:flex-start; }

/* QUESTION */
.ev-calc-q { font-size:clamp(1.35rem,5vw,2rem); font-weight:800; color:#0A1628;
  text-align:center; line-height:1.25; margin:0; }

/* CARDS GRID */
.ev-calc-cards { width:100%; display:grid; gap:12px; }
.ev-calc-cards--4 { grid-template-columns:repeat(2,1fr); }
.ev-calc-cards--3 { grid-template-columns:1fr; }

/* CARD */
.ev-calc-card { display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:6px; padding:18px 14px; background:#fff; border:2px solid #E5EAF0;
  border-radius:14px; cursor:pointer; text-align:center;
  transition:border-color 0.18s, box-shadow 0.18s; will-change:transform; }
.ev-calc-card:hover { border-color:#b0c9e8; box-shadow:0 4px 18px rgba(0,45,120,0.08); }
.ev-calc-card.is-sel { border-color:#00AADC; background:rgba(0,170,220,0.05);
  box-shadow:0 0 0 2px rgba(0,170,220,0.25), 0 6px 24px rgba(0,170,220,0.12); }
.ev-calc-card-icon { font-size:1.75rem; line-height:1; }
.ev-calc-card-lbl  { font-size:0.9rem; font-weight:700; color:#0A1628; line-height:1.3; }
.ev-calc-card-sub  { font-size:0.75rem; color:#7A8C9E; line-height:1.3; }

/* Selected checkmark badge */
.ev-calc-card.is-sel .ev-calc-card-lbl::before {
  content:'✓ '; color:#00AADC; }

/* CONTACT STEP */
.ev-calc-step--contact { max-width:520px; }
.ev-calc-contact-inner { width:100%; display:flex; flex-direction:column; gap:20px; align-items:center; }
.ev-calc-contact-head  { text-align:center; display:flex; flex-direction:column; gap:8px; align-items:center; }
.ev-calc-contact-icon  { font-size:2.5rem; }
.ev-calc-contact-sub   { font-size:0.9rem; color:#7A8C9E; margin:0; }

/* SUMMARY */
.ev-calc-summary { width:100%; background:#F4F7FA; border:1px solid #E5EAF0;
  border-radius:12px; padding:14px 16px; display:flex; flex-direction:column; gap:8px; }
.ev-calc-sum-row  { display:flex; align-items:baseline; justify-content:space-between; gap:8px; }
.ev-calc-sum-k    { font-size:0.78rem; font-weight:600; color:#7A8C9E; text-transform:uppercase;
  letter-spacing:0.05em; flex-shrink:0; }
.ev-calc-sum-v    { font-size:0.88rem; font-weight:700; color:#0A1628; text-align:right; }

/* FORM */
.ev-calc-form  { width:100%; display:flex; flex-direction:column; gap:14px; }
.ev-calc-field { display:flex; flex-direction:column; gap:6px; }
.ev-calc-field label { font-size:0.8rem; font-weight:700; color:#0A1628; letter-spacing:0.03em; }
.ev-calc-field input { padding:14px 16px; border:2px solid #E5EAF0; border-radius:10px;
  font-size:1rem; color:#0A1628; background:#fff; outline:none; transition:border-color 0.18s; width:100%; }
.ev-calc-field input:focus { border-color:#00AADC; box-shadow:0 0 0 3px rgba(0,170,220,0.12); }
.ev-calc-field input::placeholder { color:#AEB8C4; }

/* SUBMIT */
.ev-calc-submit { width:100%; padding:16px 28px; background:linear-gradient(135deg,#002D78,#00AADC);
  border:none; border-radius:12px; color:#fff; font-size:1rem; font-weight:800;
  display:flex; align-items:center; justify-content:center; gap:10px;
  cursor:pointer; transition:filter 0.18s, box-shadow 0.18s; will-change:transform; }
.ev-calc-submit:hover { filter:brightness(1.08); box-shadow:0 8px 28px rgba(0,170,220,0.3); }
.ev-calc-submit:disabled { opacity:0.75; cursor:not-allowed; }

/* TRUST */
.ev-calc-trust { display:flex; flex-wrap:wrap; justify-content:center; gap:10px 18px;
  font-size:11.5px; color:#7A8C9E; }
.ev-calc-trust span { display:flex; align-items:center; gap:5px; }

/* FOOTER NAV */
.ev-calc-footer { padding:14px 20px 20px; display:flex; align-items:center;
  justify-content:space-between; background:#fff; border-top:1px solid #EEF1F5; }
.ev-calc-back-btn { display:flex; align-items:center; gap:6px; background:none; border:none;
  color:#7A8C9E; font-size:0.9rem; font-weight:600; cursor:pointer; padding:8px 12px;
  border-radius:8px; transition:background 0.15s; }
.ev-calc-back-btn:hover { background:#F4F7FA; color:#0A1628; }
.ev-calc-phone-link { display:flex; align-items:center; gap:6px; text-decoration:none;
  color:#00AADC; font-size:0.875rem; font-weight:700; }
.ev-calc-phone-link:hover { color:#0092c0; }

/* SUCCESS STEP */
.ev-calc-step--success { max-width:480px; }
.ev-calc-success-inner { display:flex; flex-direction:column; align-items:center;
  gap:16px; text-align:center; padding:20px 0; }
.ev-calc-success-ring { width:90px; height:90px; }
.ev-calc-check-svg  { width:90px; height:90px; }
.ev-check-circle    { stroke-dasharray:226; stroke-dashoffset:226; }
.ev-check-mark      { stroke-dasharray:50; stroke-dashoffset:50; }
.ev-calc-success-h  { font-size:clamp(1.6rem,6vw,2.2rem); font-weight:800; color:#0A1628; margin:0; }
.ev-calc-success-p  { font-size:0.95rem; color:#4A5A6A; line-height:1.65; margin:0; max-width:360px; }
.ev-calc-success-hours { font-size:0.85rem; color:#8A9BAD; margin:0; }
.ev-calc-call-btn   { display:inline-flex; align-items:center; gap:8px; padding:14px 24px;
  background:#0A1628; border-radius:10px; color:#fff; text-decoration:none;
  font-size:0.9rem; font-weight:700; transition:background 0.18s; }
.ev-calc-call-btn:hover { background:#00AADC; }
.ev-calc-back-link  { font-size:0.85rem; color:#7A8C9E; text-decoration:none; }
.ev-calc-back-link:hover { color:#00AADC; }

/* ── TABLET 600+ ── */
@media (min-width:600px) {
  .ev-calc-cards--3 { grid-template-columns:repeat(3,1fr); }
  .ev-calc-card { padding:22px 16px; }
  .ev-calc-card-icon { font-size:2rem; }
  .ev-calc-card-lbl  { font-size:0.95rem; }
  .ev-calc-q { font-size:clamp(1.5rem,4vw,2.2rem); }
  .ev-calc-main { padding:32px 24px 0; }
}

/* ── DESKTOP 900+ ── */
@media (min-width:900px) {
  .ev-calc-cards--3 { grid-template-columns:repeat(3,1fr); gap:16px; }
  .ev-calc-cards--4 { grid-template-columns:repeat(4,1fr); gap:14px; }
  .ev-calc-card { padding:28px 20px; }
  .ev-calc-contact-inner { max-width:460px; }
  .ev-calc-main { padding:40px 40px 0; }
}

/* ── EV CALCULATOR — DARK VARIANT (.ev-calc-dark) ── */
.ev-calc-dark { background:#0A1628; color:#fff; }
.ev-calc-dark .ev-calc-wrap { background:#0A1628; }

/* Header */
.ev-calc-dark .ev-calc-hdr { background:#0d1e36; border-color:rgba(255,255,255,0.07); }
.ev-calc-dark .ev-calc-logo span { color:rgba(255,255,255,0.85); }
.ev-calc-dark .ev-calc-prog-track { background:rgba(255,255,255,0.1); }
.ev-calc-dark .ev-calc-prog-label { color:rgba(255,255,255,0.4); }

/* Step */
.ev-calc-dark .ev-calc-step-num { color:#00AADC; }
.ev-calc-dark .ev-calc-q { color:#fff; }

/* Cards */
.ev-calc-dark .ev-calc-card { background:rgba(255,255,255,0.04); border-color:rgba(255,255,255,0.1); }
.ev-calc-dark .ev-calc-card:hover { border-color:rgba(0,170,220,0.4); background:rgba(0,170,220,0.06);
  box-shadow:0 4px 20px rgba(0,170,220,0.12); }
.ev-calc-dark .ev-calc-card.is-sel { background:rgba(0,170,220,0.1); border-color:#00AADC;
  box-shadow:0 0 0 2px rgba(0,170,220,0.3), 0 8px 28px rgba(0,170,220,0.15); }
.ev-calc-dark .ev-calc-card-lbl { color:#fff; }
.ev-calc-dark .ev-calc-card-sub { color:rgba(255,255,255,0.4); }

/* Contact / Summary */
.ev-calc-dark .ev-calc-contact-sub { color:rgba(255,255,255,0.5); }
.ev-calc-dark .ev-calc-summary { background:rgba(255,255,255,0.04); border-color:rgba(255,255,255,0.08); }
.ev-calc-dark .ev-calc-sum-k { color:rgba(255,255,255,0.4); }
.ev-calc-dark .ev-calc-sum-v { color:#fff; }

/* Form inputs */
.ev-calc-dark .ev-calc-field label { color:rgba(255,255,255,0.75); }
.ev-calc-dark .ev-calc-field input { background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.12);
  color:#fff; }
.ev-calc-dark .ev-calc-field input:focus { border-color:#00AADC; background:rgba(0,170,220,0.06);
  box-shadow:0 0 0 3px rgba(0,170,220,0.15); }
.ev-calc-dark .ev-calc-field input::placeholder { color:rgba(255,255,255,0.25); }

/* Submit button — gradient like hero section */
.ev-calc-dark .ev-calc-submit { background:linear-gradient(135deg,#002D78 0%,#00AADC 100%);
  box-shadow:0 4px 20px rgba(0,170,220,0.25); }
.ev-calc-dark .ev-calc-submit:hover { box-shadow:0 8px 32px rgba(0,170,220,0.35); filter:brightness(1.1); }

/* Trust badges */
.ev-calc-dark .ev-calc-trust { color:rgba(255,255,255,0.35); }

/* Footer nav */
.ev-calc-dark .ev-calc-footer { background:#0d1e36; border-color:rgba(255,255,255,0.07); }
.ev-calc-dark .ev-calc-back-btn { color:rgba(255,255,255,0.45); }
.ev-calc-dark .ev-calc-back-btn:hover { background:rgba(255,255,255,0.06); color:#fff; }
.ev-calc-dark .ev-calc-phone-link { color:#00AADC; }

/* Success */
.ev-calc-dark .ev-calc-success-h { color:#fff; }
.ev-calc-dark .ev-calc-success-p { color:rgba(255,255,255,0.6); }
.ev-calc-dark .ev-calc-success-hours { color:rgba(255,255,255,0.35); }
.ev-calc-dark .ev-calc-call-btn { background:rgba(255,255,255,0.08); border:1.5px solid rgba(255,255,255,0.15); }
.ev-calc-dark .ev-calc-call-btn:hover { background:#00AADC; border-color:#00AADC; }
.ev-calc-dark .ev-calc-back-link { color:rgba(255,255,255,0.4); }
.ev-calc-dark .ev-calc-back-link:hover { color:#00AADC; }

/* ══════════════════════════════════════════════════════════
   EV QUIZ SHARED BASE  (.ev-q-page)
   ══════════════════════════════════════════════════════════ */
.ev-q-page { margin:0; padding:0; font-family:var(--font,'DM Sans',Arial,sans-serif); }
.ev-q-page *, .ev-q-page *::before, .ev-q-page *::after { box-sizing:border-box; }
#wpadminbar { display:none!important; }

/* WRAP */
.ev-q-wrap { min-height:100svh; min-height:100vh; display:flex; flex-direction:column; }

/* HEADER */
.ev-q-hdr { display:flex; align-items:center; gap:16px; padding:14px 20px 14px;
  position:sticky; top:0; z-index:100; }
.ev-q-logo { display:flex; align-items:center; gap:9px; text-decoration:none; flex-shrink:0; }
.ev-q-logo img { width:28px; height:28px; }
.ev-q-logo span { font-size:13px; font-weight:700; letter-spacing:0.04em; }
.ev-q-prog { flex:1; height:2px; }
.ev-q-prog-fill { height:100%; width:0%; }
.ev-q-step-counter { font-size:12px; font-weight:800; letter-spacing:0.06em;
  text-transform:uppercase; flex-shrink:0; }
.ev-q-step-total { font-weight:500; }

/* MAIN */
.ev-q-main { flex:1; display:flex; align-items:center; justify-content:center;
  padding:20px 0 0; overflow:hidden; }

/* STEP */
.ev-calc-step { width:100%; max-width:700px; display:none; flex-direction:column;
  gap:0; padding:0 20px 20px; }
.ev-calc-step.is-active { display:flex; }

/* QUESTION AREA */
.ev-q-wrap-inner { padding-bottom:28px; }
.ev-q-stag { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.ev-q-stag-line { width:28px; height:2px; background:var(--sky,#00AADC); }
.ev-q-stag span { font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--sky,#00AADC); font-weight:700; }
.ev-calc-q { font-size:clamp(22px,6vw,38px); font-weight:800; letter-spacing:-0.025em;
  line-height:1.15; margin:0; }

/* CONTACT */
.ev-contact-wrap { width:100%; max-width:460px; margin:0 auto;
  display:flex; flex-direction:column; gap:20px; }
.ev-calc-contact-head { display:flex; flex-direction:column; gap:8px; }
.ev-calc-contact-sub { font-size:15px; line-height:1.55; margin:0; }

/* SUMMARY */
.ev-calc-summary { display:flex; flex-direction:column; gap:0; border-top:1px solid; border-bottom:1px solid; }
.ev-calc-sum-row { display:flex; justify-content:space-between; align-items:baseline;
  gap:12px; padding:9px 0; border-bottom:1px solid; }
.ev-calc-sum-row:last-child { border-bottom:none; }
.ev-calc-sum-k { font-size:10px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; flex-shrink:0; }
.ev-calc-sum-v { font-size:13px; font-weight:700; text-align:right; }

/* FORM */
.ev-calc-form { display:flex; flex-direction:column; gap:12px; }
.ev-calc-field { display:flex; flex-direction:column; gap:5px; }
.ev-calc-field label { font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; }
.ev-calc-field input { padding:13px 14px; border:1px solid; font-family:var(--font); font-size:15px;
  outline:none; transition:border-color .25s; border-radius:0; -webkit-appearance:none; width:100%; }

/* SUBMIT — uses .be-btn .be-btn-primary exactly */
.ev-calc-submit { width:100%; border-radius:0; }
.ev-calc-submit:disabled { opacity:0.7; cursor:not-allowed; }

/* TRUST */
.ev-q-trust { display:flex; flex-wrap:wrap; gap:8px 16px; font-size:11px;
  font-weight:700; letter-spacing:0.06em; text-transform:uppercase; }

/* FOOTER */
.ev-q-footer { padding:14px 20px 20px; display:flex; align-items:center;
  justify-content:space-between; border-top:1px solid; }
.ev-q-back-btn { display:flex; align-items:center; gap:6px; background:none; border:none;
  font-size:12px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  cursor:pointer; padding:8px 12px; transition:color 0.2s; font-family:var(--font); }
.ev-q-phone { display:flex; align-items:center; gap:6px; text-decoration:none;
  font-size:12px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; }

/* SUCCESS */
.ev-calc-step--success { max-width:480px; }
.ev-success-wrap { display:flex; flex-direction:column; align-items:center;
  gap:16px; text-align:center; padding:20px; }
.ev-calc-success-ring { width:88px; height:88px; }
.ev-calc-check-svg { width:88px; height:88px; }
.ev-check-circle { stroke-dasharray:226; stroke-dashoffset:226; }
.ev-check-mark   { stroke-dasharray:50; stroke-dashoffset:50; }
.ev-success-h  { font-size:clamp(26px,6vw,38px); font-weight:800; letter-spacing:-0.025em; margin:0; }
.ev-success-p  { font-size:15px; line-height:1.6; margin:0; max-width:340px; }
.ev-success-hrs { font-size:12px; letter-spacing:0.06em; margin:0; text-transform:uppercase; }
.ev-calc-back-link { font-size:12px; text-decoration:none; letter-spacing:0.04em; }
.ev-calc-back-link:hover { text-decoration:underline; }

/* ─── V3: SERVICE GRID STYLE ─────────────────────────── */
.ev-q-v3 { background:var(--td,#0A1628); color:#fff; }
.ev-q-v3 .ev-q-wrap { background:linear-gradient(180deg,#072a68,#001b47); }
.ev-q-v3 .ev-q-hdr { background:rgba(6,14,26,0.95); border-bottom:1px solid rgba(255,255,255,0.07);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); }
.ev-q-v3 .ev-q-logo span { color:rgba(255,255,255,0.75); }
.ev-q-v3 .ev-q-prog { background:rgba(255,255,255,0.1); }
.ev-q-v3 .ev-q-prog-fill { background:linear-gradient(90deg,#002D78,#00AADC,#33BFEA,#00AADC,#002D78);
  background-size:300% 100%; animation:shimmer 3s linear infinite; }
@keyframes shimmer { 0%{background-position:100% 0} 100%{background-position:-100% 0} }
.ev-q-v3 .ev-q-step-counter { color:rgba(255,255,255,0.45); }
.ev-q-v3 .ev-calc-q { color:#fff; }

/* V3 cards: service-grid pattern */
.ev-cards-grid { display:grid; gap:1px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.1); }
.ev-cards-4 { grid-template-columns:repeat(2,1fr); }
.ev-cards-3 { grid-template-columns:1fr; }
.ev-q-v3 .ev-calc-card { background:#0d1e36; border:none; border-left:3px solid transparent;
  display:flex; flex-direction:column; align-items:flex-start; gap:6px;
  padding:22px 20px; cursor:pointer; text-align:left;
  transition:background 0.2s, border-color 0.2s; font-family:var(--font); width:100%; }
.ev-q-v3 .ev-calc-card:hover { background:#122540; border-left-color:var(--sky,#00AADC); }
.ev-q-v3 .ev-calc-card.is-sel { background:rgba(0,170,220,0.10); border-left-color:var(--sky,#00AADC); }
.ev-q-v3 .ev-card-icon { font-size:1.5rem; line-height:1; }
.ev-q-v3 .ev-card-lbl { font-size:14px; font-weight:700; color:#fff; line-height:1.3; }
.ev-q-v3 .ev-card-sub { font-size:11px; font-weight:600; letter-spacing:0.06em;
  text-transform:uppercase; color:rgba(255,255,255,0.35); }
.ev-q-v3 .ev-calc-card.is-sel .ev-card-lbl { color:var(--sky,#00AADC); }

/* Contact & form */
.ev-q-v3 .ev-calc-contact-sub { color:rgba(255,255,255,0.55); }
.ev-q-v3 .ev-calc-summary { border-color:rgba(255,255,255,0.08); }
.ev-q-v3 .ev-calc-sum-row { border-color:rgba(255,255,255,0.08); }
.ev-q-v3 .ev-calc-sum-k { color:rgba(255,255,255,0.35); }
.ev-q-v3 .ev-calc-sum-v { color:#fff; }
.ev-q-v3 .ev-calc-field label { color:rgba(255,255,255,0.55); }
.ev-q-v3 .ev-calc-field input { border-color:rgba(255,255,255,0.15); background:rgba(255,255,255,0.06);
  color:#fff; }
.ev-q-v3 .ev-calc-field input:focus { border-color:var(--sky,#00AADC); background:rgba(0,170,220,0.08); }
.ev-q-v3 .ev-calc-field input::placeholder { color:rgba(255,255,255,0.2); }
.ev-q-v3 .ev-q-trust { color:rgba(255,255,255,0.3); }
.ev-q-v3 .ev-q-footer { background:rgba(6,14,26,0.8); border-color:rgba(255,255,255,0.08); }
.ev-q-v3 .ev-q-back-btn { color:rgba(255,255,255,0.4); }
.ev-q-v3 .ev-q-back-btn:hover { color:#fff; }
.ev-q-v3 .ev-q-phone { color:var(--sky,#00AADC); }
.ev-q-v3 .ev-success-h { color:#fff; }
.ev-q-v3 .ev-success-p { color:rgba(255,255,255,0.6); }
.ev-q-v3 .ev-success-hrs { color:rgba(255,255,255,0.3); }
.ev-q-v3 .ev-calc-back-link { color:rgba(255,255,255,0.35); }

/* V3 Q-num */
.ev-q-v3 .ev-q-num { font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--sky,#00AADC); font-weight:700; margin:0 0 10px; }

/* ─── V4: EDITORIAL ROWS ──────────────────────────────── */
.ev-q-v4 { background:#fff; color:var(--td,#0A1628); }
.ev-q-v4 .ev-q-wrap { background:#fff; }
.ev-q-v4 .ev-q-hdr { background:#fff; border-bottom:1px solid var(--brd,#DDE4EA); }
.ev-q-v4 .ev-q-logo span { color:var(--td,#0A1628); }
.ev-q-v4 .ev-q-prog { background:var(--brd,#DDE4EA); }
.ev-q-v4 .ev-q-prog-fill { background:var(--sky,#00AADC); }
.ev-q-v4 .ev-q-step-counter { color:var(--tm,#7A8A9C); }
.ev-q-v4 .ev-calc-q { color:var(--td,#0A1628); }

/* Big step number */
.ev-q-v4 .ev-q-num { font-size:clamp(42px,10vw,72px); font-weight:800; letter-spacing:-0.04em;
  color:var(--brd,#DDE4EA); line-height:1; margin:0 0 12px;
  font-feature-settings:'tnum'; }

/* V4 cards: full-width rows */
.ev-cards-rows { width:100%; display:flex; flex-direction:column;
  border-top:1px solid var(--brd,#DDE4EA); }
.ev-q-v4 .ev-calc-card { display:flex; align-items:center; gap:16px; padding:18px 0;
  background:none; border:none; border-bottom:1px solid var(--brd,#DDE4EA);
  cursor:pointer; text-align:left; width:100%; font-family:var(--font); position:relative;
  border-left:3px solid transparent; padding-left:3px; transition:border-color 0.15s; }
.ev-q-v4 .ev-calc-card:hover { border-left-color:var(--sky,#00AADC); }
.ev-q-v4 .ev-calc-card:hover .ev-row-lbl { color:var(--sky,#00AADC); }
.ev-q-v4 .ev-calc-card.is-sel { border-left-color:var(--sky,#00AADC); }
.ev-q-v4 .ev-calc-card.is-sel .ev-row-lbl { color:var(--sky,#00AADC); }
.ev-q-v4 .ev-calc-card.is-sel .ev-row-arr { color:var(--sky,#00AADC); opacity:1; }
.ev-row-icon { font-size:1.25rem; width:28px; text-align:center; flex-shrink:0; opacity:0.75; }
.ev-row-lbl  { flex:1; font-size:15px; font-weight:700; color:var(--td,#0A1628);
  display:flex; flex-direction:column; gap:2px; line-height:1.3; transition:color 0.15s; }
.ev-row-sub  { font-size:11px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--tm,#7A8A9C); }
.ev-row-arr  { font-size:16px; color:var(--tm,#7A8A9C); opacity:0.45;
  transition:color 0.15s, opacity 0.15s; flex-shrink:0; }

/* Contact & form */
.ev-q-v4 .ev-calc-contact-sub { color:var(--tb,#3A4A5C); }
.ev-q-v4 .ev-calc-summary { border-color:var(--brd,#DDE4EA); }
.ev-q-v4 .ev-calc-sum-row { border-color:var(--brd,#DDE4EA); }
.ev-q-v4 .ev-calc-sum-k { color:var(--tm,#7A8A9C); }
.ev-q-v4 .ev-calc-sum-v { color:var(--td,#0A1628); }
.ev-q-v4 .ev-calc-field label { color:var(--tb,#3A4A5C); }
.ev-q-v4 .ev-calc-field input { border-color:var(--brd,#DDE4EA); background:var(--bg,#F4F7FA);
  color:var(--td,#0A1628); }
.ev-q-v4 .ev-calc-field input:focus { border-color:var(--sky,#00AADC); background:#fff;
  box-shadow:0 0 0 3px rgba(0,170,220,0.1); }
.ev-q-v4 .ev-calc-field input::placeholder { color:var(--tm,#7A8A9C); }
.ev-q-v4 .ev-q-trust { color:var(--tm,#7A8A9C); }
.ev-q-v4 .ev-q-footer { background:#fff; border-color:var(--brd,#DDE4EA); }
.ev-q-v4 .ev-q-back-btn { color:var(--tm,#7A8A9C); }
.ev-q-v4 .ev-q-back-btn:hover { color:var(--td,#0A1628); }
.ev-q-v4 .ev-q-phone { color:var(--sky,#00AADC); }
.ev-q-v4 .ev-success-h { color:var(--td,#0A1628); }
.ev-q-v4 .ev-success-p { color:var(--tb,#3A4A5C); }
.ev-q-v4 .ev-success-hrs { color:var(--tm,#7A8A9C); }
.ev-q-v4 .ev-calc-back-link { color:var(--tm,#7A8A9C); }
.ev-q-v4 .ev-calc-back-link:hover { color:var(--sky,#00AADC); }

/* ── TABLET 600+ ── */
@media(min-width:600px){
  .ev-cards-3 { grid-template-columns:repeat(3,1fr); }
  .ev-calc-step { padding:0 32px 24px; }
}
@media(min-width:820px){
  .ev-cards-4 { grid-template-columns:repeat(4,1fr); }
  .ev-calc-step { padding:0 40px 28px; }
  .ev-q-main { padding:32px 0 0; }
}

/* ── City page breadcrumb ── */
.be-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.be-breadcrumb a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.be-breadcrumb a:hover { color: var(--sky); }
.be-breadcrumb span { color: rgba(255,255,255,.4); }

/* ── Team member digital card ── */
body.page-template-page-team-member {
  background: #000f26;
}

.be-team-page {
  --nv: #001b47;
  --nv2: #002d6b;
  --sk: #00aadc;
  --sl: #33bfea;
  --w: #fff;
  --bg: #000f26;
  --gold: #FBBF24;
  --err: #F87171;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--w);
  font-family: 'DM Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.be-team-page * {
  box-sizing: border-box;
}

.be-team-card {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.be-team-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--nv), var(--sk), var(--sl), var(--sk), var(--nv));
  background-size: 300% 100%;
  animation: beTeamFlow 8s linear infinite;
  border-radius: 16px 16px 0 0;
}

@keyframes beTeamFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.be-team-body {
  position: relative;
  overflow: hidden;
  padding: 36px 28px 32px;
  background: var(--nv);
  border-radius: 0 0 16px 16px;
}

.be-team-body::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 170, 220, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.be-team-brand,
.be-team-hero,
.be-team-link,
.be-team-save,
.be-team-gbadge {
  opacity: 0;
  transform: translateY(12px);
  animation: beTeamFadeUp 0.5s ease forwards;
}

.be-team-brand { animation-delay: 0.1s; }
.be-team-hero { animation-delay: 0.18s; }
.be-team-links .be-team-link:nth-child(1) { animation-delay: 0.25s; }
.be-team-links .be-team-link:nth-child(2) { animation-delay: 0.3s; }
.be-team-links .be-team-link:nth-child(3) { animation-delay: 0.35s; }
.be-team-links .be-team-link:nth-child(4) { animation-delay: 0.4s; }
.be-team-links .be-team-link:nth-child(5) { animation-delay: 0.45s; }
.be-team-save { animation-delay: 0.55s; }
.be-team-gbadge { animation-delay: 0.65s; }

@keyframes beTeamFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.be-team-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.be-team-brand img {
  width: 40px;
  height: auto;
}

.be-team-brand-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--w);
}

.be-team-brand-text small {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sk);
}

.be-team-name {
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--w);
}

.be-team-role {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.be-team-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.be-team-hero-info {
  flex: 1;
  min-width: 0;
}

.be-team-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.be-team-photo img,
.be-team-photo-fallback {
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.be-team-photo img {
  object-fit: cover;
  border: 3px solid var(--sk);
  box-shadow: 0 4px 20px rgba(0, 170, 220, 0.2);
}

.be-team-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 170, 220, 0.1);
  border: 3px solid rgba(0, 170, 220, 0.3);
  font-size: 28px;
  font-weight: 800;
  color: var(--sk);
}

.be-team-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.be-team-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--w);
  text-decoration: none;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.be-team-link:hover,
.be-team-link:active {
  background: rgba(0, 170, 220, 0.08);
  border-color: rgba(0, 170, 220, 0.15);
}

.be-team-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.be-team-link-icon svg {
  width: 20px;
  height: 20px;
}

.be-team-link-icon--phone { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.be-team-link-icon--email { background: rgba(0, 170, 220, 0.1); color: var(--sk); }
.be-team-link-icon--telegram { background: rgba(0, 136, 204, 0.1); color: #0088cc; }
.be-team-link-icon--whatsapp { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.be-team-link-icon--website { background: rgba(0, 170, 220, 0.1); color: var(--sk); }

.be-team-link-info {
  flex: 1;
  min-width: 0;
}

.be-team-link-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.be-team-link-value {
  margin-top: 1px;
  font-size: 15px;
  font-weight: 600;
  color: var(--w);
  word-break: break-word;
}

.be-team-link-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: color 0.2s;
}

.be-team-link:hover .be-team-link-arrow {
  color: var(--sk);
}

.be-team-save {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: var(--sk);
  color: var(--w);
  cursor: pointer;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.be-team-save:hover {
  background: #0095c0;
}

.be-team-save {
  margin-bottom: 22px;
}

.be-team-save:active {
  transform: scale(0.98);
}

.be-team-save svg {
  width: 20px;
  height: 20px;
}

.be-team-foot {
  margin-top: 20px;
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.15);
}

.be-team-foot a {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.be-team-foot a:hover {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 479px) {
  .be-team-page {
    align-items: flex-start;
    padding: 16px;
  }

  .be-team-body {
    padding: 28px 20px 24px;
  }
}

/* ===== Connect / Lead form block ===== */
.be-team-connect {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  transform: translateY(12px);
  animation: beTeamFadeUp 0.5s ease forwards;
  animation-delay: 0.75s;
}

.be-team-connect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sk), transparent);
  opacity: 0.6;
}

.be-team-connect-head {
  margin-bottom: 16px;
}

.be-team-connect-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: var(--sk);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.be-team-connect-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--w);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.be-team-connect-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.be-team-connect-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.be-team-f {
  position: relative;
}

.be-team-f label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.be-team-f label .be-team-opt {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 4px;
}

.be-team-f label .be-team-req {
  color: var(--sk);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-left: 4px;
}

.be-team-f input,
.be-team-f textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--w);
  font-size: 15px;
  font-weight: 600;
  font-family: "DM Sans", Arial, sans-serif;
  outline: none;
  transition: border-color 0.18s, background-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  border-radius: 10px;
}

.be-team-f input::placeholder,
.be-team-f textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.be-team-f input:hover,
.be-team-f textarea:hover {
  border-color: rgba(0, 170, 220, 0.4);
  background: rgba(0, 170, 220, 0.05);
}

.be-team-f input:focus,
.be-team-f textarea:focus {
  border-color: var(--sk);
  background: rgba(0, 170, 220, 0.09);
  box-shadow: 0 0 0 3px rgba(0, 170, 220, 0.18);
}

.be-team-f input.be-team-valid,
.be-team-f textarea.be-team-valid {
  border-color: rgba(0, 170, 220, 0.55);
}

.be-team-f input.be-team-err,
.be-team-f textarea.be-team-err {
  border-color: var(--err, #f87171);
  background: rgba(248, 113, 113, 0.06);
}

.be-team-f input.be-team-err:focus,
.be-team-f textarea.be-team-err:focus {
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.18);
}

.be-team-f textarea {
  resize: none;
  min-height: 72px;
  line-height: 1.4;
  font-weight: 500;
}

.be-team-f-err {
  font-size: 11px;
  color: #f87171;
  font-weight: 600;
  margin-top: 5px;
  min-height: 14px;
  line-height: 1;
}

.be-team-f-chr {
  position: absolute;
  right: 0;
  bottom: -16px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.be-team-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--sk);
  color: var(--w);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  font-family: "DM Sans", Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.be-team-send:hover {
  background: #0095c0;
}

.be-team-send:active {
  transform: scale(0.98);
}

.be-team-send:disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.be-team-send.be-team-loading {
  pointer-events: none;
}

.be-team-send .be-team-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: beTeamSpin 0.7s linear infinite;
  display: none;
}

.be-team-send.be-team-loading .be-team-spinner {
  display: block;
}

.be-team-send.be-team-loading .be-team-send-txt,
.be-team-send.be-team-loading .be-team-send-ico {
  display: none;
}

@keyframes beTeamSpin {
  to { transform: rotate(360deg); }
}

.be-team-send svg {
  width: 16px;
  height: 16px;
}

.be-team-privacy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.4;
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.02em;
}

.be-team-privacy a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

/* Success state */
.be-team-connect-ok {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 4px 6px;
}

.be-team-connect.be-team-sent .be-team-connect-head,
.be-team-connect.be-team-sent .be-team-connect-form,
.be-team-connect.be-team-sent .be-team-privacy {
  display: none;
}

.be-team-connect.be-team-sent .be-team-connect-ok {
  display: flex;
}

.be-team-ok-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid rgba(16, 185, 129, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  animation: beTeamPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.be-team-ok-circle svg {
  width: 28px;
  height: 28px;
  color: #10b981;
  stroke-width: 3;
}

@keyframes beTeamPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.be-team-ok-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--w);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.be-team-ok-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  max-width: 280px;
}

.be-team-ok-sub b {
  color: var(--sk);
  font-weight: 700;
}


/* ===== v4 Google review badge ===== */
.be-team-gbadge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 14px 18px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--sk);
  border-radius: 10px;
  text-decoration: none;
  color: var(--w);
  margin-bottom: 22px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.be-team-gbadge:hover {
  background: rgba(0, 170, 220, 0.08);
  box-shadow: 0 0 22px rgba(0, 170, 220, 0.2);
}
.be-team-gbadge:active {
  transform: scale(0.99);
}
.be-team-gbadge-stars {
  display: flex;
  gap: 4px;
}
.be-team-gbadge-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold, #FBBF24);
}
.be-team-gbadge-txt {
  font-size: 16px;
  font-weight: 700;
  color: var(--w);
  letter-spacing: 0.01em;
  font-family: 'DM Sans', Arial, sans-serif;
  text-align: center;
  line-height: 1.2;
}
.be-team-gbadge-g {
  width: 22px;
  height: 22px;
}

/* Google Places dropdown */
.pac-container {
  z-index: 200000 !important;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
  font-family: 'DM Sans', Arial, sans-serif;
}
