/* ==========================================================================
   ABOGADOHUGO.COM — Spanish-Language Personal Injury Brand
   The Plummer Law Firm, PLLC
   Consumer lead-generation design system
   Built to map 1:1 onto WordPress Elementor sections & widgets
   ========================================================================== */

:root {
    /* Brand palette (from Abogado Hugo logo) */
    --navy: #14263e;
    --navy-2: #1e3a5f;
    --navy-3: #0d1a2c;
    --blue: #5b9bd5;
    --blue-dark: #3f7fbd;
    --gold: #f2a922;
    --gold-dark: #d9931a;
    --silver: #aeb6bf;

    --bg: #ffffff;
    --bg-alt: #f2f6fa;
    --text: #3a4654;
    --text-light: #68758a;
    --heading: #14263e;
    --line: #e2e9f1;

    --font-heading: 'Barlow', sans-serif;
    --font-body: 'Barlow', sans-serif;

    --radius: 8px;
    --shadow: 0 10px 30px rgba(13, 26, 44, .12);
    --shadow-lg: 0 24px 60px rgba(13, 26, 44, .2);
    --container: 1200px;
    --transition: all .3s ease;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .3px;
}

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

/* ---------------------------------------------------------------- buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 34px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold { background: var(--gold); color: var(--navy-3); box-shadow: 0 8px 22px rgba(242, 169, 34, .35); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }

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

.btn-block { width: 100%; }
.btn-lg { padding: 20px 44px; font-size: 18px; }

/* ---------------------------------------------------------------- top bar */
.top-bar {
    background: var(--gold);
    color: var(--navy-3);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: center; align-items: center; gap: 10px; text-align: center; flex-wrap: wrap; }
.top-bar i { margin-right: 4px; }
.top-bar a { text-decoration: underline; }
.top-bar a:hover { color: #fff; }

/* ----------------------------------------------------------------- header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 14px rgba(13, 26, 44, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }

.logo { display: flex; align-items: center; }
.logo img, .logo svg { height: 56px; width: auto; }

.main-nav ul { display: flex; align-items: center; gap: 2px; }
.main-nav a {
    display: block;
    padding: 10px 11px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--navy);
    text-transform: uppercase;
}
.main-nav a:hover, .main-nav li.current > a { color: var(--blue); }

.main-nav li { position: relative; }
.main-nav li.has-dropdown > a i { font-size: 10px; margin-left: 5px; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: #fff;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 100;
}
.main-nav li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
    padding: 12px 22px;
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
}
.dropdown li:last-child a { border-bottom: 0; }
.dropdown a:hover { background: var(--bg-alt); color: var(--blue); padding-left: 27px; }

.header-cta { display: flex; align-items: center; gap: 14px; }

.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .5px;
    white-space: nowrap;
}
.header-phone-btn i { color: var(--gold); }
.header-phone-btn:hover { background: var(--navy-2); transform: translateY(-2px); }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 40px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 700;
}
.lang-switch i { color: var(--blue); }
.lang-switch a { color: var(--text-light); }
.lang-switch a.active { color: var(--navy); }
.lang-switch a:hover { color: var(--blue); }
.lang-switch .sep { color: var(--line); }

.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--navy); cursor: pointer; }
.nav-close { display: none; }

/* ------------------------------------------------------------------- hero */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(91, 155, 213, .25) 0%, transparent 55%),
        linear-gradient(120deg, var(--navy-3) 0%, var(--navy) 55%, var(--navy-2) 100%);
    color: #fff;
    overflow: hidden;
}

.hero-road { position: absolute; bottom: 0; left: 0; width: 100%; opacity: .14; pointer-events: none; }
.hero-road svg { width: 100%; height: auto; display: block; }

.hero .container { position: relative; z-index: 2; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 60px;
    align-items: center;
    padding: 90px 0 110px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(242, 169, 34, .15);
    border: 1px solid rgba(242, 169, 34, .45);
    color: var(--gold);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.hero h1 { font-size: 54px; color: #fff; margin-bottom: 10px; }
.hero h1 .accent { color: var(--gold); display: block; }

.hero p.sub { font-size: 19px; color: rgba(255, 255, 255, .85); margin: 18px 0 32px; max-width: 560px; }
.hero p.sub strong { color: var(--gold); }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-points { display: flex; gap: 26px; margin-top: 44px; flex-wrap: wrap; }
.hero-points span { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .9); }
.hero-points span i { color: var(--gold); }

/* hero quick form */
.quick-form {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 38px 34px;
    border-top: 6px solid var(--gold);
}
.quick-form h3 { font-size: 24px; margin-bottom: 6px; }
.quick-form > p { font-size: 14.5px; color: var(--text-light); margin-bottom: 22px; }
.quick-form .form-group { margin-bottom: 14px; }

/* -------------------------------------------------------------- trust bar */
.trust-strip { background: var(--navy-3); padding: 26px 0; }
.trust-strip .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-strip span { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .4px; }
.trust-strip span i { color: var(--gold); font-size: 18px; }

/* ------------------------------------------------------------- page title */
.page-title {
    background: linear-gradient(120deg, var(--navy-3), var(--navy-2));
    color: #fff;
    padding: 70px 0 62px;
}
.page-title h1 { color: #fff; font-size: 42px; margin-bottom: 10px; }
.page-title .breadcrumbs { font-size: 13.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, .65); }
.page-title .breadcrumbs a:hover { color: var(--gold); }
.page-title .breadcrumbs i { font-size: 10px; margin: 0 10px; color: var(--gold); }

/* --------------------------------------------------------------- sections */
.section { padding: 95px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-3); color: rgba(255, 255, 255, .82); }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 700px; margin: 0 auto 55px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.section-head h2, h2.big { font-size: 40px; margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 17px; }
.section-dark .section-head p { color: rgba(255, 255, 255, .7); }

/* --------------------------------------------------------- practice cards */
.practice-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.practice-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.practice-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 34px 22px;
    text-align: center;
    transition: var(--transition);
    display: block;
}
.practice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.practice-card .card-icon {
    width: 70px; height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    transition: var(--transition);
}
.practice-card:hover .card-icon { background: var(--gold); color: var(--navy-3); }
.practice-card h3 { font-size: 16.5px; line-height: 1.3; margin-bottom: 8px; }
.practice-card p { font-size: 13.5px; color: var(--text-light); }

/* ------------------------------------------------------------- why choose */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }

.split-media { position: relative; }
.split-media .media-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(150deg, var(--navy-3) 0%, var(--navy-2) 75%, var(--blue-dark) 140%);
    aspect-ratio: 4 / 4.4;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, .3);
    font-size: 92px;
}
.split-media .media-caption {
    position: absolute;
    bottom: -26px; right: -18px;
    background: var(--gold);
    color: var(--navy-3);
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 200px;
}
.split-media .media-caption .num { font-size: 34px; font-weight: 800; line-height: 1.1; display: block; text-transform: uppercase; }
.split-media .media-caption .label { font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; display: block; }

.check-list { margin: 24px 0 32px; display: grid; gap: 13px; }
.check-list.two-col { grid-template-columns: 1fr 1fr; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16.5px; font-weight: 700; color: var(--heading); }
.check-list li i {
    width: 26px; height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(242, 169, 34, .18);
    color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}
.section-dark .check-list li { color: #fff; }

/* ------------------------------------------------------------------ steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
    background: #fff;
    border-radius: 12px;
    border-bottom: 5px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-card .step-icon {
    width: 78px; height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
}
.step-card .step-label { font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--blue); text-transform: uppercase; display: block; margin-bottom: 8px; }
.step-card h3 { font-size: 21px; margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--text-light); }

/* ------------------------------------------------------------------ stats */
.stats-band { background: linear-gradient(100deg, var(--gold), var(--gold-dark)); color: var(--navy-3); padding: 55px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-item .num { font-size: 46px; font-weight: 800; line-height: 1.1; }
.stat-item .label { font-size: 13.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; display: block; }

/* ------------------------------------------------------------- results */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.result-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 38px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.result-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gold); }
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.result-card .amount { font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.result-card .case-type { font-size: 14px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin: 10px 0 12px; display: block; }
.result-card p { font-size: 14.5px; color: var(--text-light); }

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 36px 32px;
    position: relative;
}
.testimonial-card .quote-icon { font-size: 30px; color: var(--gold); margin-bottom: 16px; }
.testimonial-card p { font-size: 15.5px; color: var(--text); font-style: italic; margin-bottom: 20px; }
.testimonial-card .client { display: flex; align-items: center; gap: 14px; }
.testimonial-card .client .avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.testimonial-card .client strong { display: block; color: var(--heading); font-size: 15.5px; }
.testimonial-card .client span { font-size: 13px; color: var(--text-light); }
.testimonial-card .stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; }

/* ------------------------------------------------------------------- form */
.consult-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 66px; align-items: start; }

.form-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 46px 42px;
    border-top: 6px solid var(--gold);
}
.form-card h3 { font-size: 25px; margin-bottom: 6px; }
.form-card > p { font-size: 15px; color: var(--text-light); margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.form-group label span { color: #d9534f; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-alt);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(242, 169, 34, .18);
}
.form-group textarea { min-height: 115px; resize: vertical; }

.captcha-box {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px dashed var(--silver);
    border-radius: var(--radius);
    background: var(--bg-alt);
    padding: 15px 18px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 13.5px;
}
.captcha-box i { font-size: 22px; color: var(--blue); }

.form-note { font-size: 12.5px; color: var(--text-light); margin-top: 13px; text-align: center; }
.form-note i { margin-right: 6px; color: var(--gold-dark); }

/* --------------------------------------------------------------- CTA band */
.cta-band {
    background:
        radial-gradient(ellipse at 15% 20%, rgba(91, 155, 213, .2) 0%, transparent 50%),
        linear-gradient(115deg, var(--navy-3), var(--navy-2));
    color: #fff;
    padding: 85px 0;
    text-align: center;
}
.cta-band h2 { color: #fff; font-size: 42px; margin-bottom: 12px; }
.cta-band h2 .accent { color: var(--gold); }
.cta-band p { color: rgba(255, 255, 255, .78); font-size: 18px; max-width: 640px; margin: 0 auto 34px; }
.cta-band .cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta-band .big-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
}
.cta-band .big-phone i { color: var(--gold); font-size: 26px; }
.cta-band .big-phone:hover { color: var(--gold); }

/* -------------------------------------------------------------------- FAQ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: 0;
    padding: 21px 25px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
    text-align: left;
    cursor: pointer;
}
.faq-question .faq-icon {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(242, 169, 34, .16);
    color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy-3); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 25px 22px; font-size: 15.5px; color: var(--text-light); }

/* --------------------------------------------------------- content layout */
.content-layout { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.content-main h2 { font-size: 31px; margin: 0 0 16px; }
.content-main h3 { font-size: 23px; margin: 36px 0 12px; }
.content-main p { margin-bottom: 17px; font-size: 16px; }
.lead-text { font-size: 19.5px; font-weight: 500; color: var(--heading); margin-bottom: 24px; }

.icon-list { display: grid; gap: 15px; margin: 22px 0 28px; }
.icon-list.two-col { grid-template-columns: 1fr 1fr; }
.icon-list li { display: flex; gap: 14px; align-items: flex-start; }
.icon-list li i {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}
.icon-list li strong { display: block; color: var(--heading); font-size: 16px; }
.icon-list li span { font-size: 14px; color: var(--text-light); }

/* ---------------------------------------------------------------- sidebar */
.sidebar { position: sticky; top: 104px; display: grid; gap: 26px; }
.sidebar-widget { background: #fff; border: 1.5px solid var(--line); border-radius: 12px; padding: 30px 28px; }
.sidebar-widget.dark {
    background: linear-gradient(150deg, var(--navy-3), var(--navy-2));
    border: 0;
    color: rgba(255, 255, 255, .85);
    text-align: center;
}
.sidebar-widget.dark h3 { color: #fff; }
.sidebar-widget.dark .side-phone { display: block; font-size: 27px; font-weight: 800; color: var(--gold); margin: 12px 0 18px; }
.sidebar-widget.dark .side-phone:hover { color: #fff; }
.sidebar-widget h3 { font-size: 20px; margin-bottom: 14px; }
.sidebar-widget i.widget-icon { font-size: 34px; color: var(--gold); margin-bottom: 12px; }

.sidebar-nav li { border-bottom: 1px solid var(--line); }
.sidebar-nav li:last-child { border-bottom: 0; }
.sidebar-nav a { display: flex; align-items: center; justify-content: space-between; padding: 12px 4px; font-size: 15px; font-weight: 700; color: var(--heading); }
.sidebar-nav a i { font-size: 11px; color: var(--gold-dark); transition: var(--transition); }
.sidebar-nav a:hover, .sidebar-nav li.current a { color: var(--blue); }
.sidebar-nav a:hover i { transform: translateX(4px); }

/* --------------------------------------------------------- contact blocks */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 64px; }
.contact-info-card {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 38px 28px;
    text-align: center;
    transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.contact-info-card i {
    width: 66px; height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--navy), var(--navy-2));
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 25px;
}
.contact-info-card h3 { font-size: 19px; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 15px; color: var(--text-light); }
.contact-info-card a:hover { color: var(--blue); }
.contact-info-card .strong-line { font-size: 21px; font-weight: 800; color: var(--navy); display: block; margin-top: 4px; }
.contact-info-card .strong-line:hover { color: var(--blue); }

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--navy-3); color: #9fb0c3; }
.footer-top { padding: 75px 0 55px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 46px; }

.footer-brand .logo-footer { margin-bottom: 18px; }
.footer-brand .logo-footer svg, .footer-brand .logo-footer img { height: 60px; width: auto; }
.footer-brand p { font-size: 14.5px; margin-bottom: 20px; max-width: 320px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex; align-items: center; justify-content: center;
    color: #cfd8e3;
    font-size: 15px;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-3); }

.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 20px; padding-bottom: 12px; position: relative; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--gold); }

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14.5px; display: inline-flex; align-items: center; gap: 9px; }
.footer-links a i { font-size: 10px; color: var(--gold); }
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact li { display: flex; gap: 14px; margin-bottom: 15px; font-size: 14.5px; align-items: flex-start; }
.footer-contact li i { color: var(--gold); font-size: 15px; margin-top: 4px; }
.footer-contact a:hover { color: #fff; }
.footer-contact .foot-phone { font-size: 19px; font-weight: 800; color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 22px; }

.disclaimer-bar { background: rgba(0, 0, 0, .25); padding: 13px 0; }
.disclaimer-bar p { color: #6f8098; text-align: center; font-size: 11.5px; }

/* -------------------------------------------------- sticky mobile call bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1200;
    box-shadow: 0 -6px 24px rgba(13, 26, 44, .25);
}
.mobile-call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px 10px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.mobile-call-bar .call { background: var(--gold); color: var(--navy-3); }
.mobile-call-bar .consult { background: var(--navy); color: #fff; }

/* ------------------------------------------------------------- responsive */
@media (max-width: 1080px) {
    .hero h1 { font-size: 42px; }
    .practice-grid, .practice-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
    .steps-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .lang-switch { display: none; }
}

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0; right: -320px;
        width: 300px; height: 100vh;
        background: var(--navy-3);
        padding: 80px 30px 40px;
        transition: right .35s ease;
        overflow-y: auto;
        z-index: 1300;
    }
    .main-nav.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,.4); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav a { color: #fff; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; box-shadow: none; min-width: 0; }
    .dropdown a { color: rgba(255,255,255,.7); padding-left: 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
    .nav-close { display: block; position: absolute; top: 22px; right: 24px; background: none; border: 0; color: #fff; font-size: 24px; cursor: pointer; }
    .hero-grid, .split, .consult-grid, .content-layout { grid-template-columns: 1fr; }
    .hero-grid { padding: 70px 0 90px; gap: 44px; }
    .split-media { max-width: 480px; }
    .sidebar { position: static; }
    .header-phone-btn span { display: none; }
    .header-phone-btn { padding: 12px 16px; }
    .mobile-call-bar { display: flex; }
    body { padding-bottom: 56px; }
    .trust-strip .container { justify-content: center; }
}

@media (max-width: 640px) {
    .section { padding: 65px 0; }
    .hero h1 { font-size: 33px; }
    .section-head h2, h2.big { font-size: 29px; }
    .page-title h1 { font-size: 30px; }
    .cta-band h2 { font-size: 30px; }
    .cta-band .big-phone { font-size: 26px; }
    .practice-grid, .practice-grid.cols-4, .steps-grid, .stats-grid, .results-grid,
    .contact-info-grid, .footer-grid, .form-row, .check-list.two-col, .icon-list.two-col { grid-template-columns: 1fr; }
    .hero-buttons .btn { width: 100%; }
    .quick-form { padding: 32px 24px; }
    .form-card { padding: 34px 24px; }
    .footer-bottom .container { justify-content: center; text-align: center; }
}

/* ==========================================================================
   MODERN DESIGN LAYER — 2026 refresh
   Appended overrides. Elementor (Free) mapping:
   - Scroll reveals  → widget "Entrance Animation" (Fade In Up + delay)
   - Everything else → Customizer "Additional CSS"
   ========================================================================== */

:root {
    --radius: 10px;
    --radius-lg: 18px;
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --shadow: 0 6px 24px -8px rgba(13, 26, 44, .16);
    --shadow-lg: 0 24px 60px -18px rgba(13, 26, 44, .3);
    --transition: all .3s var(--ease-out);
}

::selection { background: var(--gold); color: var(--navy-3); }

h1, h2, h3 { text-wrap: balance; }
section[id] { scroll-margin-top: 110px; }

/* ------------------------------------------------------- fluid typography */
.hero h1 { font-size: clamp(34px, 5.2vw, 58px); letter-spacing: -.3px; }
.section-head h2, h2.big { font-size: clamp(29px, 3.6vw, 42px); }
.page-title h1 { font-size: clamp(30px, 4vw, 44px); }
.cta-band h2 { font-size: clamp(30px, 3.6vw, 44px); }

/* -------------------------------------------------------- header behavior */
.site-header { transition: box-shadow .35s ease; }
.logo img { transition: height .3s var(--ease-out); }
.site-header.scrolled { box-shadow: 0 10px 34px rgba(13, 26, 44, .16); }
.site-header.scrolled .logo img { height: 46px; }

/* header layout — keep everything on one clean line */
.header-inner { gap: 14px; }
.logo { flex-shrink: 0; }
.logo img { width: auto; flex-shrink: 0; }
.main-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.main-nav > ul { gap: 0; flex-wrap: nowrap; }
.main-nav ul.dropdown { display: block; }
.main-nav a { white-space: nowrap; padding: 10px 10px; font-size: 13.5px; letter-spacing: .2px; }
.header-cta { gap: 10px; flex-shrink: 0; }
.header-phone-btn { padding: 12px 15px; }
/* Standalone ES/EN toggle is replaced by the translation plugin in the
   WordPress build; hidden on desktop so the long Spanish nav fits one row. */
.lang-switch { display: none; }

/* switch to mobile drawer before the desktop bar gets cramped */
@media (max-width: 1240px) {
    .lang-switch { display: none; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0; right: -320px;
        width: 300px; height: 100vh;
        background: var(--navy-3);
        padding: 80px 30px 40px;
        transition: right .35s ease;
        overflow-y: auto;
        z-index: 1300;
    }
    .main-nav.open { right: 0; box-shadow: -20px 0 60px rgba(0, 0, 0, .4); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav a { color: #fff; padding: 14px 4px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .main-nav li.current > a { color: var(--blue); }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; box-shadow: none; min-width: 0; }
    .dropdown a { color: rgba(255, 255, 255, .7); padding-left: 20px; border-bottom: 1px solid rgba(255, 255, 255, .06); }
    .nav-close { display: block; }
}

/* ---------------------------------------------------------- button polish */
.btn { position: relative; overflow: hidden; }
.btn::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: -80%;
    width: 50%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .4), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left .65s var(--ease-out);
}
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0) scale(.98); }

/* -------------------------------------------------------------- hero glow */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}
.hero::before { width: 460px; height: 460px; top: -140px; left: -100px; background: rgba(242, 169, 34, .18); }
.hero::after { width: 420px; height: 420px; bottom: -160px; right: -100px; background: rgba(91, 155, 213, .26); }

/* ------------------------------------------------------------ card polish */
.practice-card, .step-card, .result-card, .testimonial-card,
.contact-info-card, .form-card, .quick-form, .sidebar-widget,
.faq-item, .split-media .media-frame { border-radius: var(--radius-lg); }

.practice-card:hover .card-icon { transform: scale(1.1) rotate(-5deg); }
.step-card:hover .step-icon { transform: scale(1.08); }
.step-card .step-icon { transition: transform .3s var(--ease-out); }

.result-card::before { background: linear-gradient(90deg, var(--gold), var(--blue)); }
.result-card:hover .amount { color: var(--gold-dark); }
.result-card .amount { transition: color .3s ease; }

.contact-info-card:hover i { background: var(--gold); color: var(--navy-3); transform: scale(1.06); }

/* --------------------------------------------------------- CTA band glow */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band::before {
    content: "";
    position: absolute;
    width: 560px; height: 560px;
    top: -220px; right: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 169, 34, .18), transparent 65%);
    pointer-events: none;
}

/* ----------------------------------------------------- focus accessibility */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
}

/* --------------------------------------------------------------- motion */
@media (prefers-reduced-motion: no-preference) {

    @keyframes riseIn {
        from { opacity: 0; transform: translateY(26px); }
        to   { opacity: 1; transform: none; }
    }
    @keyframes orbDrift {
        from { transform: translate3d(0, 0, 0); }
        to   { transform: translate3d(-60px, 40px, 0); }
    }
    @keyframes phonePulse {
        0%   { box-shadow: 0 0 0 0 rgba(242, 169, 34, .5); }
        70%  { box-shadow: 0 0 0 14px rgba(242, 169, 34, 0); }
        100% { box-shadow: 0 0 0 0 rgba(242, 169, 34, 0); }
    }
    @keyframes floatY {
        0%, 100% { transform: translateY(0); }
        50%      { transform: translateY(-8px); }
    }

    /* hero entrance (page load) */
    .hero-grid > div:first-child > * { animation: riseIn .8s var(--ease-out) backwards; }
    .hero-grid > div:first-child > *:nth-child(1) { animation-delay: .05s; }
    .hero-grid > div:first-child > *:nth-child(2) { animation-delay: .15s; }
    .hero-grid > div:first-child > *:nth-child(3) { animation-delay: .25s; }
    .hero-grid > div:first-child > *:nth-child(4) { animation-delay: .35s; }
    .hero-grid > div:first-child > *:nth-child(5) { animation-delay: .5s; }
    .hero-grid > .quick-form { animation: riseIn .9s var(--ease-out) .4s backwards; }
    .page-title h1, .page-title .breadcrumbs { animation: riseIn .7s var(--ease-out) backwards; }
    .page-title .breadcrumbs { animation-delay: .12s; }

    .hero::before { animation: orbDrift 14s ease-in-out infinite alternate; }
    .cta-band::before { animation: orbDrift 11s ease-in-out infinite alternate; }

    /* attention: phone CTAs pulse, floating proof badge */
    .header-phone-btn, .mobile-call-bar .call { animation: phonePulse 2.6s infinite; }
    .split-media .media-caption { animation: floatY 5s ease-in-out infinite; }

    /* scroll reveal (class applied by js/main.js) */
    .reveal {
        transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
        transition-delay: var(--reveal-delay, 0ms);
    }
    .reveal:not(.in-view) { opacity: 0; transform: translateY(30px); }
}

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