:root {
    --dark: #011119;
    --navy: #052636;
    --petrol: #0c3d54;
    --cyan: #009fe3;
    --cyan-light: #28b8f5;
    --white: #ffffff;
    --soft: #d7eaf3;
    --muted: #8da9b6;
    --line: rgba(215, 234, 243, 0.14);
    --panel: linear-gradient(145deg, rgba(5, 38, 54, 0.96), rgba(12, 61, 84, 0.58));
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    min-width: 0;
    overflow-x: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 2%, rgba(0, 159, 227, 0.22), transparent 28%),
        radial-gradient(circle at 92% 28%, rgba(154, 107, 255, 0.11), transparent 25%),
        linear-gradient(135deg, var(--dark), var(--navy) 55%, var(--dark));
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.6;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -70px; z-index: 2000; padding: 12px 18px; border-radius: 10px; background: var(--white); color: var(--dark); font-weight: 800; }
.skip-link:focus { top: 16px; }

h1, h2, h3 { line-height: 1.04; letter-spacing: -0.045em; text-wrap: balance; }
h1 { font-size: clamp(46px, 6.5vw, 82px); }
h2 { font-size: clamp(34px, 4.5vw, 58px); }
h3 { font-size: clamp(23px, 2.4vw, 33px); }
p { color: var(--soft); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--cyan-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; box-shadow: 0 0 18px currentColor; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--cyan-light); outline-offset: 4px; }
.btn-primary { background: linear-gradient(135deg, var(--cyan), var(--cyan-light)); color: var(--white); box-shadow: 0 16px 40px rgba(0, 159, 227, 0.3); }
.btn-secondary { border-color: rgba(215, 234, 243, 0.22); background: rgba(255, 255, 255, 0.07); }

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    background: rgba(1, 17, 25, 0.9);
    backdrop-filter: blur(18px);
}
.nav-shell { min-height: 82px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; }
.brand img { width: 54px; height: 54px; object-fit: cover; border: 2px solid rgba(40, 184, 245, 0.58); border-radius: 16px; box-shadow: 0 0 28px rgba(0, 159, 227, 0.2); }
.nav-panel { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--soft); font-size: 14px; font-weight: 800; }
.nav-links a { position: relative; padding: 9px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--cyan-light); transition: right 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 13px; background: transparent; color: var(--white); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 22px; height: 2px; border-radius: 10px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    padding: 13px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 18px 48px rgba(0, 159, 227, 0.34);
}

.hero { position: relative; overflow: hidden; padding: 80px 0 38px; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(30px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; left: -300px; top: 0; background: rgba(0, 159, 227, 0.13); }
.hero-glow-two { width: 620px; height: 620px; right: -420px; bottom: -180px; background: rgba(159, 112, 255, 0.1); }
.hero-grid { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 52px; }
.hero-copy { min-width: 0; }
.hero-copy h1 { margin: 22px 0 24px; }
.hero-copy h1 span { display: block; color: var(--cyan-light); }
.hero-lead { max-width: 720px; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.65; }
.quality-statement { margin-top: 28px; padding: 18px 20px; border-left: 4px solid var(--cyan-light); border-radius: 0 16px 16px 0; background: rgba(0, 159, 227, 0.09); }
.quality-statement strong { display: block; font-size: 16px; }
.quality-statement span { display: block; margin-top: 6px; color: var(--soft); font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-visual { min-width: 0; margin: 0; padding: 14px; border: 1px solid rgba(215, 234, 243, 0.17); border-radius: 28px; background: rgba(255, 255, 255, 0.045); box-shadow: var(--shadow); }
.hero-visual img { width: 100%; border-radius: 19px; }
.hero-visual figcaption { padding: 12px 7px 0; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-align: center; }
.fact-strip { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--line); }
.fact-strip div { padding: 20px 22px; background: rgba(3, 27, 39, 0.93); }
.fact-strip strong, .fact-strip span { display: block; }
.fact-strip strong { font-size: 14px; }
.fact-strip span { margin-top: 3px; color: var(--muted); font-size: 12px; }

.packages-section, .comparison-section, .process-section, .faq-section { padding: 92px 0; }
.section-heading { max-width: 860px; margin-bottom: 40px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 15px 0 17px; }
.section-heading h2 span { color: var(--cyan-light); }
.section-heading p { font-size: 17px; }
.package-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.package-card {
    --accent: #dfe9ee;
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    background: var(--panel);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.package-card:hover { transform: translateY(-7px); border-color: var(--accent); box-shadow: 0 28px 74px rgba(0, 0, 0, 0.36); }
.package-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.package-card.is-active { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 30px 78px rgba(0, 0, 0, 0.4), 0 0 0 1px color-mix(in srgb, var(--accent) 42%, transparent); }
.package-card.gold { --accent: #efbd49; }
.package-card.platinum { --accent: #91e9ff; }
.package-card.signature { --accent: #c99dff; }
.package-card.platinum { border-color: rgba(145, 233, 255, 0.5); }
.package-badge { position: absolute; z-index: 2; top: 12px; left: 50%; transform: translateX(-50%); width: calc(100% - 32px); padding: 7px 12px; border-radius: 999px; background: linear-gradient(90deg, #88dff5, #f0ffff, #83c9db); color: #052331; font-size: 8px; font-weight: 900; letter-spacing: 0.16em; text-align: center; text-transform: uppercase; }
.package-image { aspect-ratio: 4 / 4.4; overflow: hidden; background: #021019; }
.package-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.35s ease; }
.package-card:hover .package-image img { transform: scale(1.025); }
.package-card-body { padding: 22px; }
.package-card-top { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; margin-bottom: 13px; color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.package-card-top strong { color: var(--accent); font-size: 14px; letter-spacing: -0.02em; text-align: right; }
.package-card h3 { margin-bottom: 12px; font-size: 25px; }
.package-card p { min-height: 72px; font-size: 14px; line-height: 1.55; }
.card-link { display: flex; justify-content: space-between; align-items: center; margin-top: 21px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--white); font-size: 13px; font-weight: 900; }
.card-link b { color: var(--accent); font-size: 25px; line-height: 1; transition: transform 0.22s ease; }
.package-card.is-active .card-link b { transform: rotate(45deg); }
.price-note { margin-top: 20px; color: var(--muted); font-size: 12px; text-align: right; }

.package-drawer {
    --accent: #91e9ff;
    grid-column: 1 / -1;
    min-width: 0;
    margin: 12px 0 10px;
    animation: drawer-reveal 0.32s ease both;
}
.package-drawer[hidden] { display: none !important; }
.drawer-shell {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid color-mix(in srgb, var(--accent) 48%, rgba(255, 255, 255, 0.12));
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 34%),
        linear-gradient(145deg, rgba(6, 42, 58, 0.98), rgba(2, 16, 23, 0.97));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.drawer-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent) 18%, var(--accent) 82%, transparent);
}
.drawer-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 8px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.drawer-kicker { color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.drawer-close {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 13px 10px 17px;
    border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.drawer-close:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 11%, transparent); transform: translateY(-1px); }
.drawer-close:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.drawer-close b { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); font-size: 19px; line-height: 1; }
.package-drawer-body { min-width: 0; }
.package-drawer .package-detail,
.package-drawer .package-detail.reverse {
    display: block;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.package-drawer .detail-visual { display: none; }
.package-drawer .detail-content { padding: 20px 0 0; }
.package-drawer .detail-heading { max-width: 980px; }
.package-drawer .detail-heading h2 { max-width: 930px; }
.package-drawer .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 34px; }
.package-drawer .detail-bottom { margin-top: 18px; }

@keyframes drawer-reveal {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

.details-section { display: none; }
.detail-list { display: grid; gap: 48px; }
.package-detail {
    --accent: #dfe9ee;
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 42px;
    align-items: stretch;
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(5, 38, 54, 0.94), rgba(2, 16, 23, 0.92));
    box-shadow: var(--shadow);
    scroll-margin-top: 112px;
}
.package-detail.gold { --accent: #efbd49; }
.package-detail.platinum { --accent: #91e9ff; border-color: rgba(145, 233, 255, 0.42); }
.package-detail.signature { --accent: #c99dff; }
.package-detail.reverse .detail-visual { order: 2; }
.detail-visual { min-width: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 23px; background: var(--dark); }
.detail-visual img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: top center; }
.detail-content { min-width: 0; display: flex; flex-direction: column; padding: 16px 12px 8px; }
.tier-name { display: inline-flex; align-items: center; gap: 11px; color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.tier-name::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.detail-heading h2 { margin: 16px 0 18px; font-size: clamp(32px, 3.5vw, 50px); }
.detail-heading p { font-size: 16px; line-height: 1.65; }
.included-note { margin: 24px 0 3px; padding: 15px 17px; border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent); border-radius: 15px; background: color-mix(in srgb, var(--accent) 9%, transparent); color: var(--white); font-size: 13px; }
.feature-list { display: grid; gap: 0; margin-top: 22px; list-style: none; }
.feature-list li { position: relative; padding: 14px 0 14px 29px; border-bottom: 1px solid rgba(215, 234, 243, 0.1); }
.feature-list li::before { content: ""; position: absolute; left: 4px; top: 24px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 15px var(--accent); }
.feature-list strong, .feature-list span { display: block; }
.feature-list strong { font-size: 15px; }
.feature-list span { margin-top: 4px; color: var(--soft); font-size: 13px; line-height: 1.55; }
.detail-bottom { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-top: auto; padding-top: 28px; }
.detail-price small, .detail-price strong { display: block; }
.detail-price small { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; }
.detail-price strong { margin-top: 7px; color: var(--accent); font-size: clamp(30px, 3vw, 43px); line-height: 1; letter-spacing: -0.04em; }
.package-detail.signature .detail-price strong { font-size: clamp(25px, 2.6vw, 36px); }

.comparison-section { border-block: 1px solid var(--line); background: rgba(1, 17, 25, 0.48); }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
table { width: 100%; min-width: 850px; border-collapse: collapse; background: rgba(3, 28, 40, 0.9); }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: center; font-size: 13px; }
thead th { position: sticky; top: 0; background: #082b3c; color: var(--white); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
th:first-child { width: 38%; text-align: left; }
tbody th { color: var(--soft); font-weight: 700; }
tbody td { color: #ccebf6; font-weight: 800; }
.price-row th, .price-row td { border-bottom: 0; color: var(--white); font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-grid article { position: relative; min-width: 0; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); }
.process-grid article > span { position: absolute; right: 20px; top: 14px; color: rgba(255, 255, 255, 0.08); font-size: 72px; font-weight: 900; letter-spacing: -0.08em; }
.process-grid h3 { position: relative; margin: 46px 0 12px; font-size: 25px; }
.process-grid p { position: relative; font-size: 14px; }

.faq-section { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 58px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: rgba(5, 38, 54, 0.73); overflow: hidden; }
.faq-list summary { position: relative; padding: 20px 56px 20px 21px; cursor: pointer; list-style: none; color: var(--white); font-size: 15px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--cyan-light); font-size: 25px; font-weight: 500; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 21px 21px; font-size: 14px; }

.final-cta { padding: 0 0 92px; }
.final-cta-box { display: grid; grid-template-columns: 1.3fr 0.7fr; align-items: center; gap: 34px; padding: clamp(30px, 5vw, 58px); border: 1px solid rgba(40, 184, 245, 0.29); border-radius: 30px; background: radial-gradient(circle at 90% 0, rgba(40, 184, 245, 0.19), transparent 35%), var(--panel); box-shadow: var(--shadow); }
.final-cta h2 { margin: 16px 0; font-size: clamp(32px, 4vw, 53px); }
.final-cta p { max-width: 760px; }
.final-actions { display: grid; gap: 12px; }

footer { padding: 40px 0; border-top: 1px solid var(--line); color: var(--soft); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 15px; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--cyan-light); }
footer p { color: var(--muted); font-size: 12px; }

.modal { position: fixed; inset: 0; z-index: 1500; display: none; align-items: center; justify-content: center; padding: 22px; background: rgba(1, 17, 25, 0.86); backdrop-filter: blur(12px); }
.modal.active { display: flex; }
.modal-content { position: relative; width: min(780px, 100%); max-height: 86vh; overflow: auto; padding: clamp(28px, 5vw, 46px); border: 1px solid rgba(40, 184, 245, 0.3); border-radius: 28px; background: linear-gradient(145deg, var(--navy), var(--petrol)); box-shadow: 0 35px 100px rgba(0, 0, 0, 0.58); }
.modal-content h2 { margin-bottom: 22px; font-size: clamp(30px, 4vw, 44px); }
.modal-close { position: absolute; right: 16px; top: 16px; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, 0.19); border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: var(--white); font-size: 27px; cursor: pointer; }
.legal-text p { margin-bottom: 14px; color: var(--soft); }
.legal-text strong { color: var(--white); }
.legal-text a { color: var(--cyan-light); text-decoration: underline; }

@media (max-width: 1120px) {
    .nav-links { gap: 14px; font-size: 13px; }
    .nav-panel { gap: 18px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 900px; }
    .hero-visual { max-width: 920px; }
    .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .package-card p { min-height: 48px; }
}

@media (max-width: 920px) {
    html { scroll-padding-top: 78px; }
    .nav-shell { min-height: 70px; }
    .brand img { width: 48px; height: 48px; }
    .menu-toggle { display: inline-flex; }
    .nav-panel { position: absolute; left: 20px; right: 20px; top: calc(100% + 9px); display: none; flex-direction: column; align-items: stretch; gap: 17px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #071c27; box-shadow: var(--shadow); }
    .nav-panel.is-open { display: flex; }
    .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-links a { display: block; padding: 13px 5px; border-bottom: 1px solid var(--line); }
    .nav-links a::after { display: none; }
    .nav-cta { width: 100%; }
    .hero { padding-top: 58px; }
    .fact-strip { grid-template-columns: repeat(2, 1fr); }
    .package-detail, .package-detail.reverse { grid-template-columns: 1fr; }
    .package-detail.reverse .detail-visual { order: initial; }
    .detail-visual { max-height: 760px; }
    .detail-visual img { min-height: 0; }
    .package-drawer .feature-list { grid-template-columns: 1fr; }
    .faq-grid, .final-cta-box { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .final-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, var(--max)); }
    .brand span { font-size: 14px; }
    .whatsapp { width: 54px; height: 54px; padding: 0; display: grid; place-items: center; overflow: hidden; color: transparent; }
    .whatsapp::after { content: "WA"; color: var(--white); font-size: 12px; }
    .hero { padding-top: 42px; }
    .hero-grid { gap: 34px; }
    .hero-copy h1 { font-size: clamp(41px, 13vw, 62px); overflow-wrap: anywhere; }
    .hero-actions, .final-actions { display: grid; grid-template-columns: 1fr; }
    .fact-strip { grid-template-columns: 1fr; }
    .packages-section, .comparison-section, .process-section, .faq-section { padding: 68px 0; }
    .package-grid { grid-template-columns: 1fr; }
    .package-card p { min-height: 0; }
    .package-drawer { margin-top: 2px; }
    .drawer-shell { padding: 20px; border-radius: 23px; }
    .drawer-toolbar { align-items: flex-start; }
    .drawer-close { padding-left: 13px; }
    .drawer-close span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
    .package-drawer .detail-content { padding-top: 15px; }
    .price-note { text-align: left; }
    .package-detail { padding: 16px; border-radius: 24px; }
    .detail-content { padding: 12px 4px 6px; }
    .detail-bottom { align-items: stretch; flex-direction: column; }
    .detail-bottom .btn { width: 100%; }
    .section-heading h2, .detail-heading h2 { overflow-wrap: anywhere; }
    .final-cta { padding-bottom: 68px; }
    .final-cta-box { border-radius: 24px; }
    .footer-grid { align-items: flex-start; flex-direction: column; }
}

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