:root {
    --navy: #081d3a;
    --deep-blue: #12355b;
    --blue-soft: #dff2ff;
    --sky: #eef8ff;
    --sand: #fff4df;
    --sand-deep: #f7dfb7;
    --orange: #f97316;
    --orange-dark: #d95c0d;
    --gold: #fdba32;
    --teal: #0e9f9a;
    --white: #ffffff;
    --ink: #132238;
    --slate: #516173;
    --muted: #7b8797;
    --line: #d9e5f0;
    --surface: #f7fbff;
    --surface-warm: #fffbf4;
    --shadow-sm: 0 10px 25px rgba(8, 29, 58, 0.08);
    --shadow-md: 0 22px 55px rgba(8, 29, 58, 0.14);
    --shadow-lg: 0 30px 80px rgba(8, 29, 58, 0.2);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.45);
    outline-offset: 4px;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: 4.35rem;
    font-weight: 950;
}

h2 {
    font-size: 2.75rem;
    font-weight: 930;
}

h3 {
    font-size: 1.1rem;
    font-weight: 900;
}

p {
    color: var(--slate);
}

.skip-link {
    position: absolute;
    top: -70px;
    left: 16px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
}

.skip-link:focus {
    top: 14px;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(217, 229, 240, 0.82);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    order: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--gold);
    background:
        radial-gradient(circle at 30% 20%, rgba(253, 186, 50, 0.35), transparent 36%),
        linear-gradient(135deg, var(--navy), var(--deep-blue));
    box-shadow: 0 12px 28px rgba(8, 29, 58, 0.18);
}

.brand-mark svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

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

.brand strong {
    color: var(--navy);
    font-size: 1.02rem;
    line-height: 1.1;
}

.brand small {
    margin-top: 3px;
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 900;
}

.site-nav {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex: 1 1 auto;
    font-size: 0.91rem;
    font-weight: 850;
}

.site-nav a {
    padding: 10px 11px;
    border-radius: var(--radius);
    color: #344256;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--navy);
    background: var(--sky);
}

.header-actions {
    order: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.header-whatsapp {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.24);
    font-weight: 950;
}

.header-whatsapp:hover {
    background: var(--orange-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    margin: 5px auto;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 58px 0 50px;
    background:
        radial-gradient(circle at 78% 16%, rgba(253, 186, 50, 0.22), transparent 28%),
        radial-gradient(circle at 7% 72%, rgba(14, 159, 154, 0.14), transparent 30%),
        linear-gradient(135deg, #f5fbff 0%, #eef8ff 52%, #fff7e8 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 8% -16% auto 62%;
    height: 420px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    transform: rotate(-18deg);
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -220px 35%;
    height: 360px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(8, 29, 58, 0.08));
    transform: rotate(-6deg);
    z-index: -1;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    gap: 52px;
    align-items: center;
}

.hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
}

.eyebrow {
    width: fit-content;
    margin: 0 0 14px;
    padding: 7px 11px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 999px;
    color: var(--orange-dark);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-subtitle {
    max-width: 640px;
    margin: 20px 0 0;
    font-size: 1.18rem;
}

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

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 950;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(8, 29, 58, 0.1);
    box-shadow: 0 12px 28px rgba(8, 29, 58, 0.08);
}

.btn-light,
.btn-glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
}

.btn-small {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.9rem;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.trust-chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(18, 53, 91, 0.12);
    border-radius: 999px;
    color: var(--deep-blue);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 18px rgba(8, 29, 58, 0.05);
    font-size: 0.88rem;
    font-weight: 850;
}

.trust-chips span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.hero-stats {
    align-self: start;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.hero-stats div {
    min-height: 94px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 12px 30px rgba(8, 29, 58, 0.07);
}

.hero-stats dt {
    color: var(--navy);
    font-size: 1.42rem;
    font-weight: 950;
}

.hero-stats dd {
    margin: 2px 0 0;
    color: var(--slate);
    font-size: 0.88rem;
}

.hero-media {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-height: 500px;
}

.hero-main-image {
    position: absolute;
    inset: 26px 0 0 56px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: var(--deep-blue);
    box-shadow: var(--shadow-lg);
}

.hero-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 29, 58, 0) 38%, rgba(8, 29, 58, 0.66) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

.hero-thumb {
    position: absolute;
    overflow: hidden;
    border: 8px solid var(--white);
    border-radius: var(--radius);
    background: var(--sky);
    box-shadow: var(--shadow-md);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-thumb-one {
    left: 0;
    top: 0;
    width: 190px;
    height: 150px;
}

.hero-thumb-two {
    right: 22px;
    bottom: 12px;
    width: 210px;
    height: 160px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    max-width: 220px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(8, 29, 58, 0.78);
    box-shadow: 0 18px 46px rgba(8, 29, 58, 0.22);
    backdrop-filter: blur(14px);
}

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

.floating-card span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.floating-card strong {
    margin-top: 3px;
    font-size: 0.98rem;
    line-height: 1.24;
}

.floating-card-primary {
    left: 34px;
    bottom: 72px;
}

.floating-card-secondary {
    top: 112px;
    right: -4px;
}

.floating-card-tertiary {
    right: 156px;
    bottom: 0;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.92);
}

.floating-card-tertiary span {
    color: var(--orange-dark);
}

.slider-dots {
    position: absolute;
    left: 22px;
    top: 22px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.slider-dots span.active {
    width: 26px;
    background: var(--gold);
}

.section {
    padding: 86px 0;
}

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

.section-heading p {
    margin: 13px 0 0;
}

.section-heading.split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 13px;
    border-radius: var(--radius);
    color: var(--orange-dark);
    background: rgba(249, 115, 22, 0.08);
    font-weight: 950;
}

.services-section {
    background:
        linear-gradient(180deg, var(--white), var(--surface));
}

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

.service-card,
.info-panel,
.contact-card,
.form-placeholder,
.trust-box {
    border: 1px solid rgba(217, 229, 240, 0.86);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 214px;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -42px -48px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.22);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: var(--radius);
    color: var(--orange);
    background:
        radial-gradient(circle at 30% 24%, rgba(253, 186, 50, 0.35), transparent 36%),
        var(--sky);
}

.service-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.service-card p,
.info-panel p,
.contact-card p {
    margin: 10px 0 0;
}

.package-preview,
.why-section {
    background:
        radial-gradient(circle at 86% 8%, rgba(253, 186, 50, 0.18), transparent 24%),
        var(--surface-warm);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.package-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: var(--radius);
    background: var(--deep-blue);
    box-shadow: var(--shadow-md);
    transition: transform 190ms ease, box-shadow 190ms ease;
}

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

.package-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    background: var(--sky);
    transition: transform 700ms ease;
}

.package-card:hover img {
    transform: scale(1.05);
}

.package-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 29, 58, 0.04) 12%, rgba(8, 29, 58, 0.86) 100%),
        linear-gradient(90deg, rgba(8, 29, 58, 0.34), rgba(8, 29, 58, 0));
}

.package-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px;
}

.package-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--gold);
    background: rgba(8, 29, 58, 0.56);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.package-content h2,
.package-content h3,
.package-content p {
    color: var(--white);
}

.package-content p {
    min-height: 76px;
    margin: 9px 0 18px;
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 38px;
    align-items: start;
}

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

.why-list article {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(217, 229, 240, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.why-list span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: var(--radius);
    color: var(--orange-dark);
    background: rgba(249, 115, 22, 0.1);
    font-weight: 950;
}

.why-list p {
    margin: 9px 0 0;
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(253, 186, 50, 0.34), transparent 28%),
        linear-gradient(135deg, var(--navy), var(--deep-blue) 58%, #184c73);
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: auto -5% -70% 42%;
    height: 260px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.22);
    transform: rotate(-8deg);
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.cta-band .eyebrow {
    color: var(--gold);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.cta-band h2,
.cta-band p {
    color: var(--white);
}

.cta-band p {
    max-width: 700px;
    margin: 14px 0 0;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(8, 29, 58, 0.04);
}

.faq-list summary {
    position: relative;
    cursor: pointer;
    padding: 19px 52px 19px 20px;
    color: var(--navy);
    font-weight: 950;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange-dark);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0;
    text-align: center;
    background:
        radial-gradient(circle at 20% 18%, rgba(253, 186, 50, 0.2), transparent 24%),
        radial-gradient(circle at 82% 26%, rgba(14, 159, 154, 0.14), transparent 24%),
        linear-gradient(135deg, #f7fbff 0%, #eef8ff 55%, #fff4df 100%);
}

.page-hero .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.page-hero h1 {
    margin: 0 auto;
    font-size: 3.35rem;
}

.page-hero p:not(.eyebrow) {
    max-width: 740px;
    margin: 18px auto 0;
    font-size: 1.08rem;
}

.page-actions {
    justify-content: center;
}

.all-packages .package-content p {
    min-height: 0;
}

.info-panel {
    padding: 26px;
}

.info-panel.wide {
    grid-column: span 2;
}

.story-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.story-grid p {
    margin: 16px 0 0;
}

.trust-box,
.form-placeholder {
    padding: 28px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--slate);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
}

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

.contact-card {
    padding: 24px;
}

.contact-card a {
    color: var(--orange-dark);
    font-weight: 950;
}

.placeholder-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer {
    padding: 62px 0 104px;
    color: rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(circle at 86% 0%, rgba(249, 115, 22, 0.16), transparent 28%),
        var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr 1fr 0.95fr 0.75fr;
    gap: 28px;
}

.site-footer .brand strong,
.site-footer h2 {
    color: var(--white);
}

.brand-footer .brand-mark {
    background: rgba(255, 255, 255, 0.1);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-row a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    font-weight: 950;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: none;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 34px rgba(8, 29, 58, 0.15);
}

.mobile-cta a {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 950;
}

.mobile-cta a:last-child {
    color: var(--white);
    background: var(--orange);
}

.js-enabled [data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
    }

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

    .site-nav a {
        padding: 12px 13px;
    }

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

    .hero-media {
        grid-column: auto;
        grid-row: auto;
        min-height: 450px;
    }

    .hero-main-image {
        inset: 30px 0 0 42px;
    }

    .services-grid,
    .package-grid,
    .content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    body {
        padding-bottom: 60px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2.05rem;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand-mark {
        width: 39px;
        height: 39px;
    }

    .brand strong {
        font-size: 0.98rem;
    }

    .brand small {
        font-size: 0.72rem;
    }

    .header-whatsapp {
        display: none;
    }

    .hero {
        padding: 26px 0 22px;
    }

    .hero-grid {
        gap: 16px;
    }

    .hero-subtitle,
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-actions,
    .page-actions,
    .cta-actions {
        flex-direction: column;
        margin-top: 24px;
    }

    .btn {
        width: 100%;
        min-height: 52px;
    }

    .trust-chips {
        gap: 8px;
    }

    .trust-chips span {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }

    .hero-media {
        min-height: 205px;
        margin-top: 2px;
    }

    .hero-main-image {
        inset: 0;
        border-width: 7px;
    }

    .hero-thumb {
        display: none;
    }

    .floating-card {
        max-width: none;
        padding: 11px 12px;
    }

    .floating-card-primary {
        left: 14px;
        right: 14px;
        bottom: 18px;
    }

    .floating-card-secondary {
        display: none;
    }

    .floating-card-tertiary {
        display: none;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        min-height: 86px;
    }

    .section,
    .page-hero {
        padding: 58px 0;
    }

    .section-heading.split,
    .cta-grid,
    .why-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-heading.split {
        align-items: start;
    }

    .services-grid,
    .package-grid,
    .content-grid,
    .why-list,
    .contact-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .why-list article {
        min-height: auto;
    }

    .package-card {
        min-height: 420px;
    }

    .package-content p {
        min-height: 0;
    }

    .page-hero h1 {
        font-size: 2.35rem;
    }

    .info-panel.wide {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .mobile-cta {
        display: grid;
    }
}

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

    .js-enabled [data-animate] {
        opacity: 1;
        transform: none;
    }
}
