/* Delegado Electric — Light premium theme (reference-inspired) */

:root {
    --color-primary: #30438f;
    --color-primary-dark: #243366;
    --color-accent: #e85126;
    --color-accent-light: #e85126;

    --bg-white: #f8f9fc;
    --bg-alt: #eef2fa;
    --bg-card: #ffffff;
    --text-dark: #30438f;
    --text-body: #4a5568;
    --text-muted: #6b7280;
    --accent-yellow: #e85126;
    --accent-yellow-dark: #e85126;
    --border: rgba(48, 67, 143, 0.12);
    --shadow: 0 12px 40px rgba(48, 67, 143, 0.08);
    --shadow-lg: 0 24px 60px rgba(48, 67, 143, 0.12);
    --font: 'Inter', system-ui, sans-serif;
    --header-height: 104px;
    --container: 1200px;
    --section-pad: clamp(64px, 10vw, 120px);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: auto;
    overflow-x: clip;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #243366;
}

@supports not (overflow: clip) {
    html {
        overflow-x: hidden;
    }
}

body {
    overflow: visible;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-family: var(--font);
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html.booking-modal-open {
    overflow: hidden !important;
}

html.booking-modal-open body {
    overflow: hidden !important;
}

.site-main {
    overflow: visible;
    max-width: 100%;
    min-width: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Premium pill buttons — same hover as header CTA */
.btn-yellow,
a.btn-yellow,
button.btn-yellow {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    isolation: isolate;
    background: linear-gradient(135deg, #30438f 0%, #243366 40%, #1a2744 100%);
    box-shadow:
        0 4px 24px rgba(48, 67, 143, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.35s ease;
}

.btn-yellow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, #e85126 0%, #e85126 50%, #c9431f 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -1;
}

.btn-yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 0%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    transform: skewX(-18deg);
    z-index: 0;
    pointer-events: none;
    transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-yellow:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 16px 48px rgba(232, 81, 38, 0.45),
        0 0 32px rgba(232, 81, 38, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-yellow:hover::after {
    opacity: 1;
}

.btn-yellow:hover::before {
    left: 140%;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.container-narrow {
    max-width: 720px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.logo-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

/* ─── Sections ─── */
.section {
    padding: var(--section-pad) 0;
}

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

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-yellow-dark);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--accent-yellow-dark);
}

.section-desc {
    margin-top: 16px;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
}

.section-head {
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
}

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.split-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.link-arrow {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--accent-yellow-dark);
}

/* Cards */
.cards-grid {
    display: grid;
    gap: 24px;
}

.cards-grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cards-grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 81, 38, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card h3,
.card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card-service {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.card-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
}

.card-link {
    margin-top: auto;
    padding-top: 20px;
    font-weight: 600;
    color: var(--accent-yellow-dark);
}

.card-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.card-step {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
    flex-shrink: 0;
}

/* Split layout */
.split-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .split-2 {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.split-visual {
    position: relative;
}

.split-visual-box {
    aspect-ratio: 4/5;
    background: var(--bg-alt);
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-visual-icon {
    font-size: 5rem;
    opacity: 0.25;
}

.float-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 20px 24px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.float-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-yellow-dark);
}

/* Timeline */
.timeline {
    margin-top: 16px;
    max-width: 640px;
}

.timeline-item {
    position: relative;
    padding-left: 56px;
    padding-bottom: 40px;
    border-left: 2px solid var(--border);
    margin-left: 12px;
}

.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.timeline-step {
    position: absolute;
    left: -13px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--accent-yellow);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.timeline-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Stats */
.section-stats {
    padding: 48px 0;
    background: var(--bg-card);
    border-y: 1px solid var(--border);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-num {
    display: block;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--accent-yellow-dark);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Slider */
.slider {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s var(--ease);
}

.slider-slide {
    min-width: 100%;
    padding: 0 8px;
}

.quote-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.quote-card p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
}

.quote-card footer {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.slider-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--accent-yellow);
}

/* CTA */
.cta-box {
    text-align: center;
    padding: clamp(48px, 8vw, 80px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
    align-items: center;
}

/* Page hero (inner pages) */
.page-hero {
    padding: calc(var(--header-height) + 48px) 0 48px;
    background: var(--bg-white);
}

.page-hero .breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.page-hero .breadcrumb a:hover {
    color: var(--accent-yellow-dark);
}

.page-hero .breadcrumb span {
    color: var(--text-dark);
}

/* Contact form (shared) */
.form-card {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(232, 81, 38, 0.2);
}

textarea.form-input {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-msg {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-msg.ok {
    background: #e8f5e9;
    color: #2e7d32;
}

.form-msg.err {
    background: #ffebee;
    color: #c62828;
}

/* Service detail */
.service-block {
    padding: var(--section-pad) 0;
}

.service-block.alt {
    background: var(--bg-alt);
}

.service-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

@media (min-width: 992px) {
    .service-head {
        grid-template-columns: 1fr 1fr;
    }
}

.service-visual {
    aspect-ratio: 16/10;
    background: var(--bg-alt);
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.feature-item .check {
    color: var(--accent-yellow-dark);
    font-weight: 700;
}

/* Footer */
.site-footer {
    background: #243366;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 max(24px, env(safe-area-inset-bottom, 0px));
    margin: 0;
}

.footer-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.14);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    }
}

.footer-brand .logo-name {
    color: #fff;
}

.footer-brand .logo-mark {
    background: var(--color-accent);
    color: #fff;
}

.footer-brand .logo img {
    width: 110px;
    height: auto;
    display: block;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-social__link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.footer-social__link:hover {
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    background: rgba(232, 81, 38, 0.1);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.9rem;
    max-width: 260px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col li {
    margin-bottom: 3px;
}

.footer-col a {
    font-size: 16px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-yellow);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.footer-contact li {
    margin-bottom: 0;
}

.footer-contact__link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 2px 0;
}

.footer-contact__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(232, 81, 38, 0.12);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 0px;
    border-top: none;
    font-size: 16px;
    text-align: center;
    background: #243366;
    opacity: 1;
    visibility: visible;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--accent-yellow);
}

.site-footer .footer-grid>* {
    opacity: 1;
    visibility: visible;
}

.footer-col ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.site-footer .footer-grid,
.site-footer .footer-bottom {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    --bs-gutter-x: 0;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
    box-sizing: border-box;
}

/* Footer — tablet & mobile */
@media (max-width: 991.98px) {
    .site-footer {
        padding: 36px 0 0;
    }

    .site-footer .footer-grid,
    .site-footer .footer-bottom {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .footer-grid {
        gap: 20px;
        margin-bottom: 0;
    }

    .footer-brand .logo img {
        width: 100px;
    }

    .footer-social {
        margin-top: 12px;
    }

    .footer-col h4 {
        margin-bottom: 8px;
    }

    .footer-col li {
        margin-bottom: 2px;
    }

    .footer-col a {
        line-height: 1.45;
        padding: 0;
    }
}

@media (max-width: 767.98px) {

    .site-footer .footer-grid,
    .site-footer .footer-bottom {
        padding-left: max(14px, env(safe-area-inset-left));
        padding-right: max(14px, env(safe-area-inset-right));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 28px;
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
    }

    .site-footer .footer-grid,
    .site-footer .footer-bottom {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 15px;
    }

    .footer-brand {
        margin-bottom: 4px;
    }

    .footer-brand .logo img {
        width: 92px;
    }

    .footer-social {
        margin-top: 10px;
        gap: 10px;
    }

    .footer-social__link {
        width: 40px;
        height: 40px;
    }

    .footer-col h4 {
        margin-bottom: 6px;
        font-size: 0.8125rem;
    }

    .footer-col li {
        margin-bottom: 2px;
    }

    .footer-contact {
        gap: 4px;
    }

    .footer-contact__link {
        gap: 12px;
        line-height: 1.45;
        word-break: break-word;
        padding: 8px 0;
    }

    .footer-contact__icon {
        width: 34px;
        height: 34px;
    }

    .footer-bottom {

        font-size: 0.8125rem;
        line-height: 1.55;
    }
}

/* Reveal (GSAP sets final state) */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.96);
}

@media (prefers-reduced-motion: reduce) {

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }

    .btn-yellow:hover {
        transform: none;
    }

    .btn-yellow:hover::before {
        left: -100%;
    }
}

/* ─── Who We Are — full width + reference style ─── */
.who-we-are {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: #f3f3f1;
    padding: clamp(24px, 4vw, 30px) clamp(16px, 3vw, 30px);
    box-sizing: border-box;
}

.who-we-are__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .who-we-are {
        padding: 30px;
    }

    .who-we-are__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, 1.05fr);
        gap: clamp(18px, 3.5vw, 20px);
        padding: 0 clamp(32px, 5vw, 72px);
    }
}

.who-we-are__col--text {
    max-width: 420px;
}

@media (min-width: 992px) {
    .who-we-are__col--text {
        max-width: none;
        padding-right: 8px;
    }

    .who-we-are__col--mission {
        padding-left: 8px;
    }
}

/* Shared section badge (About, Testimonials, FAQ) */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-yellow-dark);
    background: rgba(232, 81, 38, 0.12);
    border: 1px solid rgba(232, 81, 38, 0.3);
    border-radius: 100px;
    box-shadow: 0 4px 18px rgba(232, 81, 38, 0.12);
}

.section-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-yellow);
    box-shadow: 0 0 0 4px rgba(232, 81, 38, 0.22);
    flex-shrink: 0;
}

.who-we-are__label.section-badge {
    margin-bottom: 20px;
}

.testimonials__head .section-badge {
    margin-bottom: 14px;
}

.faq-section__head .section-badge {
    margin-bottom: 14px;
}

.who-we-are__title {
    font-size: clamp(2.125rem, 3.8vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.who-we-are__desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #6b6b6b;
    margin-bottom: 36px;
}

.who-we-are__profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.who-we-are__license {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 4px;
    margin: 0 0 24px;
    padding: 12px 18px;
    background: var(--bg-white);
    border: 1px solid rgba(48, 67, 143, 0.12);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(48, 67, 143, 0.06);
}

.who-we-are__license-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.who-we-are__license-num {
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--text-dark);
}

.who-we-are__block--vision .who-we-are__actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 18px;
    padding-top: 0;
}

.who-we-are__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px !important;
    font-size: 0.875rem !important;
    text-decoration: none;
}

.who-we-are__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(244, 196, 48, 0.35);
}

.who-we-are__profile-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.who-we-are__profile-info span {
    font-size: 0.8125rem;
    color: #8a8a8a;
}

.who-we-are__col--image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-are__image-wrap {
    width: 100%;
    max-width: 440px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .who-we-are__image-wrap {
        max-width: 100%;
        border-radius: 36px;
    }
}

.who-we-are__image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.who-we-are__col--mission {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 40px);
    max-width: 400px;
}

@media (min-width: 992px) {
    .who-we-are__col--mission {
        max-width: none;
    }
}

.who-we-are__accent {
    display: block;
    width: 52px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 4px;
    margin-bottom: 18px;
}

.who-we-are__block h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.who-we-are__block p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #6b6b6b;
    margin: 0;
}

@media (max-width: 991.98px) {
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .site-main,
    .site-main>section {
        max-width: 100%;
        min-width: 0;
    }

    .who-we-are {
        padding: 20px max(16px, env(safe-area-inset-right)) 20px max(16px, env(safe-area-inset-left));
    }

    .who-we-are__grid {
        gap: 20px;
    }

    .who-we-are__label.section-badge {
        margin-bottom: 12px;
    }

    .who-we-are__title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: 12px;
    }

    .who-we-are__desc {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .who-we-are__profile {
        gap: 12px;
    }

    .who-we-are__avatar {
        width: 48px;
        height: 48px;
        font-size: 0.8125rem;
    }

    .who-we-are__image-wrap {
        max-width: 100%;
        border-radius: 20px;
    }

    .who-we-are__col--mission {
        gap: 20px;
        max-width: 100%;
    }

    .who-we-are__accent {
        width: 40px;
        margin-bottom: 10px;
    }

    .who-we-are__block h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .who-we-are__block p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .who-we-are__col--text {
        order: 1;
        max-width: 100%;
    }

    .who-we-are__col--image {
        order: 2;
    }

    .who-we-are__col--mission {
        order: 3;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .who-we-are {
        padding: 18px 14px;
    }

    .who-we-are__grid {
        gap: 16px;
    }

    .who-we-are__col--mission {
        gap: 16px;
    }

    .who-we-are__desc {
        margin-bottom: 14px;
    }
}

/* Form Alerts */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    animation: formAlertSlideIn 0.35s ease;
}

.form-alert--success {
    background: #e9f9ee;
    border: 1px solid #a6e9b8;
    color: #1e7a3d;
}

.form-alert--success::before {
    content: "✓";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2fb457;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-alert--error {
    background: #fdecec;
    border: 1px solid #f3b4b4;
    color: #b42323;
}

.form-alert--error ul {
    padding-left: 18px;
    margin: 0;
}

.form-alert--error li {
    margin-bottom: 2px;
}

@keyframes formAlertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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


}

.schedule-form__time-range {
    display: flex;
    gap: 12px;
}

.schedule-time-input {
    flex: 1;
}

.schedule-time-input__label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    opacity: 0.75;
}

.thankyou-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.thankyou-modal.is-open {
    display: flex;
}
.thankyou-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.thankyou-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 40px 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    z-index: 1;
}
.thankyou-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.thankyou-modal__icon {
    color: #2ecc71;
    margin-bottom: 16px;
}
.thankyou-modal__dialog h3 {
    margin-bottom: 8px;
}
.thankyou-modal__ok {
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;
    border: none;
}