:root {
    --background: #f9f9fc;
    --surface: #ffffff;
    --surface-low: #f2f5fa;
    --primary: #001e40;
    --primary-container: #003366;
    --secondary: #00658d;
    --secondary-container: #2dbcfe;
    --text: #1a1c1e;
    --text-soft: #5b6780;
    --shadow-soft: 0 20px 40px rgba(0, 30, 64, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 200;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--secondary-container);
    color: #001e2d;
    font-weight: 700;
    transition: top 200ms ease-out;
}

.skip-link:focus {
    top: 1rem;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding-top: 0.55rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-logo {
    display: block;
    object-fit: contain;
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-container), var(--primary-container));
}

.brand-logo-plain {
    width: auto;
    height: 7rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.94rem;
}

.site-nav a:hover { color: white; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0 1.35rem;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 400ms ease-out, box-shadow 400ms ease-out, background-color 400ms ease-out;
}

.button:hover { transform: translateY(-2px); }
.button-small { min-height: 2.6rem; background: var(--primary); color: white; }
.button-primary { background: var(--secondary-container); color: #001e2d; box-shadow: 0 18px 32px rgba(45, 188, 254, 0.24); }
.button-secondary { background: rgba(255, 255, 255, 0.12); color: white; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); }
.button:focus-visible,
.site-nav a:focus-visible,
.faq-question:focus-visible,
.brand:focus-visible {
    outline: 2px solid var(--secondary-container);
    outline-offset: 4px;
}

.section { padding: 6.5rem 0; }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8.5rem 0 5rem;
    color: white;
    background:
        linear-gradient(135deg, rgba(0, 30, 64, 0.9), rgba(0, 51, 102, 0.7)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1000'%3E%3Cdefs%3E%3ClinearGradient id='sea' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23175a8d'/%3E%3Cstop offset='38%25' stop-color='%233d91c6'/%3E%3Cstop offset='68%25' stop-color='%2347aede'/%3E%3Cstop offset='100%25' stop-color='%23001e40'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='1000' fill='url(%23sea)'/%3E%3Cpath d='M0 620 C180 580 320 590 470 660 C640 740 860 760 1120 660 C1300 592 1450 588 1600 620 V1000 H0 Z' fill='%2367c8ff' fill-opacity='.28'/%3E%3Cpath d='M0 700 C180 670 380 700 560 770 C730 836 940 832 1180 742 C1360 674 1490 670 1600 705 V1000 H0 Z' fill='%23001935' fill-opacity='.36'/%3E%3Crect y='690' width='1600' height='310' fill='%23001630' fill-opacity='.4'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(45, 188, 254, 0.18), transparent 20%),
        radial-gradient(circle at 78% 12%, rgba(255, 220, 196, 0.12), transparent 18%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
    gap: 2rem;
    align-items: end;
}

.hero-copy { padding-left: clamp(0rem, 3vw, 2.5rem); }

.eyebrow {
    margin: 0 0 1rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.64);
}

.hero h1,
.section-heading h2,
.services-copy h2,
.growth-copy h2,
.cta-panel h2,
.trust-intro h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.02em;
    line-height: 0.96;
}

.hero h1 {
    max-width: 9ch;
    font-size: clamp(3.6rem, 9vw, 6.7rem);
    text-transform: uppercase;
}

.hero h1 em {
    display: block;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
}

.hero h1 span { display: block; color: var(--secondary-container); }

.hero-text {
    max-width: 39rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    text-wrap: pretty;
}

.hero-glass {
    margin-top: 2rem;
    max-width: 33rem;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.3rem;
}

.hero-card {
    justify-self: end;
    max-width: 25rem;
    padding: 1.6rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    color: var(--text);
}

.editorial-photo {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transform: perspective(1100px) rotateX(0deg) rotateY(0deg) translateY(0);
    transition: transform 400ms ease-out, box-shadow 400ms ease-out;
    transform-style: preserve-3d;
}

.editorial-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,30,64,0.14));
    pointer-events: none;
}

.editorial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 400ms ease-out;
}

.editorial-photo:hover {
    transform: perspective(1100px) rotateX(3deg) rotateY(-5deg) translateY(-6px);
    box-shadow: 0 28px 54px rgba(0, 30, 64, 0.16);
}

.editorial-photo:hover img {
    transform: scale(1.06);
}

.editorial-photo-hero {
    margin-bottom: 1.15rem;
    aspect-ratio: 4 / 5;
}

.mini-title,
.section-kicker,
.trust-label {
    margin: 0 0 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
}

.hero-card ul { margin: 0; padding-left: 1rem; color: var(--text-soft); }

.hero-card-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 1.35rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: var(--surface);
}

.hero-card-badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    color: var(--primary);
}

.section-heading,
.trust-intro {
    max-width: 44rem;
    margin: 0 auto 2.25rem 0;
}

.trust-intro,
.trust-shell { text-align: center; }
.trust-intro { margin-left: auto; margin-right: auto; }

.section-heading h2,
.services-copy h2,
.growth-copy h2,
.cta-panel h2,
.trust-intro h2 {
    font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.section-heading p,
.services-copy p,
.growth-copy p,
.cta-panel p,
.service-list li p,
.benefit-card p,
.trust-caption,
.faq-answer p { color: var(--text-soft); text-wrap: pretty; }

.benefits-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
}

.benefits-stack,
.benefits-side { display: grid; gap: 1rem; }

.benefit-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-low);
    transition: transform 400ms ease-out, background-color 400ms ease-out, box-shadow 400ms ease-out;
}

.benefit-card:hover,
.service-photo:hover,
.trust-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.benefit-card.featured {
    min-height: 14rem;
    color: white;
    background: radial-gradient(circle at 85% 18%, rgba(45, 188, 254, 0.16), transparent 18%), linear-gradient(135deg, #001e40, #003366);
}

.benefit-card.featured p,
.benefit-card.featured h3,
.benefit-card.featured .benefit-index { color: white; }

.benefit-card.sky { background: var(--secondary-container); color: #001e2d; }
.benefit-card.sky p,
.benefit-card.sky h3,
.benefit-card.sky .benefit-index { color: #001e2d; }
.benefit-card.soft { background: #f4f7fb; }

.benefit-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.14);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
}

.benefit-card h3,
.trust-card h3,
.service-list li h3 {
    margin: 0 0 0.65rem;
    font-family: "Manrope", sans-serif;
}

.services-band {
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    color: white;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
}

.service-photo {
    min-height: 30rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: stretch;
}

.editorial-photo-service {
    width: 100%;
    min-height: 30rem;
}

.service-list { display: grid; gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }

.service-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: start;
}

.service-icon {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-container);
}

.service-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.2;
}

.service-list li p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.gallery-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(45, 188, 254, 0.12), transparent 22%),
        radial-gradient(circle at 88% 80%, rgba(0, 51, 102, 0.08), transparent 24%),
        linear-gradient(180deg, #f6faff 0%, #eef5fb 100%);
}

.promotions-section {
    background:
        radial-gradient(circle at top left, rgba(45, 188, 254, 0.14), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.promotions-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 30rem);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}

.promotions-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.promotions-heading p:last-child,
.promotion-body p,
.promotions-empty p:last-child {
    color: var(--text-soft);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.promotion-card,
.promotions-empty {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.promotion-card {
    display: grid;
    min-height: 100%;
}

.promotion-media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #dfefff, #f7fbff);
}

.promotion-media img,
.promotion-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-body,
.promotions-empty {
    padding: 1.4rem;
}

.promotion-body h3,
.promotions-empty h3 {
    margin: 0 0 0.65rem;
    font-family: "Manrope", sans-serif;
}

.promotion-tag {
    margin: 0 0 0.8rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
}

.promotions-empty {
    max-width: 42rem;
}

.promotions-empty a {
    color: var(--primary);
    font-weight: 700;
}

.gallery-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 28rem);
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}

.gallery-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.gallery-heading p:last-child {
    margin: 0;
    color: var(--text-soft);
}

.gallery-mosaic {
    columns: 4 250px;
    column-gap: 1rem;
}

.gallery-card {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 1rem;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-soft);
    break-inside: avoid;
    transform: translateY(0) rotate(0deg);
    transition: transform 400ms ease-out, box-shadow 400ms ease-out, filter 400ms ease-out;
}

.gallery-card:nth-child(3n) {
    border-top-left-radius: 52px;
    border-bottom-right-radius: 52px;
}

.gallery-card:nth-child(4n) {
    border-top-right-radius: 54px;
    border-bottom-left-radius: 54px;
}

.gallery-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 500ms ease-out, filter 500ms ease-out;
}

.gallery-card-tall img {
    aspect-ratio: 4 / 6;
}

.gallery-card-wide img {
    aspect-ratio: 4 / 3;
}

.gallery-card-square img {
    aspect-ratio: 1 / 1;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 30%, rgba(0, 30, 64, 0.52) 100%);
    opacity: 0.95;
    transition: opacity 400ms ease-out;
    pointer-events: none;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(45, 188, 254, 0.38), rgba(45, 188, 254, 0));
    opacity: 0;
    transition: opacity 400ms ease-out, transform 400ms ease-out;
    transform: translate3d(0, 12px, 0);
}

.gallery-card figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: grid;
    gap: 0.18rem;
    color: white;
}

.gallery-card figcaption span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.gallery-card figcaption strong {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    line-height: 1.1;
}

.gallery-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 28px 54px rgba(0, 30, 64, 0.16);
}

.gallery-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.02);
}

.gallery-card:hover::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.certificates-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.certificates-heading {
    max-width: 52rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.certificate-card {
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    transition: transform 400ms ease-out, box-shadow 400ms ease-out;
}

.certificate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px rgba(0, 30, 64, 0.14);
}

.certificate-card img {
    width: 100%;
    border-radius: 18px;
}

.trust-card {
    max-width: 58rem;
    margin: 0 auto;
    padding: 2.7rem 2rem;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 400ms ease-out, background-color 400ms ease-out, box-shadow 400ms ease-out;
}

.trust-card h3 { font-size: clamp(2rem, 4vw, 3rem); }

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.trust-pillars span {
    padding: 1rem 0.75rem;
    border-radius: 16px;
    background: var(--surface-low);
    color: var(--secondary);
    font-weight: 600;
}

.trust-caption { margin-top: 1.25rem; font-size: 0.94rem; }

.growth-wrap { padding-top: 1rem; }

.growth-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.9fr);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary), var(--primary-container));
    box-shadow: var(--shadow-soft);
}

.growth-copy,
.growth-visual { padding: 2.25rem; }

.growth-copy { color: white; }
.growth-copy p { color: rgba(255, 255, 255, 0.72); }
.growth-features { display: grid; gap: 0.8rem; margin-top: 1.75rem; }

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
}

.feature-pill::before {
    content: "";
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    background: var(--secondary-container);
    flex: 0 0 auto;
}

.growth-visual {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 20% 20%, rgba(45, 188, 254, 0.24), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.growth-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0, 30, 64, 0.36), rgba(0, 30, 64, 0.36)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Crect width='800' height='600' fill='%23194972'/%3E%3Ccircle cx='180' cy='240' r='90' fill='%234ea7e8' fill-opacity='.28'/%3E%3Ccircle cx='420' cy='180' r='84' fill='%2367c8ff' fill-opacity='.22'/%3E%3Ccircle cx='570' cy='260' r='94' fill='%23ffffff' fill-opacity='.08'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.75;
}

.growth-meter {
    position: relative;
    z-index: 1;
    max-width: 16rem;
    margin: 4.5rem auto 0;
    padding: 1.4rem;
    text-align: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
}

.growth-meter strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 2.1rem;
    color: var(--secondary-container);
}

.faq-shell { max-width: 48rem; margin: 0 auto; }
.faq-list { display: grid; gap: 0.85rem; margin-top: 2rem; }

.faq-item {
    border-radius: 20px;
    background: #f5f7fb;
    transition: transform 400ms ease-out, background-color 400ms ease-out, box-shadow 400ms ease-out;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.3rem;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-weight: 600;
    cursor: pointer;
}

.faq-plus {
    position: relative;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transform: translate(-50%, -50%);
    transition: opacity 400ms ease-out;
}

.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-plus::after { opacity: 0; }
.faq-answer { padding: 0 1.3rem 1.2rem; }

.cta-section { padding-bottom: 0; }

.cta-panel {
    padding: 5.5rem 0;
    text-align: center;
    color: white;
    background:
        linear-gradient(180deg, rgba(0, 30, 64, 0.72), rgba(0, 30, 64, 0.95)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 600'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23001e40'/%3E%3Cstop offset='100%25' stop-color='%23003366'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='600' fill='url(%23g)'/%3E%3Cpath d='M0 280 C160 240 340 360 530 318 C715 277 790 173 945 190 C1122 210 1230 371 1428 329 C1504 312 1550 291 1600 260 V600 H0 Z' fill='%232dbcfe' fill-opacity='.2'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.cta-panel p {
    max-width: 40rem;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.72);
}

.cta-panel .section-kicker { color: rgba(255, 255, 255, 0.66); }

.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0 2rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer a:hover { color: white; }

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: white;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.3);
    font-weight: 700;
    transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.38);
}

.whatsapp-float svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

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

@media (hover: none) {
    .editorial-photo:hover,
    .gallery-card:hover,
    .benefit-card:hover,
    .service-photo:hover,
    .trust-card:hover,
    .faq-item:hover {
        transform: none;
        box-shadow: var(--shadow-soft);
        background: inherit;
    }

    .editorial-photo:hover img,
    .gallery-card:hover img {
        transform: none;
        filter: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .benefits-grid,
    .services-layout,
    .growth-card { grid-template-columns: 1fr; }

    .hero-card { justify-self: start; max-width: 32rem; }
    .benefits-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-pillars { grid-template-columns: repeat(2, 1fr); }
    .gallery-heading { grid-template-columns: 1fr; }
    .promotions-heading { grid-template-columns: 1fr; }
    .promotions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .certificates-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .site-header { padding-top: 0.4rem; }

    .footer-inner,
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav,
    .button-small { display: none; }

    .header-inner {
        justify-content: center;
        padding: 0.35rem 0.85rem;
    }

    .brand-logo-plain { height: 4.65rem; }
    .hero {
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 3.5rem;
    }
    .hero-copy { padding-left: 0; }
    .hero-grid { gap: 1.35rem; }
    .hero h1 {
        max-width: none;
        font-size: clamp(2.8rem, 12vw, 4.2rem);
        line-height: 0.98;
    }
    .hero-glass {
        max-width: 100%;
        padding: 1.1rem;
    }
    .hero-text {
        font-size: 0.96rem;
    }

    .hero-glass,
    .hero-card,
    .trust-card,
    .growth-copy,
    .growth-visual { padding: 1.35rem; }

    .hero-card {
        max-width: 100%;
        width: 100%;
    }

    .benefits-grid {
        gap: 0.85rem;
    }

    .benefits-side,
    .trust-pillars { grid-template-columns: 1fr; }

    .service-photo { min-height: 20rem; }
    .editorial-photo-service { min-height: 20rem; }
    .services-copy h2,
    .section-heading h2,
    .trust-intro h2,
    .growth-copy h2,
    .cta-panel h2,
    .promotions-heading h2,
    .gallery-heading h2 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }
    .gallery-mosaic { columns: 2 160px; column-gap: 0.75rem; }
    .gallery-card { margin-bottom: 0.75rem; }
    .gallery-card figcaption {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
    }
    .whatsapp-float {
        right: 0.8rem;
        bottom: 0.8rem;
        padding: 0.82rem 0.95rem;
    }
    .section { padding: 4.25rem 0; }
    .cta-panel { padding: 3.5rem 0; }
    .footer-inner { text-align: center; }
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1.1rem), var(--container));
    }

    .header-inner {
        border-radius: 26px;
    }

    .brand-logo-plain {
        height: 4.25rem;
    }

    .hero {
        padding-top: 7.2rem;
    }

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

    .hero-card ul {
        padding-left: 0.95rem;
        font-size: 0.95rem;
    }

    .benefit-card,
    .faq-item,
    .trust-card {
        border-radius: 18px;
    }

    .gallery-heading {
        gap: 1rem;
    }

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

    .gallery-mosaic {
        columns: 1;
    }

    .gallery-card,
    .gallery-card:nth-child(3n),
    .gallery-card:nth-child(4n) {
        border-radius: 24px;
    }

    .certificate-card {
        padding: 0.75rem;
        border-radius: 22px;
    }

    .growth-meter {
        margin-top: 3rem;
        max-width: 100%;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
        justify-content: center;
        padding: 0;
    }

    .footer-inner {
        padding-top: 1.1rem;
    }
}
