:root {
    --dark: #071214;
    --dark-2: #081A1D;
    --dark-3: #102A2E;
    --ink: #0b171a;
    --muted: #5f6b70;
    --line: #dce7ea;
    --soft: #F7FAFB;
    --white: #ffffff;
    --teal: #18B8C8;
    --teal-dark: #0E7C86;
    --shadow: 0 22px 70px rgba(7, 18, 20, .14);
    --shadow-soft: 0 12px 36px rgba(7, 18, 20, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: var(--soft);
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); }
h1, h2, h3 { font-family: Poppins, Inter, sans-serif; line-height: 1.08; margin: 0 0 18px; color: inherit; }
h1 { font-size: clamp(42px, 5.6vw, 76px); letter-spacing: 0; }
h2 { font-size: clamp(30px, 3.6vw, 48px); letter-spacing: 0; }
h3 { font-size: 21px; }
p { margin: 0 0 18px; color: var(--muted); }
.text-accent { color: var(--teal); }
.eyebrow {
    display: inline-flex;
    color: var(--teal);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 14px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(24, 184, 200, .28); }
.btn-primary { background: linear-gradient(135deg, var(--teal), #65e6f0); color: var(--dark); box-shadow: 0 14px 34px rgba(24, 184, 200, .24); }
.btn-primary:hover { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: var(--white); }
.btn-secondary { border-color: rgba(255,255,255,.32); color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--dark); }
.btn-small { min-height: 44px; padding: 12px 22px; background: linear-gradient(135deg, var(--teal), #65e6f0); color: var(--dark); font-size: 14px; font-weight: 700; }
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px !important;
    min-width: 140px !important;
    padding: 0 34px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #18B8C8 0%, #0E7C86 100%);
    color: var(--white) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none;
    border: 1px solid rgba(24, 184, 200, .55);
    box-shadow: 0 10px 26px rgba(24, 184, 200, .35);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease, color .3s ease;
    white-space: nowrap !important;
    text-align: center !important;
}
.header-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #20D6E8 0%, #1097A3 100%);
    box-shadow: 0 14px 32px rgba(24, 184, 200, .45);
    color: var(--white) !important;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: 96px !important;
    padding: 8px 0;
    background: #061719;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(24, 184, 200, .12);
    animation: headerDrop .65s ease both;
    transition: min-height .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { min-height: 84px; background: rgba(6, 23, 25, .94); backdrop-filter: blur(14px); box-shadow: 0 12px 35px rgba(0,0,0,.22); }
.header-inner { min-height: 96px !important; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand,
.header-logo,
.site-logo,
.navbar-brand,
.logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    overflow: visible !important;
    flex-shrink: 0 !important;
}
.brand img,
.header-logo img,
.site-logo img,
.navbar-brand img,
.logo img {
    width: auto !important;
    height: auto !important;
    max-height: 76px !important;
    max-width: 240px !important;
    object-fit: contain !important;
    object-position: center;
    display: block !important;
}
.main-nav { display: flex; align-items: center; gap: 18px; color: var(--white); font-size: 14px; font-weight: 700; }
.main-nav > a, .dropdown > a { padding: 10px 0; transition: color .2s ease; }
.main-nav a:hover, .main-nav a.active, .dropdown > a.active { color: var(--teal); }
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -20px;
    width: 330px;
    padding: 14px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ink); }
.dropdown-menu a:hover { background: var(--soft); color: var(--teal-dark); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 28px; height: 2px; background: var(--white); margin: 6px 0; transition: .25s ease; }

.hero, .inner-hero {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 18%, rgba(24,184,200,.22), transparent 30%),
        radial-gradient(circle at 12% 75%, rgba(24,184,200,.12), transparent 34%),
        linear-gradient(130deg, rgba(7,18,20,.98), rgba(16,42,46,.92));
    background-size: 120% 120%, 120% 120%, 100% 100%;
    animation: gradientDrift 12s ease-in-out infinite alternate;
    padding: 156px 0 86px;
    overflow: hidden;
}
.inner-hero { padding: 146px 0 72px; }
.hero-grid, .inner-hero-grid, .cta-grid, .contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: center; }
.hero p, .inner-hero p, .dark-section p, .site-footer p, .cta-section p { color: rgba(255,255,255,.76); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-visual, .inner-hero-image, .image-card { position: relative; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid rgba(24,184,200,.16); }
.hero-visual::after, .inner-hero-image::after, .image-card::after, .service-media::after, .blog-media::after, .featured-blog-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(7,18,20,.12), rgba(24,184,200,.16));
    opacity: .78;
    transition: opacity .35s ease;
}
.hero-visual:hover::after, .inner-hero-image:hover::after, .image-card:hover::after, .service-card:hover .service-media::after, .blog-card:hover .blog-media::after, .featured-blog-card:hover .featured-blog-media::after { opacity: .35; }
.hero-visual img, .inner-hero-image img, .image-card img, .service-media img, .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: saturate(.9) contrast(1.04);
    transition: transform .55s ease, filter .55s ease;
}
.hero-visual { animation: floatVisual 6s ease-in-out infinite; }
.hero-visual:hover img, .inner-hero-image:hover img, .image-card:hover img, .service-card:hover .service-media img, .gallery-item:hover img { transform: scale(1.045); }
.hero-panel, .quote-card, .content-card, .quote-band {
    border-radius: 8px;
    padding: 30px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}
.hero-panel h2, .quote-card h2 { font-size: 28px; }

.quick-quote { margin-top: -34px; position: relative; z-index: 5; }
.quote-band { display: grid; grid-template-columns: .55fr 1.45fr; gap: 28px; align-items: center; }
.quote-band .lead-form { grid-template-columns: 1fr auto; align-items: end; }
.quote-band .form-grid { grid-template-columns: repeat(3, 1fr); }
.quote-band .lead-form > label { display: none; }
.section { padding: 92px 0; background: var(--white); }
.soft-section, .about-snapshot, .why-section, .faq-section { background: var(--soft); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-heading p { margin-left: auto; margin-right: auto; }
.section-actions { display: flex; justify-content: center; margin-top: 34px; }
.dark-section { background: linear-gradient(135deg, var(--dark), var(--dark-3)); color: var(--white); }
.highlight-section { position: relative; z-index: 4; padding-top: 74px; }
.highlight-grid, .service-grid, .package-grid, .testimonial-grid, .platform-grid, .gallery-grid, .stats-grid {
    display: grid;
    gap: 24px;
}
.highlight-grid { grid-template-columns: repeat(3, 1fr); }
.highlight-card, .service-card, .package-card, .testimonial-card, .contact-cards article {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.highlight-card:hover, .service-card:hover, .package-card:hover { transform: translateY(-8px); border-color: rgba(42,174,192,.55); box-shadow: var(--shadow); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { color: var(--ink); min-height: 340px; padding: 0; overflow: hidden; position: relative; }
.service-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--soft); position: relative; }
.service-card .card-icon, .service-card h3, .service-card p, .service-card strong { margin-left: 24px; margin-right: 24px; }
.card-icon { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 50%; background: var(--dark-3); color: var(--teal); font-weight: 900; margin-top: -27px; margin-bottom: 18px; position: relative; z-index: 2; border: 4px solid var(--white); }
.service-card strong { color: var(--teal-dark); }
.package-grid { grid-template-columns: repeat(4, 1fr); }
.package-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: var(--white); }
.package-card p, .package-card li { color: rgba(255,255,255,.72); }
.price { color: var(--teal) !important; font-weight: 900; }
.package-card ul { padding-left: 18px; margin: 20px 0 26px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checklist, .feature-stack { display: grid; gap: 16px; }
.checklist span, .feature-stack div { border-radius: 10px; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); font-weight: 800; box-shadow: var(--shadow-soft); }
.dark-section .checklist span, .dark-section .feature-stack div { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.floating-list { position: absolute; inset: auto 22px 22px; grid-template-columns: repeat(2, 1fr); }
.floating-list span { padding: 12px 14px; font-size: 13px; }
.stats {
    background:
        radial-gradient(circle at 50% 0, rgba(101,230,240,.22), transparent 34%),
        linear-gradient(135deg, #071214 0%, #0E7C86 48%, #18B8C8 100%);
    padding: 38px 0;
    color: var(--white);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 -1px 0 rgba(7,18,20,.22);
}
.stats-grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stats strong { display: block; font-family: Poppins, sans-serif; font-size: 44px; line-height: 1; color: var(--white); text-shadow: 0 10px 28px rgba(0,0,0,.22); }
.stats span { font-weight: 800; color: rgba(255,255,255,.88); }
.book-visual {
    min-height: 430px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, #0a1215, #153b43 56%, #2aaec0);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.book-visual span { font-family: Poppins, sans-serif; font-size: clamp(42px, 6vw, 76px); font-weight: 800; line-height: .95; text-align: center; }
.progress-box label { display: flex; justify-content: space-between; font-weight: 900; margin: 22px 0 8px; }
.progress-box span { display: block; height: 12px; background: var(--line); border-radius: 99px; overflow: hidden; }
.progress-box i { display: block; height: 100%; background: linear-gradient(135deg, var(--teal), #65e6f0); border-radius: inherit; transform-origin: left; transform: scaleX(0); transition: transform 1s ease; }
.progress-box.visible i { transform: scaleX(1); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
    position: relative;
    min-height: 260px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    color: var(--white);
    background: var(--dark-3);
    transition: transform .3s ease, filter .3s ease, box-shadow .3s ease;
}
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,18,20,.08), rgba(7,18,20,.6)); pointer-events: none; }
.gallery-item span { position: absolute; inset: auto 16px 16px; display: inline-flex; justify-content: center; padding: 10px 14px; border-radius: 999px; font-family: Poppins, sans-serif; font-size: 15px; font-weight: 800; background: rgba(7,18,20,.82); backdrop-filter: blur(10px); }
.gallery-item:hover { transform: scale(1.03) translateY(-4px); filter: saturate(1.08); box-shadow: var(--shadow); }
.portfolio-section { position: relative; background: var(--white); color: var(--ink); overflow: hidden; }
.portfolio-section .container { position: relative; }
.portfolio-section::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: radial-gradient(circle at 50% 100%, rgba(24,184,200,.1), transparent 42%);
    pointer-events: none;
}
.portfolio-tabs { position: relative; z-index: 1; }
.portfolio-tab-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 38px;
}
.portfolio-tab {
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.portfolio-tab:hover,
.portfolio-tab.active {
    transform: translateY(-3px);
    border-color: rgba(24,184,200,.72);
    background: linear-gradient(135deg, var(--teal), #65e6f0);
    color: var(--dark);
    box-shadow: 0 14px 34px rgba(24,184,200,.22);
}
.portfolio-panel {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .28s ease, transform .28s ease;
}
.portfolio-panel.active { opacity: 1; transform: translateY(0); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24,184,200,.52);
    box-shadow: var(--shadow);
}
.portfolio-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(24,184,200,.16), rgba(255,255,255,.06));
}
.portfolio-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,18,20,.02), rgba(7,18,20,.34));
    pointer-events: none;
}
.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(1.04);
    transition: transform .45s ease, filter .45s ease;
}
.portfolio-card:hover .portfolio-media img { transform: scale(1.055); filter: saturate(1.04) contrast(1.08); }
.portfolio-card-body { padding: 24px; }
.portfolio-card h3 { font-size: 21px; margin-bottom: 10px; }
.portfolio-card p { color: var(--muted); margin-bottom: 0; }
.platform-section { background: var(--soft); }
.platform-grid { grid-template-columns: repeat(5, 1fr); }
.platform-grid span { display: grid; place-items: center; min-height: 88px; border-radius: 8px; background: var(--white); border: 1px solid var(--line); font-weight: 900; color: var(--teal-dark); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); position: relative; padding-top: 54px; }
.testimonial-card::before { content: "“"; position: absolute; top: 12px; left: 24px; font-family: Georgia, serif; font-size: 68px; line-height: 1; color: var(--teal); }
.testimonial-card p { color: rgba(255,255,255,.78); }
.testimonial-card span { color: var(--teal); font-weight: 800; }
.blog-grid, .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card, .featured-blog-card, .video-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.blog-card:hover, .featured-blog-card:hover, .video-card:hover { transform: translateY(-8px); border-color: rgba(24,184,200,.45); box-shadow: var(--shadow); }
.blog-card { display: block; color: var(--ink); padding-bottom: 24px; }
.blog-media, .featured-blog-media, .video-thumb { display: block; overflow: hidden; background: var(--soft); position: relative; }
.blog-media { aspect-ratio: 16 / 10; }
.blog-media img, .featured-blog-media img, .video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-media img, .featured-blog-card:hover .featured-blog-media img, .video-card:hover .video-thumb img { transform: scale(1.055); filter: saturate(1.02) contrast(1.08); }
.badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(24,184,200,.12);
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 900;
    margin: 22px 22px 10px;
}
.blog-card time, .featured-blog-card time { display: block; color: var(--muted); font-size: 13px; font-weight: 800; margin: 0 22px 12px; }
.blog-card h3, .blog-card p, .blog-card strong { margin-left: 22px; margin-right: 22px; }
.blog-card strong { color: var(--teal-dark); }
.featured-blog-card { display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; align-items: center; }
.featured-blog-card > div { padding: 36px; }
.featured-blog-card h2 { font-size: clamp(30px, 3.4vw, 46px); }
.featured-blog-card .badge { margin-left: 0; }
.featured-blog-card time { margin-left: 0; }
.category-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.category-pills a { padding: 11px 16px; border-radius: 10px; background: var(--white); border: 1px solid var(--line); color: var(--teal-dark); font-weight: 800; box-shadow: var(--shadow-soft); transition: .25s ease; }
.category-pills a:hover { transform: translateY(-3px); border-color: var(--teal); }
.video-card { display: block; color: var(--ink); padding-bottom: 24px; }
.video-thumb { position: relative; aspect-ratio: 9 / 12; }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(7,18,20,.72)); }
.play-button {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--teal);
    box-shadow: 0 0 0 12px rgba(24,184,200,.18), 0 18px 36px rgba(0,0,0,.28);
    z-index: 2;
    animation: playPulse 2.2s ease-in-out infinite;
    transition: transform .25s ease, box-shadow .25s ease;
}
.play-button::before { content: ""; position: absolute; left: 28px; top: 22px; border-left: 20px solid var(--dark); border-top: 13px solid transparent; border-bottom: 13px solid transparent; }
.video-card:hover .play-button { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 0 16px rgba(24,184,200,.2), 0 20px 42px rgba(24,184,200,.22); }
.video-meta { display: inline-flex; margin: 22px 22px 10px; color: var(--teal-dark); font-size: 13px; font-weight: 900; }
.video-card h3, .video-card p { margin-left: 22px; margin-right: 22px; }
.video-modal { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.video-modal-dialog { position: relative; width: min(940px, 100%); z-index: 2; }
.video-modal-close { position: absolute; right: -12px; top: -46px; width: 40px; height: 40px; border: 0; border-radius: 10px; background: var(--teal); color: var(--dark); font-size: 28px; line-height: 1; cursor: pointer; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: var(--dark); box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cta-strip { text-align: center; background: var(--soft); }
.cta-strip p { max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--white); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-soft); }
.faq-item button { width: 100%; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; background: none; border: 0; font: inherit; font-weight: 900; text-align: left; cursor: pointer; color: var(--ink); }
.faq-item button { padding: 20px 22px; }
.faq-item p { display: block; max-height: 0; overflow: hidden; padding: 0 22px; margin: 0; transition: max-height .28s ease, padding .28s ease; }
.faq-item.open p { max-height: 220px; padding: 0 22px 20px; }
.cta-section { background: radial-gradient(circle at 78% 25%, rgba(24,184,200,.22), transparent 30%), linear-gradient(135deg, rgba(7,18,20,.98), rgba(16,42,46,.96)); color: var(--white); }

.lead-form { display: grid; gap: 16px; animation: softRise .7s ease both; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: grid; gap: 7px; font-weight: 800; font-size: 13px; color: var(--ink); }
.lead-form input, .lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 15px;
    font: inherit;
    outline: none;
    background: var(--white);
}
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(24,184,200,.14); }
.form-alert { padding: 12px 14px; border-radius: 8px; font-weight: 800; }
.form-alert.success { background: #e8fbf1; color: #0b6a38; }
.form-alert.error { background: #ffecec; color: #9b1d1d; }
.contact-grid { align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.map-card { min-height: 190px; background: linear-gradient(145deg, #071013, #1b5963) !important; color: var(--white); }
.map-card p { color: rgba(255,255,255,.75); }
.legal h2 { margin-top: 26px; font-size: 28px; }

.site-footer {
    position: relative;
    background:
        radial-gradient(circle at 15% 0, rgba(24,184,200,.13), transparent 28%),
        linear-gradient(135deg, var(--dark), var(--dark-2) 48%, var(--dark-3));
    color: var(--white);
    padding: 76px 0 0;
}
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.25fr; gap: 42px; }
.footer-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: visible !important;
    margin: 0 0 18px !important;
}
.footer-logo,
.site-footer .logo img,
.site-footer-logo img,
.footer-brand img {
    width: auto !important;
    height: auto !important;
    max-height: 90px !important;
    max-width: 260px !important;
    object-fit: contain !important;
    display: block !important;
}
.site-footer h3 { font-size: 18px; position: relative; padding-bottom: 12px; }
.site-footer h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 2px; border-radius: 999px; background: var(--teal); }
.site-footer a { display: block; color: rgba(255,255,255,.72); margin: 8px 0; transition: color .25s ease, transform .25s ease; }
.site-footer a:hover { color: var(--teal); }
.site-footer div:not(.socials) > a:hover { transform: translateX(4px); }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: var(--white);
    margin: 0;
    border: 1px solid rgba(255,255,255,.1);
    transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.socials a:hover {
    transform: translateY(-4px);
    background: var(--teal);
    color: var(--dark);
    box-shadow: 0 14px 30px rgba(24,184,200,.24);
}
.socials svg { width: 19px; height: 19px; fill: currentColor; }
.footer-contact { display: grid; gap: 14px; margin: 16px 0 22px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,.82);
}
.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(24,184,200,.14);
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-contact-icon svg { width: 16px; height: 16px; fill: currentColor; }
.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    word-break: break-word;
}
.footer-contact-item a:hover { color: var(--teal); transform: none; }
.newsletter-title { margin-top: 20px; }
.newsletter { display: flex; align-items: center; gap: 10px; margin: 16px 0; }
.newsletter input { min-width: 0; flex: 1; min-height: 50px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: var(--white); padding: 0 18px; }
.newsletter button {
    min-height: 50px !important;
    padding: 0 32px !important;
    border: 0;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--teal), #65e6f0);
    color: var(--dark);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.newsletter button:hover { transform: translateY(-2px); background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: var(--white); box-shadow: 0 12px 26px rgba(24,184,200,.22); }
.copyright { border-top: 1px solid rgba(255,255,255,.08); margin-top: 42px; padding: 18px 20px; text-align: center; color: rgba(255,255,255,.62); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes floatVisual {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes headerDrop {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientDrift {
    from { background-position: 0% 50%, 100% 50%, center; }
    to { background-position: 100% 40%, 0% 60%, center; }
}
@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 0 10px rgba(24,184,200,.14), 0 18px 36px rgba(0,0,0,.28); }
    50% { box-shadow: 0 0 0 18px rgba(24,184,200,.08), 0 18px 42px rgba(24,184,200,.2); }
}
@keyframes softRise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

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