/* Custom styles that were in app.css */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
@keyframes countUp { from{opacity:0;transform:scale(.7);} to{opacity:1;transform:scale(1);} }

/* ── TYPOGRAPHY SYSTEM ── */
:root {
    --font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    --font-mono: 'DM Mono', ui-monospace, monospace;
}
body {
    padding-top: 102px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}
body.hero-fullscreen {
    padding-top: 0;
}
@media (max-width: 639px) {
    body { padding-top: 88px; }
    body.hero-fullscreen { padding-top: 0; }
    .announcement-bar { height: 26px; font-size: 0.6rem; padding: 0 0.75rem; }
    .navbar-new { top: 26px; }
    html, body { overflow-x: hidden; }
    .section-title { font-size: 1.625rem !important; }
    .section-subtitle { font-size: 0.9rem; }
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    font-feature-settings: 'kern' 1, 'ss01' 1;
    letter-spacing: -0.02em;
}
/* Mono for numbers/stats */
.font-mono, .stat-num { font-family: var(--font-mono); }

/* ANNOUNCEMENT BAR */
.announcement-bar {
    background: linear-gradient(90deg, #0a1e2e 0%, #0f2d45 20%, #1a4a6e 50%, #0f2d45 80%, #0a1e2e 100%);
    background-size: 200% 100%;
    animation: shimmerBar 8s linear infinite;
    color: white;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 51;
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
@keyframes shimmerBar { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.announcement-bar a { color: #fbbf24; text-decoration: none; border-bottom: 1px solid rgba(251,191,36,.35); transition: color 0.2s, border-color 0.2s; }
.announcement-bar a:hover { color: #fde68a; border-bottom-color: #fde68a; }
.announcement-bar .ann-sep { opacity: 0.2; margin: 0 0.625rem; }
.announcement-pulse { display:inline-block; width:5px; height:5px; background:#4ade80; border-radius:50%; animation: pulse 2s infinite; margin-right:7px; vertical-align:middle; box-shadow: 0 0 6px rgba(74,222,128,.6); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
/* Marquee for rate ticker */
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-track { display:flex; gap:1.5rem; animation: marquee 28s linear infinite; white-space:nowrap; }

/* NAVBAR */
.navbar-new {
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 4px 24px rgba(45,106,150,.08);
    border-bottom: 1px solid rgba(102,169,217,.14);
    transition: all 0.3s ease;
}
.navbar-new.scrolled {
    background: rgba(255,255,255,1);
    box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 12px 36px rgba(45,106,150,.12);
    border-bottom-color: rgba(102,169,217,.2);
}
.navbar-new.hero-transparent {
    background: transparent;
    box-shadow: none;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.navbar-new.hero-transparent .nav-link-new { color: rgba(255,255,255,.88); }
.navbar-new.hero-transparent .nav-link-new:hover { background: rgba(255,255,255,.1); color: white; }
.navbar-new.hero-transparent .nav-link-new.active { color: white; background: rgba(255,255,255,.1); }
.navbar-new.hero-transparent .nav-link-new.active::after { background: #f37912; }
.navbar-new.hero-transparent #navToggle { color: white; }
.navbar-new.hero-transparent #navToggle:hover { background: rgba(255,255,255,.1); }
.navbar-new.hero-transparent .border-l { border-color: rgba(255,255,255,.15); }
.navbar-new.hero-transparent .text-gray-400 { color: rgba(255,255,255,.5); }
.navbar-new.hero-transparent .text-\[\#2d6a96\] { color: rgba(255,255,255,.85); }
.nav-link-new {
    font-family: var(--font-display);
    color: #374151;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.625rem;
    transition: all 0.18s ease;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    position: relative;
    white-space: nowrap;
}
.nav-link-new:hover { background: #f0f7ff; color: #2d6a96; }
.nav-link-new.active {
    color: #1a4a6e;
    font-weight: 700;
    background: linear-gradient(135deg, #eef6ff 0%, #e8f2fb 100%);
}
.nav-link-new.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #f37912, #fbbf24);
}
/* Page progress bar */
#page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #f37912, #fbbf24);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}
/* Floating WhatsApp */
.fab-whatsapp {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    z-index: 100;
    width: 3.25rem;
    height: 3.25rem;
    background: #25D366;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
    transition: all 0.25s;
    animation: fabPop 0.4s cubic-bezier(.34,1.56,.64,1) 1s both;
}
.fab-whatsapp:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.55); }
.fab-whatsapp svg { width: 1.625rem; height: 1.625rem; fill: white; }
.fab-whatsapp .fab-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: #1a1a1a;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.fab-whatsapp:hover .fab-tooltip { opacity: 1; }
/* Scroll to top */
#scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    width: 2.75rem;
    height: 2.75rem;
    background: #2d6a96;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(45,106,150,.35);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s;
    border: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: #1a4a6e; transform: translateY(-2px); }
#scroll-top svg { width: 1.125rem; height: 1.125rem; stroke: white; }
@keyframes fabPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
/* Cookie banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #1a2e3d;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner a { color: #fbbf24; text-decoration: underline; }
@media (max-width: 639px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; padding: 0.875rem 1rem; font-size: 0.75rem; }
    #cookie-accept { width: 100%; text-align: center; }
}
#cookie-accept {
    background: #f37912;
    color: white;
    font-weight: 700;
    padding: 0.4rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.8125rem;
    white-space: nowrap;
    transition: background 0.2s;
}
#cookie-accept:hover { background: #e06008; }
.btn-nav-send {
    font-family: var(--font-display);
    color: white;
    font-weight: 700;
    padding: 0.5625rem 1.375rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #f37912 0%, #d95e00 100%);
    box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 4px 14px rgba(243,121,18,.35);
    position: relative;
    overflow: hidden;
}
.btn-nav-send::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}
.btn-nav-send:hover {
    background: linear-gradient(135deg, #ff9124 0%, #f37912 100%);
    box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 8px 22px rgba(243,121,18,.45);
    transform: translateY(-1px);
}
.btn-nav-cta-new {
    font-family: var(--font-display);
    color: #2d6a96;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    transition: all 0.2s;
    border: 1.5px solid rgba(45,106,150,.25);
    background: transparent;
}
.btn-nav-cta-new:hover {
    background: #f0f7ff;
    border-color: #2d6a96;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0;
    background: transparent;
    min-width: 280px;
    z-index: 50;
}
.dropdown-menu-inner {
    background: white;
    border-radius: 1.125rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45,106,150,.18), 0 4px 16px rgba(0,0,0,.07);
    border: 1px solid rgba(102,169,217,.15);
    position: relative;
}
.dropdown-menu-inner::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #1a4a6e;
    border-left: 1px solid rgba(102,169,217,.2);
    border-top: 1px solid rgba(102,169,217,.2);
}
.dropdown-header {
    background: linear-gradient(135deg, #1a4a6e 0%, #2d6a96 100%);
    padding: 0.875rem 1.125rem 0.75rem;
}
.dropdown-header-title {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 800;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.dropdown-header-sub {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    margin-top: 0.125rem;
}
.dropdown-body { padding: 0.375rem; }
.dropdown-menu.open {
    display: block;
    animation: dropIn .2s cubic-bezier(.16,1,.3,1);
}
@keyframes dropIn { from { opacity:0; transform:translateX(-50%) translateY(-8px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border-radius: 0.75rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: #374151;
    font-size: 0.8125rem;
    letter-spacing: -0.01em;
    transition: all 0.15s ease;
    position: relative;
    border-left: 2px solid transparent;
}
.dropdown-item:hover {
    background: #f0f7ff;
    color: #1a4a6e;
    border-left-color: #f37912;
    padding-left: 1.125rem;
}
.dropdown-item .item-num {
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    background: #f0f7ff;
    color: #2d6a96;
    font-size: 0.625rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s ease;
}
.dropdown-item:hover .item-num {
    background: #2d6a96;
    color: white;
}
.dropdown-footer {
    border-top: 1px solid rgba(102,169,217,.1);
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dropdown-footer a {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: #f37912;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.15s ease;
}
.dropdown-footer a:hover { gap: 0.5rem; }

/* Service Cards */
.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102,169,217,.15);
    box-shadow: 0 4px 24px rgba(102,169,217,.1);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 1rem 1rem 0 0;
    background: linear-gradient(90deg, #f37912, #f59e0b);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(102,169,217,.2);
}

/* Buttons */
.btn-primary, .btn-accent, .btn-outline {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.625rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    font-size: 0.875rem;
}
.btn-primary {
    color: white;
    background: #2d6a96;
    box-shadow: 0 4px 12px rgba(45,106,150,.3);
}
.btn-primary:hover {
    background: #1a4a6e;
    box-shadow: 0 8px 24px rgba(45,106,150,.4);
    transform: translateY(-2px);
}
.btn-accent {
    color: white;
    background: linear-gradient(135deg, #f37912, #e06008);
    box-shadow: 0 4px 12px rgba(243,121,18,.3);
}
.btn-accent:hover {
    background: linear-gradient(135deg, #e06008, #c85500);
    box-shadow: 0 8px 24px rgba(243,121,18,.4);
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid white;
    color: white;
}
.btn-outline:hover {
    background: white;
    color: #2d6a96;
}

/* Sections */
.section-window { padding: 6rem 0; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    color: #f37912;
}
/* Left-aligned: single line before text */
.section-tag::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 2px;
    border-radius: 9999px;
    background: #f37912;
    flex-shrink: 0;
}
/* Centered: line on both sides */
.section-tag.text-center,
.section-tag.justify-center {
    justify-content: center;
}
.section-tag.justify-center::before,
.section-tag.text-center::before {
    display: none;
}
.section-tag.justify-center::after,
.section-tag.text-center::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 2px;
    border-radius: 9999px;
    background: #f37912;
    flex-shrink: 0;
    order: -1;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a3a52;
}
@media (min-width: 768px) {
    .section-title { font-size: 2.875rem; }
}
.section-subtitle {
    font-family: var(--font-body);
    color: #6b7280;
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}
.accent-line {
    width: 3rem;
    height: 4px;
    border-radius: 9999px;
    margin-bottom: 1rem;
    background: #f37912;
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    color: white;
    transition: all 0.2s;
    background: rgba(255,255,255,.12);
}
.social-icon:hover {
    background: #f37912;
    transform: scale(1.1);
}
/* Footer mobile */
@media (max-width: 767px) {
    footer { padding-top: 3rem !important; }
    .footer-links { flex-direction: column; align-items: center; gap: 0.75rem; }
}

/* ── COMPONENT CLASSES ── */

/* Page hero h1 */
.page-hero h1 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

/* Person card */
.person-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(45,106,150,.12);
    border: 1px solid rgba(102,169,217,.12);
}
.person-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.person-info h2 { font-family: var(--font-display); letter-spacing: -0.02em; }

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    color: white;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

/* Partner / Career form card */
.partner-form {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(45,106,150,.1);
    border: 1px solid rgba(102,169,217,.12);
}
.form-select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    background: #f9fafb;
    transition: all 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
}
.form-select:focus {
    background-color: white;
    outline: none;
    border-color: #66a9d9;
    box-shadow: 0 0 0 3px rgba(102,169,217,.2);
}
.form-control { font-family: var(--font-body); }

/* Rate card */
.rate-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(102,169,217,.15);
    box-shadow: 0 4px 24px rgba(45,106,150,.08);
}
.rate-card .grid { font-family: var(--font-body); }
.rate-card .stat-num { font-family: var(--font-mono); }

/* Compliance block */
.compliance-block {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(102,169,217,.12);
    box-shadow: 0 2px 16px rgba(45,106,150,.06);
}
.compliance-block h3 { font-family: var(--font-display); letter-spacing: -0.02em; }

/* Alerts */
.alert-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    color: #1e40af;
    font-size: 0.875rem;
    line-height: 1.6;
}
.alert-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    color: #166534;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

/* News card */
.news-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(102,169,217,.12);
    box-shadow: 0 4px 20px rgba(45,106,150,.07);
    transition: all 0.3s;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(45,106,150,.14);
}
.news-card-body { padding: 1.5rem; }
.news-card h3 { font-family: var(--font-display); letter-spacing: -0.02em; }
.news-tag {
    display: inline-block;
    background: #f0f7ff;
    color: #2d6a96;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.news-date {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
    font-size: 0.75rem;
}

/* How it works steps */
.step-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1.25rem;
    border: 1px solid rgba(102,169,217,.12);
    box-shadow: 0 4px 20px rgba(45,106,150,.07);
    transition: all 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,106,150,.12); }
.step-card h4 { font-family: var(--font-display); letter-spacing: -0.02em; }
.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #f37912, #e06008);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(243,121,18,.35);
}

/* Testimonial card */
.testimonial-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(255,255,255,.15);
}
.testimonial-card p { font-family: var(--font-body); }

/* Section headings apply display font */
.section-title, h1, h2, h3, h4 {
    font-family: var(--font-display);
}
.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}
.form-control {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    background: #f9fafb;
    transition: all 0.2s;
}
.form-control:focus {
    background: white;
    outline: none;
    border-color: #66a9d9;
    box-shadow: 0 0 0 3px rgba(102,169,217,.2);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* Trust bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border-bottom: 1px solid rgba(102,169,217,.12);
    box-shadow: 0 2px 12px rgba(45,106,150,.06);
}
@media (min-width: 480px) {
    .trust-bar { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
    .trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 2rem; }
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.trust-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: #f0f7ff;
    color: #2d6a96;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
