/* ── TOKENS ── */
:root {
    --navy:       #0B1F3A;
    --navy-mid:   #122847;
    --gold:       #C9A84C;
    --gold-light: #E2C87A;
    --gold-pale:  #F5EDD3;
    --white:      #FFFFFF;
    --off-white:  #F8F6F1;
    --gray-light: #E8E4DC;
    --gray-mid:   #9A9589;
    --gray-dark:  #4A4540;
    --text:       #1A1714;
    --green:      #1A7A4A;

    --font-display: 'Barlow Condensed', 'Barlow', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --radius:    4px;
    --radius-lg: 12px;
    --shadow:    0 4px 24px rgba(11,31,58,.10);
    --shadow-lg: 0 12px 48px rgba(11,31,58,.18);
    --ease:      cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── TOPBAR ── */
.topbar {
    background: var(--navy);
    padding: 9px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,.7);
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar a, .topbar span {
    color: rgba(255,255,255,.72);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .25s var(--ease);
    white-space: nowrap;
}
.topbar a:hover { color: var(--gold-light); }
.topbar svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── HEADER ── */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 20px rgba(11,31,58,.08);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}
.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 42px; height: 42px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-mark span {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}
.logo-tagline {
    font-size: 10.5px;
    color: var(--gray-mid);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-contact {
    text-align: right;
    font-size: 12.5px;
    color: var(--gray-dark);
    line-height: 1.4;
}
.header-contact strong { color: var(--navy); font-size: 15px; display: block; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    border: none;
    transition: all .25s var(--ease);
    white-space: nowrap;
}
.btn-gold  { background: var(--gold);  color: var(--navy); }
.btn-gold:hover  { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-navy  { background: var(--navy);  color: var(--white); }
.btn-navy:hover  { background: #0d2848; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,31,58,.25); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 15px 34px; font-size: 15px; }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── HERO ── */
.hero {
    background: var(--navy);
    min-height: 620px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/img/external/agreement-business-businessman-872957-low.jpg') center/cover no-repeat;
    opacity: .2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, var(--navy) 42%, rgba(11,31,58,.55) 100%);
}
.hero-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.13), transparent 65%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.14);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold-light);
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.hero-pill::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -.01em;
    margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
    font-size: 16.5px;
    color: rgba(255,255,255,.78);
    max-width: 440px;
    margin-bottom: 14px;
    font-weight: 300;
    line-height: 1.7;
}
.hero-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.18);
    border-left: 3px solid var(--gold);
    padding: 10px 16px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 28px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FORM CARD ── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: var(--shadow-lg);
}
.form-card-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: -.01em;
}
.form-card-sub {
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 20px;
    line-height: 1.5;
}
.form-group {
    margin-bottom: 12px;
    position: relative;
}
.form-group svg {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px; height: 15px;
    color: var(--gray-mid);
    pointer-events: none;
}
.form-group input {
    width: 100%;
    padding: 11px 12px 11px 38px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--off-white);
    transition: border-color .2s var(--ease), background .2s var(--ease);
    outline: none;
}
.form-group input:focus {
    border-color: var(--gold);
    background: var(--white);
}
.form-group input::placeholder { color: var(--gray-mid); }
.form-group input.invalid {
    border-color: #B42318;
    background: #FFF8F6;
}
.field-error {
    display: none;
    margin-top: 5px;
    font-size: 11.5px;
    color: #B42318;
}
.field-error.visible { display: block; }
.form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    min-height: 52px;
    padding: 13px 18px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 6px;
    transition: all .25s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-submit svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}
.form-submit:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.3);
}
.form-note {
    text-align: center;
    font-size: 11px;
    color: var(--gray-mid);
    margin-top: 10px;
}
.form-alert {
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 14px;
    padding: 11px 13px;
}
.form-alert.success {
    background: rgba(26,122,74,.12);
    color: var(--green);
}
.form-alert.error {
    background: rgba(122,26,26,.12);
    color: #7A1A1A;
}
.hide { display: none; }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--gold-pale);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 18px 0;
}
.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--navy);
}
.trust-item svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }

/* ── SECTION SHELL ── */
.section { padding: 76px 0; }
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -.01em;
}
.section-sub {
    color: var(--gray-mid);
    font-size: 15.5px;
    margin-top: 10px;
    line-height: 1.7;
}
.section-head { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-title,
.text-center .section-sub { max-width: 680px; margin-left: auto; margin-right: auto; }
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* ── SERVICES GRID ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.service-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .25s var(--ease);
}
.service-item:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
    transform: translateX(4px);
}
.service-dot {
    width: 9px; height: 9px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.service-item span {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--navy);
}

/* ── PRICING TABS ── */
.pricing-tabs {
    display: flex;
    gap: 0;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
    margin: 0 auto 44px;
}
.tab-btn {
    padding: 11px 28px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    border: none;
    background: var(--white);
    color: var(--gray-mid);
    cursor: pointer;
    transition: all .2s var(--ease);
    letter-spacing: .02em;
}
.tab-btn.active {
    background: var(--navy);
    color: var(--white);
}
.tab-btn:first-child { border-right: 1px solid var(--gray-light); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    position: relative;
    transition: all .25s var(--ease);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    background: var(--navy);
    border-color: var(--navy);
}
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-name {
    font-size: 11px;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}
.pricing-card.featured .pricing-name { color: var(--gold-light); }
.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.pricing-currency { font-size: 16px; font-weight: 500; color: var(--gray-mid); }
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,.45); }
.pricing-amount {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.pricing-card.featured .pricing-amount { color: var(--gold-light); }
.pricing-period { font-size: 13px; color: var(--gray-mid); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.5); }
.pricing-quote {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
    letter-spacing: .01em;
}
.pricing-card.featured .pricing-quote { color: #5FDFA0; }
.pricing-divider {
    border: none;
    border-top: 1px solid var(--gray-light);
    margin: 18px 0;
}
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,.12); }
.pricing-list { list-style: none; margin-bottom: 24px; }
.pricing-item {
    font-size: 13px;
    color: var(--gray-dark);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--gray-light);
}
.pricing-card.featured .pricing-item { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.08); }
.pricing-item:last-child { border-bottom: none; }
.pricing-item::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.pricing-card.featured .pricing-item::before { background: var(--gold-light); }
.pricing-note { text-align: center; font-size: 13px; color: var(--gray-mid); margin-top: 28px; }

/* ── WHO SECTION ── */
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.who-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.who-card img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    filter: brightness(.9);
    transition: filter .25s var(--ease);
}
.who-card:hover img { filter: brightness(1); }
.who-card-body {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-top: none;
}
.who-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 9px;
}
.who-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.who-card p { font-size: 13.5px; color: var(--gray-dark); line-height: 1.6; }
.who-note {
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    margin-top: 36px;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.6;
}
.who-note strong { color: var(--navy); }

/* ── COMMITMENT SPLIT ── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}
.split-image {
    background: url('/assets/img/external/banner-lista.jpg') center/cover no-repeat;
    min-height: 340px;
}
.split-content {
    background: var(--navy);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-content h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 28px;
}
.commit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.commit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255,255,255,.82);
    line-height: 1.5;
}
.commit-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(201,168,76,.2);
    border: 1px solid rgba(201,168,76,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.commit-icon svg { width: 12px; height: 12px; color: var(--gold-light); }
.commit-item strong { color: var(--white); }

/* ── WHY CARDS ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    border: 1px solid var(--gray-light);
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
    width: 52px; height: 52px;
    background: var(--gold-pale);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; color: var(--gold); }
.why-card h5 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.why-card p { font-size: 13.5px; color: var(--gray-dark); line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-section {
    background: var(--navy);
    padding: 76px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/external/agreement-arms-business-1081228.jpg') center/cover no-repeat;
    opacity: .12;
}
.cta-section::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(201,168,76,.14), transparent 65%);
    pointer-events: none;
}
.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-inner .section-label { color: var(--gold-light); }
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 14px;
}
.cta-inner p {
    color: rgba(255,255,255,.72);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
    background: #070E1B;
    padding: 56px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 13.5px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 44px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    gap: 44px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-logo img { height: 84px; width: auto; object-fit: contain; }
.footer-about { line-height: 1.7; max-width: 310px; }
.footer-col h6 {
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 18px;
}
.footer-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;
}
.footer-row svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-row a { color: rgba(255,255,255,.68); transition: color .2s var(--ease); }
.footer-row a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: rgba(255,255,255,.32);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.48); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── WA DRAWER ── */
.wa-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(7,14,27,.55);
    backdrop-filter: blur(3px);
    z-index: 800;
}
.wa-backdrop.open { display: block; animation: fadeIn .2s var(--ease); }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.wa-drawer {
    position: fixed;
    right: 26px; bottom: 96px;
    transform: translateY(16px) scale(.98);
    width: min(420px, calc(100% - 52px));
    background: var(--white);
    border-radius: 16px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 18px 48px rgba(11,31,58,.22);
    z-index: 801;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .28s var(--ease);
}
.wa-drawer.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.wa-drawer-handle {
    width: 36px; height: 4px;
    background: var(--gray-light);
    border-radius: 4px;
    margin: 12px auto 0;
}
.wa-drawer-body { padding: 18px 24px 28px; }
.wa-drawer-top {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.wa-drawer-icon {
    width: 42px; height: 42px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-drawer-icon svg { width: 22px; height: 22px; color: white; }
.wa-drawer-heading h3 {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 800;
    color: var(--navy); letter-spacing: -.01em;
}
.wa-drawer-heading p { font-size: 12px; color: var(--gray-mid); margin-top: 1px; }
.wa-drawer-close {
    margin-left: auto;
    width: 30px; height: 30px;
    border: 1.5px solid var(--gray-light);
    border-radius: 50%; background: transparent;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gray-dark);
    transition: all .2s var(--ease); flex-shrink: 0;
}
.wa-drawer-close:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.wa-drawer-close svg { width: 12px; height: 12px; }
.wa-drawer-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.wa-field { position: relative; }
.wa-field svg {
    position: absolute; left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 14px; color: var(--gray-mid); pointer-events: none;
}
.wa-field input {
    width: 100%; padding: 11px 12px 11px 36px;
    border: 1.5px solid var(--gray-light); border-radius: var(--radius);
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    color: var(--text); background: var(--off-white); outline: none;
    transition: border-color .2s, background .2s;
}
.wa-field input:focus { border-color: #25D366; background: var(--white); }
.wa-field input::placeholder { color: var(--gray-mid); font-weight: 400; }
.wa-field-error { font-size: 11px; color: #C0392B; margin-top: 3px; display: none; font-weight: 600; }
.wa-submit {
    width: 100%; background: #25D366; color: var(--white);
    padding: 13px; border: none; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
    cursor: pointer; transition: all .2s var(--ease);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.wa-submit:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.wa-submit svg { width: 18px; height: 18px; }
.wa-drawer-note { text-align: center; font-size: 11px; color: var(--gray-mid); margin-top: 8px; text-transform: uppercase; letter-spacing: .05em; font-weight: 500; }

/* ── WA FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 26px; right: 26px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    z-index: 900;
    transition: all .25s var(--ease);
    cursor: pointer;
    border: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; height: 28px; color: white; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp .7s var(--ease) both; }
.hero-pill    { animation-delay: .10s; }
.hero h1      { animation-delay: .20s; }
.hero-sub     { animation-delay: .28s; }
.hero-price   { animation-delay: .34s; }
.hero-actions { animation-delay: .42s; }
.form-card    { animation: fadeUp .7s .28s var(--ease) both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .header-inner { height: auto; min-height: 74px; padding-top: 10px; padding-bottom: 10px; }
    .header-right { gap: 12px; }
    .split-section { grid-template-columns: 1fr; }
    .split-image { min-height: 260px; }
    .split-content { padding: 40px 28px; }
    .who-grid, .why-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    .topbar-left { display: none; }
    .header-contact { display: none; }
    .header-inner { padding-left: 18px; padding-right: 18px; }
    .logo img { height: 46px; }
    .header-right .btn { padding: 11px 16px; font-size: 13px; }
    .hero { min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px; }
    .hero h1 { font-size: 42px; }
    .hero-sub { max-width: 100%; }
    .trust-inner { gap: 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .wa-drawer {
        top: 50%; right: auto; bottom: auto; left: 50%;
        width: calc(100% - 32px);
        max-width: 420px;
        border-radius: 16px;
        transform: translate(-50%, -46%) scale(.98);
    }
    .wa-drawer.open { transform: translate(-50%, -50%) scale(1); }
}
@media (max-width: 480px) {
    body { font-size: 15px; }
    .topbar { display: none; }
    .header-inner { justify-content: center; }
    .header-right { display: none; }
    .logo { width: 100%; justify-content: center; }
    .logo img { height: 44px; }
    .hero-inner { padding: 36px 18px 42px; gap: 28px; }
    .hero h1 { font-size: 64px; }
    .hero-pill { max-width: 100%; font-size: 12px; }
    .hero-price {
        align-items: flex-start;
        width: 100%;
        font-size: 13px;
        line-height: 1.45;
    }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .form-card { padding: 26px 20px; border-radius: 10px; }
    .form-card-title { font-size: 32px; }
    .form-submit { min-height: 50px; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-tabs { width: 100%; }
    .tab-btn { flex: 1; text-align: center; font-size: 12.5px; padding: 10px 12px; }
    .section { padding: 54px 0; }
    .section-inner { padding: 0 18px; }
    .wa-float { right: 18px; bottom: 18px; }
}
