:root {
    --ink: #10242d;
    --muted: #5b6b72;
    --line: #dce6e8;
    --paper: #f7faf9;
    --white: #ffffff;
    --teal: #137c72;
    --teal-dark: #0c514e;
    --red: #cf3f32;
    --amber: #f3b241;
    --blue: #245d7a;
    --shadow: 0 22px 60px rgba(16, 36, 45, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1000;
    transform: translateY(-130%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 250, 249, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220, 230, 232, .82);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}
.logo {
    width: 150px;
}
.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    letter-spacing: .02em;
}

.brand small {
    color: var(--muted);
    font-size: .78rem;
}

.brand-light .brand-mark {
    background: var(--white);
    color: var(--ink);
}

.brand-light small {
    color: #b7c8ca;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #31484f;
    font-weight: 700;
    font-size: 1.3rem;
}

.desktop-nav a {
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button,
.button {
    border: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.icon-button {
    width: 42px;
    height: 42px;
    display: inline-grid;
    position: relative;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--line);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
}

.button {
    min-height: 46px;
    display: inline-flex;
    gap: 10px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(207, 63, 50, .26);
}

.button-soft {
    background: rgba(255, 255, 255, .86);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--line);
}

.button-ghost {
    background: var(--ink);
    color: var(--white);
}

.button-dark {
    background: var(--ink);
    color: var(--white);
}

.button-small {
    min-height: 42px;
    padding-inline: 14px;
}

.button-wide {
    width: 100%;
}

.menu-toggle,
.mobile-panel {
    display: none;
}

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 120;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: visibility .28s ease;
}

.mobile-panel-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background:
        linear-gradient(135deg, rgba(16, 36, 45, .88), rgba(12, 81, 78, .74)),
        radial-gradient(circle at 22% 20%, rgba(243, 178, 65, .24), transparent 30%),
        radial-gradient(circle at 72% 82%, rgba(207, 63, 50, .22), transparent 34%);
    opacity: 0;
    transition: opacity .28s ease;
    cursor: pointer;
}

.mobile-panel-sheet {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(430px, 92vw);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 24px 22px 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 249, .96)),
        var(--white);
    border-left: 1px solid rgba(220, 230, 232, .86);
    box-shadow: -28px 0 80px rgba(16, 36, 45, .28);
    transform: translateX(104%);
    transition: transform .34s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
}

.mobile-panel-sheet::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--teal), var(--amber), var(--red));
}

.mobile-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.mobile-panel-logo {
    width: 132px;
}

.mobile-panel-close {
    display: inline-grid;
}

.mobile-panel-intro {
    padding: 18px;
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(12, 81, 78, .98), rgba(16, 36, 45, .96)),
        var(--ink);
    box-shadow: 0 18px 42px rgba(16, 36, 45, .18);
}

.mobile-panel-intro span {
    display: block;
    margin-bottom: 8px;
    color: #a9d8d4;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.mobile-panel-intro strong {
    display: block;
    font-size: 1.14rem;
    line-height: 1.35;
}

.mobile-nav {
    display: grid;
    gap: 10px;
}

.mobile-nav a {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .84);
    color: var(--ink);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(16, 36, 45, .06);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.mobile-nav a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--red);
    font-size: .75rem;
}

.mobile-nav a i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #edf5f4;
    color: var(--teal-dark);
}

.mobile-nav a:hover {
    transform: translateX(-4px);
    border-color: rgba(19, 124, 114, .4);
    background: var(--white);
}

.mobile-panel-actions {
    margin-top: auto;
    display: grid;
    gap: 12px;
}

.mobile-panel-contact {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .78);
    color: var(--teal-dark);
    font-weight: 900;
}

.mobile-panel.is-open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-panel.is-open .mobile-panel-backdrop {
    opacity: 1;
}

.mobile-panel.is-open .mobile-panel-sheet {
    transform: translateX(0);
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: 74px 0 60px;
}

.hero-visual,
.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-visual img,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.1s ease, transform 6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(247, 250, 249, .97) 0%, rgba(247, 250, 249, .86) 42%, rgba(247, 250, 249, .22) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: .08em;
}

.hero h1,
.section-heading h2,
.authority-grid h2,
.contact-grid h2,
.checkout-hero h1,
.legal-copy h1 {
    margin: 14px 0 18px;
    line-height: 1.04;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 5.9rem);
}

.hero-copy p {
    max-width: 650px;
    color: #31484f;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 3;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 36, 45, .28);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--red);
}

.hero-panel {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(220, 230, 232, .9);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 22px;
}

.status-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    align-items: center;
}

.status-row small {
    grid-column: 2;
    color: var(--muted);
}

.pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1f9f89;
    box-shadow: 0 0 0 0 rgba(31, 159, 137, .55);
    animation: pulse 1.8s infinite;
}

.route-board {
    margin: 24px 0;
    padding: 18px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
}

.route-board i {
    color: var(--amber);
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric-grid div {
    min-height: 96px;
    background: #f1f6f5;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
}

.metric-grid strong,
.metric-grid span {
    display: block;
}

.metric-grid span {
    margin-top: 6px;
    color: var(--muted);
    font-size: .88rem;
}

.section {
    padding: 92px 0;
}

.section-tight {
    padding-top: 76px;
}

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

.section-action {
    margin-top: 24px;
}

.section-heading h2,
.authority-grid h2,
.contact-grid h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.section-heading p,
.authority-grid p,
.contact-grid p {
    color: var(--muted);
    font-size: 1.05rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.package-card,
.checkout-form,
.contact-form,
.order-summary {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 36, 45, .08);
}

.service-card {
    min-height: 230px;
    padding: 24px;
}

.service-card i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(19, 124, 114, .11);
    color: var(--teal);
    font-size: 1.3rem;
}

.service-card h3 {
    margin: 22px 0 10px;
    font-size: 1.18rem;
}

.service-card p,
.package-card p {
    color: var(--muted);
}

.authority-band {
    background: var(--ink);
    color: var(--white);
}

.authority-band .eyebrow {
    color: var(--amber);
}

.authority-grid,
.contact-grid,
.checkout-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: start;
}

.authority-grid p {
    color: #c2d1d4;
}

.authority-list {
    display: grid;
    gap: 14px;
}

.authority-list div {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
}

.authority-list i {
    color: var(--amber);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(230px, 1fr));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.package-grid-page {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow: visible;
}

.package-card {
    min-width: 230px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border-color: rgba(207, 63, 50, .42);
    box-shadow: 0 22px 52px rgba(207, 63, 50, .13);
}

.package-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.package-top span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #edf5f4;
    color: var(--teal-dark);
    font-weight: 900;
    font-size: .74rem;
}

.package-top strong {
    font-size: 1.4rem;
    white-space: nowrap;
}

.package-top small {
    font-size: .72rem;
    color: var(--muted);
}

.package-card h3 {
    margin: 20px 0 8px;
    min-height: 78px;
    font-size: 1.16rem;
}

.package-card ul {
    padding: 0;
    margin: 8px 0 20px;
    list-style: none;
    display: grid;
    gap: 10px;
    flex: 1;
}

.package-card li {
    display: flex;
    gap: 9px;
    color: #31484f;
    font-size: .92rem;
}

.package-card li i {
    color: var(--teal);
    margin-top: 4px;
}

.contact-band {
    background: #e9f2ef;
}

.split-feature {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.split-feature h2 {
    margin: 14px 0 18px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.06;
}

.split-feature p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.feature-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature-stat-grid div {
    min-height: 130px;
    padding: 22px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(16, 36, 45, .08);
}

.feature-stat-grid strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
}

.feature-stat-grid span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
}

.page-hero {
    padding: 56px 0 64px;
    background: linear-gradient(135deg, #eff6f4 0%, #ffffff 58%, #f5eee4 100%);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 900px;
    margin: 14px 0 18px;
    font-size: clamp(2.4rem, 5.6vw, 5.1rem);
    line-height: 1.04;
}

.page-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.1rem;
}

.breadcrumb {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin-bottom: 24px;
    padding: 8px 10px;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(223, 227, 224, .9);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(16, 36, 45, .1);
    backdrop-filter: blur(14px);
    font-weight: 800;
    font-size: .9rem;
    overflow: hidden;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--teal), var(--red));
}

.breadcrumb a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 12px;
    color: var(--teal-dark);
    border-radius: 7px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.breadcrumb a:hover {
    color: var(--white);
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.breadcrumb a i {
    font-size: .82rem;
}

.breadcrumb-separator {
    color: var(--red);
    font-size: .7rem;
}

.breadcrumb-current {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    max-width: min(58vw, 520px);
    padding: 0 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    border-radius: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-list a {
    min-height: 112px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 14px;
    align-items: center;
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}

.contact-list i {
    grid-row: span 2;
    color: var(--red);
    font-size: 1.2rem;
}

.contact-list span,
.contact-list strong {
    display: block;
}

.contact-list span {
    color: var(--muted);
    font-size: .9rem;
}

.testimonial-band {
    background:
        linear-gradient(135deg, rgba(16, 36, 45, .97), rgba(12, 81, 78, .94)),
        var(--ink);
    color: var(--white);
    overflow: hidden;
}

.testimonial-wrap {
    display: grid;
    gap: 28px;
}

.testimonial-intro {
    max-width: 820px;
}

.testimonial-intro .eyebrow {
    color: var(--amber);
}

.testimonial-intro h2 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.08;
}

.testimonial-intro p {
    color: #c2d1d4;
    font-size: 1.05rem;
}

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

.testimonial-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.testimonial-card > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--ink);
    background: var(--amber);
}

.testimonial-card p {
    margin: 0;
    color: #edf5f4;
    font-size: 1.12rem;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: var(--white);
}

.testimonial-card span {
    color: #a9d8d4;
    font-size: .92rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
}

.trust-strip div {
    min-height: 104px;
    padding: 18px;
    background: rgba(255, 255, 255, .08);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    font-size: 1.45rem;
    line-height: 1;
}

.trust-strip span {
    margin-top: 9px;
    color: #c2d1d4;
    font-size: .92rem;
}

.site-footer {
    background: #0c1f27;
    color: var(--white);
    padding: 58px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #d5e2e4;
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: #b7c8ca;
    margin: 8px 0;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 38px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: #b7c8ca;
    font-size: .9rem;
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(12, 31, 39, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    width: min(430px, 100%);
    background: var(--white);
    transform: translateX(100%);
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -22px 0 60px rgba(16, 36, 45, .22);
}

.cart-open .cart-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.cart-open .cart-drawer {
    transform: translateX(0);
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: rgba(247, 250, 249, .92);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.page-loader.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-loader-panel {
    width: min(360px, calc(100% - 40px));
    min-height: 210px;
    display: grid;
    place-items: center;
    gap: 24px;
    padding: 32px 30px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 250, 249, .94)),
        var(--white);
    border: 1px solid rgba(220, 230, 232, .95);
    box-shadow: 0 30px 90px rgba(16, 36, 45, .18);
    color: var(--ink);
    text-align: center;
    transform: translateY(12px) scale(.98);
    transition: transform .22s ease;
    overflow: hidden;
}

.page-loader.is-active .page-loader-panel {
    transform: translateY(0) scale(1);
}

.loader-logo {
    width: min(190px, 70vw);
    transform-style: preserve-3d;
    animation: loaderLogoShake 1.15s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    filter: drop-shadow(0 14px 22px rgba(16, 36, 45, .18));
}

.loader-route {
    width: min(236px, 76vw);
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loader-route::before {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: 50%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(12, 81, 78, .28) 0 10px, transparent 10px 18px);
    transform: translateY(-50%);
}

.route-dot {
    position: relative;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #d8e9e7;
    box-shadow: 0 0 0 5px rgba(19, 124, 114, .08);
    animation: routeDotPulse 1.8s ease-in-out infinite;
}

.route-dot:nth-child(2) {
    animation-delay: .12s;
}

.route-dot:nth-child(3) {
    animation-delay: .24s;
}

.route-dot:nth-child(4) {
    animation-delay: .36s;
}

.route-dot:nth-child(5) {
    animation-delay: .48s;
}

.route-dot:nth-child(6) {
    animation-delay: .6s;
}

.loader-parcel {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 50%;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--amber));
    box-shadow: 0 16px 30px rgba(207, 63, 50, .28);
    transform: translate(0, -50%);
    animation: parcelRoute 1.8s cubic-bezier(.45, 0, .2, 1) infinite;
}

.loader-parcel i {
    font-size: .92rem;
}

@media (prefers-reduced-motion: reduce) {
    .loader-logo,
    .route-dot,
    .loader-parcel {
        animation-duration: 3.2s;
    }
}

.cart-head {
    padding: 22px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.cart-head h2 {
    margin: 4px 0 0;
}

.cart-items {
    padding: 18px 22px;
    overflow: auto;
    display: grid;
    gap: 12px;
}

.cart-line {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    display: grid;
    gap: 12px;
}

.cart-line strong,
.cart-line span {
    display: block;
}

.cart-line span {
    color: var(--muted);
}

.cart-line-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-controls button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    cursor: pointer;
}

.remove-line {
    border: 0;
    background: transparent;
    color: var(--red);
    font-weight: 800;
    cursor: pointer;
}

.cart-empty {
    flex: 1;
    display: none;
    place-items: center;
    text-align: center;
    color: var(--muted);
}

.cart-empty i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cart-summary {
    margin-top: auto;
    padding: 22px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 14px;
}

.cart-summary div,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.cart-summary strong,
.summary-total strong {
    font-size: 1.5rem;
}

.cart-summary small,
.checkout-note {
    color: var(--muted);
}

.checkout-hero,
.legal-page {
    padding: 70px 0;
    background: linear-gradient(135deg, #eff6f4, #ffffff);
}

.checkout-hero h1,
.legal-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.checkout-section {
    padding-top: 44px;
}

.checkout-form,
.contact-form,
.order-summary {
    padding: 24px;
}

.form-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.form-head h2,
.order-summary h2 {
    margin: 0;
}

.form-head span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf5f4;
    color: var(--teal-dark);
    font-weight: 900;
    font-size: .8rem;
}

.checkout-form,
.contact-form {
    display: grid;
    gap: 14px;
}

.checkout-form label,
.contact-form label {
    display: grid;
    gap: 7px;
    color: #31484f;
    font-weight: 800;
}

.checkout-form input,
.checkout-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--ink);
    background: #fbfdfd;
}

.checkout-form textarea,
.contact-form textarea {
    resize: vertical;
}

.contact-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--teal-dark) 50%), linear-gradient(135deg, var(--teal-dark) 50%, transparent 50%);
    background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form small {
    color: var(--red);
    font-weight: 800;
}

.contact-form-band {
    background: linear-gradient(135deg, #eff6f4 0%, #ffffff 62%, #f5eee4 100%);
    border-top: 1px solid var(--line);
}

.contact-form-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    color: var(--teal-dark);
    font-weight: 800;
}

.contact-form-note i {
    margin-top: 4px;
    color: var(--red);
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
}

.contact-alert.success {
    color: #11653b;
    background: #ecf8f1;
}

.contact-alert.error {
    color: var(--red);
    background: #fff1ef;
}

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

.payment-box {
    margin-top: 6px;
    padding: 18px;
    border-radius: 8px;
    background: #10242d;
    color: var(--white);
    display: grid;
    gap: 14px;
}

.payment-box label {
    color: var(--white);
}

.card-chip {
    width: 46px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f8da83, #bf8d2b);
}

.order-summary {
    position: sticky;
    top: 100px;
}

.order-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.order-line span {
    color: var(--muted);
}

.summary-total {
    padding: 22px 0;
}

.checkout-state {
    border-radius: 8px;
    padding: 14px;
    background: #edf5f4;
    color: var(--teal-dark);
    display: flex;
    gap: 10px;
}

.checkout-state.error {
    background: #fff1ef;
    color: var(--red);
}

.checkout-state.success {
    background: #ecf8f1;
    color: #11653b;
}

.legal-copy {
    max-width: 860px;
}

.legal-copy h2 {
    margin: 32px 0 10px;
    font-size: 1.35rem;
}

.legal-copy h3 {
    margin: 22px 0 8px;
    font-size: 1.02rem;
    color: var(--teal-dark);
}

.legal-copy p {
    color: #31484f;
}

.legal-copy ul {
    margin: 10px 0 18px;
    padding-left: 20px;
    color: #31484f;
}

.legal-copy li {
    margin: 7px 0;
}

.legal-copy a {
    color: var(--red);
    font-weight: 800;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 12px rgba(31, 159, 137, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(31, 159, 137, 0);
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-120%);
    }
    55% {
        transform: translateX(70%);
    }
    100% {
        transform: translateX(240%);
    }
}

@keyframes loaderLogoShake {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    12% {
        transform: translate3d(-2px, 1px, 0) rotate(-1.3deg);
    }
    24% {
        transform: translate3d(3px, -1px, 0) rotate(1.3deg);
    }
    36% {
        transform: translate3d(-3px, 0, 0) rotate(-1deg);
    }
    48% {
        transform: translate3d(2px, 1px, 0) rotate(.9deg);
    }
    60% {
        transform: translate3d(-1px, -1px, 0) rotate(-.6deg);
    }
    72% {
        transform: translate3d(1px, 0, 0) rotate(.4deg);
    }
}

@keyframes routeDotPulse {
    0%,
    100% {
        background: #d8e9e7;
        transform: scale(1);
    }
    45% {
        background: var(--teal);
        transform: scale(1.34);
    }
}

@keyframes parcelRoute {
    0% {
        transform: translate(0, -50%) rotate(-8deg);
    }
    45% {
        transform: translate(calc(min(236px, 76vw) - 34px), -58%) rotate(10deg);
    }
    62% {
        transform: translate(calc(min(236px, 76vw) - 34px), -50%) rotate(0deg);
    }
    100% {
        transform: translate(0, -50%) rotate(-8deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .72s ease, transform .72s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: .14s;
}

.service-card,
.package-card,
.contact-list a,
.feature-stat-grid div,
.authority-list div {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.package-card:hover,
.contact-list a:hover,
.feature-stat-grid div:hover,
.authority-list div:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(16, 36, 45, .14);
}

@media (max-width: 1100px) {
    .hero-grid,
    .authority-grid,
    .contact-grid,
    .checkout-grid,
    .split-feature {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 620px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid,
    .trust-strip {
        grid-template-columns: 1fr 1fr;
    }

    .package-grid-page {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .desktop-nav,
    .header-actions .button-ghost {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
    }

    .mobile-panel {
        display: block;
    }

    .header-inner {
        min-height: 66px;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 48px 0 38px;
    }

    .hero::after {
        background: rgba(247, 250, 249, .88);
    }

    .hero-grid {
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 4.1rem);
    }

    .hero-actions .button {
        width: 100%;
    }

    .metric-grid,
    .service-grid,
    .contact-list,
    .testimonial-grid,
    .trust-strip,
    .footer-grid,
    .form-row,
    .feature-stat-grid,
    .package-grid-page {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .package-grid {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .package-card {
        min-width: 0;
    }

    .package-card h3 {
        min-height: 0;
    }

    .order-summary {
        position: static;
    }
}
