:root {
    --blue-primary: #1696d7;
    --yellow-primary: #f9c31b;
    --orange: #f0b711;
    --gray-500: #d8e4ef;
    --gray-600: #91a5b6;
    --gray-700: #3d4e5f;
    --gray-900: #223241;
    --blue-100: #eef6fc;
    --blue-200: #dcebfa;
    --blue-300: #bfdff6;
    --blue-400: #87c8ee;
    --blue-600: #0d80bc;
    --blue-700: #0f6a98;
    --blue-800: #1b6f9e;
    --blue-900: #0b3048;
    --yellow-100: #fff6d8;
    --yellow-200: #ffe9a1;
    --yellow-300: #ffdd69;
    --yellow-400: #ffd33f;
    --yellow-600: #d59e09;
    --white: #ffffff;
    --black: #000000;
    --page-bg: #fbfcfd;
    --surface-soft: #f4f8fc;
    --font-heading: "Outfit", sans-serif;
    --font-body: "Ubuntu", sans-serif;
    --shadow-lg: 0 28px 70px rgba(22, 150, 215, 0.08);
    --shadow-md: 0 18px 40px rgba(15, 56, 84, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--gray-900);
    background:
        radial-gradient(circle at top left, rgba(228, 238, 247, 0.95), transparent 32%),
        radial-gradient(circle at top right, rgba(237, 244, 250, 0.92), transparent 36%),
        radial-gradient(circle at bottom center, rgba(220, 236, 247, 0.72), transparent 28%),
        var(--page-bg);
}

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

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-shell {
    overflow: clip;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(22, 150, 215, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.brand__logo {
    width: auto;
    height: 56px;
    max-width: 180px;
    object-fit: contain;
}

.brand__mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue-primary), #48b3e7);
    box-shadow: var(--shadow-md);
}

.brand__text {
    max-width: 250px;
    line-height: 1.15;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 500;
}

.nav a {
    color: var(--gray-700);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--yellow-primary);
    color: var(--blue-900);
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(249, 195, 27, 0.25);
}

.nav__cta i,
.button i,
.floating-whatsapp i {
    flex-shrink: 0;
    font-size: 1rem;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: rgba(22, 150, 215, 0.14);
    padding: 12px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 56, 84, 0.08);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 4px 0;
    border-radius: 999px;
    background: var(--blue-primary);
}

.hero {
    position: relative;
    padding: 0 0 52px;
}

.hero__stage {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), transparent 22%),
        linear-gradient(135deg, rgba(245, 250, 253, 0.98), rgba(226, 239, 248, 0.96));
}

.hero__stage::before,
.hero__stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__stage::before {
    background: linear-gradient(90deg, rgba(9, 35, 55, 0.9) 0%, rgba(9, 35, 55, 0.82) 30%, rgba(9, 35, 55, 0.42) 58%, rgba(9, 35, 55, 0.12) 100%);
    opacity: 0;
}

.hero__stage::after {
    inset: auto -14% -24% auto;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 72%);
}

.hero__stage--with-image {
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center right;
}

.hero__stage--with-image::before {
    opacity: 1;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
    gap: 42px;
    align-items: end;
    min-height: 700px;
    width: min(1320px, calc(100% - 72px));
    margin: 0 auto;
    padding: 72px 0 48px;
}

.hero__content {
    max-width: 590px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(22, 150, 215, 0.08);
    color: var(--blue-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split__content h2,
.vehicle-card h3,
.contact-panel h2,
.admin-card h1,
.admin-section h2,
.card h3,
.hero-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.02;
}

.hero h1 {
    margin-top: 24px;
    font-size: clamp(1.72rem, 2.9vw, 3.12rem);
    max-width: 10ch;
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--blue-primary);
}

.hero__content p,
.split__content p,
.card p,
.vehicle-card p,
.contact-panel p,
.footer p,
.admin-card p,
.setup-box p,
.stat p {
    color: var(--gray-700);
    line-height: 1.7;
}

.hero__content p {
    max-width: 42ch;
    margin-top: 20px;
    font-size: clamp(0.92rem, 0.92vw, 1.02rem);
}

.hero__actions,
.contact-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

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

.button--primary {
    background: var(--yellow-primary);
    color: var(--blue-900);
    box-shadow: 0 12px 24px rgba(249, 195, 27, 0.26);
}

.button--secondary {
    background: var(--white);
    color: var(--blue-primary);
    border: 2px solid rgba(22, 150, 215, 0.24);
    box-shadow: 0 12px 24px rgba(22, 150, 215, 0.08);
}

.button--whatsapp {
    background: linear-gradient(135deg, #29a71a, #25d366);
    color: var(--white);
}

.hero__anchors {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    max-width: 440px;
}

.hero__anchors a {
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 32px rgba(15, 56, 84, 0.08);
    font-weight: 600;
    color: var(--gray-900);
}

.hero__panel {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 30px;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-card--main {
    width: min(100%, 380px);
    margin-left: auto;
    padding: 28px 28px 128px;
    color: var(--blue-900);
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
}

.hero-card__label {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--blue-primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-card--main h2 {
    font-size: clamp(0.98rem, 1.15vw, 1.28rem);
    max-width: 15ch;
    line-height: 1.12;
}

.hero-card--main::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 160px;
    height: 160px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.8), transparent 22%),
        linear-gradient(160deg, rgba(249, 195, 27, 0.95), rgba(249, 195, 27, 0.3));
    transform: rotate(-10deg);
}

.hero-card--floating {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: min(310px, 88%);
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(15, 56, 84, 0.1);
}

.hero-card--floating strong {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 0.98rem;
}

.hero-card--floating p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.55;
}

.hero__stage--with-image .eyebrow {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero__stage--with-image .hero__content h1 {
    color: var(--white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.hero__stage--with-image .hero__content p {
    color: rgba(255, 255, 255, 0.88);
}

.hero__stage--with-image .button--secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-color: transparent;
    box-shadow: none;
}

.hero__stage--with-image .button--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.feature-grid {
    padding: 16px 0 18px;
}

.cards {
    display: grid;
    gap: 22px;
}

.cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards--blog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(22, 150, 215, 0.08);
}

.card h3 {
    margin-bottom: 14px;
    font-size: 1.02rem;
    line-height: 1.15;
}

.card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.62), transparent 22%),
        linear-gradient(145deg, var(--yellow-primary), var(--orange));
}

.card__icon i {
    font-size: 1.45rem;
    color: var(--blue-900);
}

.card--feature .card__icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(249, 195, 27, 0.24);
}

.card--feature .card__icon i {
    font-size: 1.6rem;
}

.card--feature::after,
.card--channel::after,
.card--blog::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(22, 150, 215, 0.08);
}

.card--service {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 250, 253, 1));
    border: 1px solid rgba(22, 150, 215, 0.14);
    color: var(--gray-900);
}

.card--service p {
    color: var(--gray-700);
}

.card--channel a,
.card--blog a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-weight: 700;
    color: var(--blue-700);
}

.section {
    padding: 92px 0;
}

.section--dark {
    background:
        linear-gradient(180deg, rgba(239, 247, 252, 0.98), rgba(255, 255, 255, 1)),
        var(--white);
}

.section--accent {
    background:
        linear-gradient(180deg, rgba(239, 247, 252, 0.88), rgba(255, 255, 255, 0.98));
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading--center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 34px;
}

.section-heading h2,
.split__content h2,
.contact-panel h2,
.admin-card h1 {
    margin-top: 18px;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.vehicle-card h3 {
    font-size: clamp(1.12rem, 1.5vw, 1.4rem);
    line-height: 1.12;
}

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.illustration {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 80% 12%, rgba(249, 195, 27, 0.28), transparent 18%),
        linear-gradient(145deg, rgba(238, 246, 252, 0.98), rgba(221, 236, 247, 0.98));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid rgba(22, 150, 215, 0.1);
}

.illustration__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.illustration__photo + .illustration__badge {
    backdrop-filter: blur(8px);
}

.illustration__badge {
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 12px 16px;
    border-radius: 999px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue-900);
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(15, 56, 84, 0.14);
}

.illustration__ring {
    position: absolute;
    right: -16px;
    top: 52px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 28px solid rgba(22, 150, 215, 0.12);
}

.illustration__card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.illustration__card h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow-primary), var(--orange));
    box-shadow: 0 0 0 6px rgba(249, 195, 27, 0.14);
}

.list--compact {
    margin-top: 20px;
}

.section--routes {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 150, 215, 0.08), transparent 18%),
        radial-gradient(circle at 88% 78%, rgba(249, 195, 27, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(245, 250, 253, 0.98), rgba(255, 255, 255, 1));
}

.section--routes::before,
.section--routes::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.section--routes::before {
    left: -90px;
    top: 90px;
    width: 220px;
    height: 220px;
    background: rgba(22, 150, 215, 0.06);
}

.section--routes::after {
    right: -60px;
    bottom: 60px;
    width: 180px;
    height: 180px;
    background: rgba(249, 195, 27, 0.12);
}

.vehicle-stack {
    display: grid;
    gap: 26px;
}

.vehicle-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: center;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98));
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(22, 150, 215, 0.1);
}

.vehicle-card__content .eyebrow {
    margin-bottom: 16px;
}

.vehicle-card__content h3 {
    margin-bottom: 14px;
}

.vehicle-card--reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.vehicle-card--reverse .vehicle-card__content {
    order: 2;
}

.vehicle-card__shape {
    position: relative;
    min-height: 260px;
}

.vehicle-card__bubble,
.vehicle-card__panel {
    position: absolute;
    inset: auto;
    border-radius: 30px;
}

.vehicle-card__bubble {
    left: 12%;
    top: 12%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(22, 150, 215, 0.16), rgba(22, 150, 215, 0.04));
}

.vehicle-card__panel {
    right: 4%;
    top: 10%;
    width: 72%;
    height: 78%;
    background:
        linear-gradient(145deg, rgba(232, 243, 250, 1), rgba(201, 227, 244, 1));
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(22, 150, 215, 0.18);
    overflow: hidden;
}

.vehicle-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-card__shape--photo .vehicle-card__panel {
    background: rgba(238, 246, 252, 1);
}

.vehicle-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--blue-primary);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(22, 150, 215, 0.2);
}

.vehicle-card__cta i {
    font-size: 0.95rem;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    padding: 38px;
    border-radius: var(--radius-xl);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(236, 245, 251, 0.96));
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(22, 150, 215, 0.1);
}

.contact-panel__box {
    display: grid;
    gap: 18px;
}

.contact-methods {
    display: grid;
    grid-template-columns: minmax(0, 360px);
    gap: 14px;
    margin-top: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(22, 150, 215, 0.12);
    box-shadow: 0 14px 28px rgba(22, 150, 215, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 150, 215, 0.22);
    box-shadow: 0 18px 32px rgba(22, 150, 215, 0.11);
}

.contact-method__icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--yellow-primary), var(--orange));
    color: var(--blue-900);
    box-shadow: 0 14px 28px rgba(249, 195, 27, 0.2);
}

.contact-method__icon i {
    font-size: 1.12rem;
}

.contact-method__copy {
    display: grid;
    gap: 4px;
}

.contact-method__copy strong {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--blue-primary);
}

.contact-method__copy span {
    font-size: 0.98rem;
    color: var(--gray-700);
    line-height: 1.3;
}

.stat {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.stat strong {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.08rem;
}

.footer {
    background: linear-gradient(180deg, rgba(239, 247, 252, 0.96), rgba(230, 240, 248, 0.96));
    color: var(--gray-700);
    padding: 28px 0;
    border-top: 1px solid rgba(22, 150, 215, 0.1);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

.footer__brand {
    display: grid;
    gap: 10px;
}

.footer__logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer__meta {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 20px 35px rgba(18, 140, 126, 0.32);
}

.floating-whatsapp i {
    font-size: 1.15rem;
}

.admin-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 0;
}

.admin-shell {
    width: min(980px, calc(100% - 32px));
}

.admin-card {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(22, 150, 215, 0.12);
}

.admin-card__header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.admin-card__heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-card__badge {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--yellow-primary), var(--orange));
    color: var(--blue-900);
    box-shadow: 0 16px 30px rgba(249, 195, 27, 0.24);
}

.admin-card__badge i {
    font-size: 1.3rem;
}

.admin-card__header-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-card__header-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(22, 150, 215, 0.14);
    background: rgba(238, 246, 252, 0.9);
    color: var(--blue-primary);
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(22, 150, 215, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.admin-card__header-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 150, 215, 0.22);
    box-shadow: 0 16px 28px rgba(22, 150, 215, 0.12);
}

.admin-form,
.admin-section {
    display: grid;
    gap: 18px;
}

.admin-section + .admin-section {
    margin-top: 28px;
}

.admin-section {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98));
    border: 1px solid rgba(22, 150, 215, 0.1);
    box-shadow: 0 16px 32px rgba(15, 56, 84, 0.05);
}

.admin-section h2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.45rem;
}

.admin-section h2 i,
.setup-box h2 i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(22, 150, 215, 0.08);
    color: var(--blue-primary);
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-grid--single {
    grid-template-columns: 1fr;
    max-width: 520px;
}

label {
    display: grid;
    gap: 10px;
    font-weight: 700;
}

.label__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-800);
}

.label__title i {
    width: 18px;
    color: var(--blue-primary);
    text-align: center;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(22, 150, 215, 0.16);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font: inherit;
    color: var(--blue-900);
    background: #fcfeff;
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 56px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: rgba(22, 150, 215, 0.08);
    color: var(--blue-primary);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease;
}

.password-toggle:hover {
    background: rgba(22, 150, 215, 0.14);
}

.password-toggle i {
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(22, 150, 215, 0.5);
    box-shadow: 0 0 0 4px rgba(22, 150, 215, 0.08);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.media-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(22, 150, 215, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
}

.media-card__preview {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(239, 247, 252, 1), rgba(224, 239, 248, 1));
    border: 1px dashed rgba(22, 150, 215, 0.2);
    color: var(--blue-700);
    font-weight: 700;
}

.media-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card__empty {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.media-card__empty i {
    font-size: 1.5rem;
    color: var(--blue-primary);
}

textarea {
    min-height: 132px;
    resize: vertical;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.alert i {
    margin-top: 2px;
    font-size: 1.1rem;
}

.alert--error {
    color: #7d1d1d;
    background: #ffe5e5;
}

.alert--success {
    color: #0a5a2f;
    background: #d9f7e6;
}

.setup-box,
.login-hint {
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(22, 150, 215, 0.06);
}

.setup-box h2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.login-hint p {
    margin: 0 0 8px;
}

.admin-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.admin-note i {
    margin-top: 2px;
    color: var(--blue-primary);
}

.install-list {
    margin: 0;
    padding-left: 18px;
    line-height: 1.8;
}

@media (max-width: 1080px) {
    .hero__grid,
    .split,
    .contact-panel,
    .vehicle-card,
    .vehicle-card--reverse {
        grid-template-columns: 1fr;
    }

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

    .hero__stage {
        min-height: auto;
    }

    .hero__grid {
        min-height: auto;
        align-items: start;
        width: min(1180px, calc(100% - 56px));
        padding: 60px 0 42px;
    }

    .hero__panel {
        min-height: 420px;
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .hero-card--main {
        margin-left: 0;
    }

    .hero-card--floating {
        right: 0;
    }
}

@media (max-width: 840px) {
    .header__inner {
        min-height: auto;
        padding: 12px 0;
        gap: 12px;
    }

    .brand {
        gap: 10px;
        min-width: 0;
    }

    .brand__logo {
        height: 50px;
        max-width: 158px;
    }

    .brand__text {
        max-width: 190px;
        font-size: 0.92rem;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        padding: 11px 10px;
        background: var(--blue-primary);
        box-shadow: 0 14px 28px rgba(22, 150, 215, 0.24);
    }

    .nav-toggle span {
        background: var(--white);
    }

    .nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        padding: 18px;
        border-radius: 22px;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.is-open {
        display: flex;
    }

    .cards--three,
    .cards--blog {
        grid-template-columns: 1fr;
    }

    .form-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .hero__stage {
        min-height: auto;
    }

    .hero h1 {
        max-width: 10ch;
        font-size: clamp(1.58rem, 4.6vw, 2.28rem);
    }

    .hero__content p {
        max-width: 38ch;
        font-size: 0.96rem;
    }

    .hero-card--main h2 {
        max-width: 14ch;
        font-size: clamp(0.94rem, 1.9vw, 1.18rem);
    }

    .hero__grid {
        width: calc(100% - 40px);
        padding: 50px 0 38px;
    }

    .vehicle-card,
    .vehicle-card--reverse {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 18px;
        align-items: start;
    }

    .vehicle-card__shape {
        order: 1;
        min-height: 170px;
    }

    .vehicle-card__content,
    .vehicle-card--reverse .vehicle-card__content {
        order: 2;
    }

    .vehicle-card__bubble {
        display: none;
    }

    .vehicle-card__panel {
        inset: 0;
        width: 100%;
        height: 100%;
        right: auto;
        top: auto;
        border-radius: 24px;
    }

    .vehicle-card__content .eyebrow {
        margin-bottom: 10px;
    }

    .section-heading h2,
    .split__content h2,
    .contact-panel h2,
    .admin-card h1 {
        font-size: clamp(1.3rem, 4.5vw, 1.75rem);
    }
}

@media (max-width: 640px) {
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-card__heading {
        align-items: flex-start;
    }

    .admin-card__badge {
        width: 50px;
        height: 50px;
        border-radius: 18px;
    }

    .admin-card__header-links a {
        width: 100%;
        justify-content: center;
    }

    .header__inner {
        padding: 10px 0;
        gap: 10px;
    }

    .brand__logo {
        height: 44px;
        max-width: 138px;
    }

    .brand__text {
        max-width: 150px;
        font-size: 0.8rem;
        line-height: 1.08;
    }

    .hero {
        padding-top: 0;
    }

    .hero__stage {
        min-height: auto;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(1.34rem, 6.4vw, 1.72rem);
        line-height: 1.02;
    }

    .hero-card--main h2,
    .vehicle-card h3,
    .card h3 {
        font-size: 0.92rem;
    }

    .section-heading h2,
    .split__content h2,
    .contact-panel h2,
    .admin-card h1 {
        font-size: clamp(1.22rem, 6vw, 1.55rem);
    }

    .hero-card--main,
    .hero-card--floating,
    .hero__panel {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .hero__panel {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .hero-card--main {
        padding: 22px 20px 104px;
    }

    .hero__content p {
        max-width: 100%;
        font-size: 0.92rem;
    }

    .hero__grid {
        width: calc(100% - 28px);
        padding: 42px 0 32px;
    }

    .vehicle-card,
    .vehicle-card--reverse {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .vehicle-card__shape {
        min-height: 128px;
    }

    .vehicle-card__panel {
        border-radius: 20px;
    }

    .cards--four {
        grid-template-columns: 1fr;
    }

    .section,
    .hero,
    .feature-grid {
        padding-left: 0;
        padding-right: 0;
    }

    .admin-card,
    .contact-panel,
    .vehicle-card,
    .card {
        padding: 22px;
    }

    .admin-section {
        padding: 20px;
    }

    .floating-whatsapp {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
        gap: 12px;
        padding: 16px 20px;
        border-radius: 999px;
        box-shadow: 0 24px 40px rgba(18, 140, 126, 0.4);
    }

    .floating-whatsapp span {
        display: inline;
        font-size: 1rem;
    }

    .floating-whatsapp i {
        font-size: 1.35rem;
    }
}
