@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
    --ink: #14212b;
    --ink-soft: #44515c;
    --paper: #fcfdfb;
    --surface: #ffffff;
    --brand: #0a7f72;
    --brand-deep: #05524a;
    --accent: #ff8a3d;
    --accent-soft: #ffd7be;
    --line: #e0e8e6;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 18px 45px rgba(7, 50, 47, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 138, 61, 0.15), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(10, 127, 114, 0.17), transparent 42%),
        linear-gradient(180deg, #f8fbfb 0%, #f4f7f6 42%, #fbfcfb 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, 92%);
    margin-inline: auto;
}

.section-spacing {
    padding: 5.4rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.95rem 1.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #f2721a);
    color: #fff;
    box-shadow: 0 14px 35px rgba(242, 114, 26, 0.28);
}

.btn-light {
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
}

.btn-outline {
    background: transparent;
    color: var(--brand-deep);
    border: 1.5px solid var(--brand-deep);
}

.full-width {
    width: 100%;
}

.top-bar {
    background: linear-gradient(95deg, #073d39, #0f6a61 62%, #0f7f71);
    color: #ebfffb;
    font-size: 0.84rem;
}

.top-bar-inner {
    min-height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem 1.4rem;
    padding: 0.45rem 0;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
}

.top-bar i {
    margin-right: 0.35rem;
    color: #f8d4bb;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.top-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(8px);
    background: rgba(252, 253, 251, 0.9);
    border-bottom: 1px solid rgba(224, 232, 230, 0.9);
}

.nav-row {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.brand-text {
    font-family: "Sora", sans-serif;
    font-size: var(--header-logo-size);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--brand-deep);
}

.brand-logo-image {
    width: var(--header-logo-size);
    max-width: 230px;
    object-fit: contain;
}

.brand-tagline {
    color: var(--ink-soft);
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-item {
    position: relative;
}

.nav-link-row {
    display: flex;
    align-items: center;
}

.nav-item[data-depth] > .nav-link-row {
    width: 100%;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    font-family: "Sora", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e323f;
    transition: color 0.24s ease, background 0.24s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-deep);
    background: rgba(10, 127, 114, 0.1);
}

.main-nav a.has-caret {
    gap: 0.5rem;
}

.submenu .nav-link-row a {
    width: 100%;
    justify-content: space-between;
}

.nav-caret {
    width: 8px;
    height: 8px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.24s ease;
}

.nav-item.has-children:hover > .nav-link-row .nav-caret,
.nav-item.has-children:focus-within > .nav-link-row .nav-caret,
.nav-item.has-children.is-open > .nav-link-row .nav-caret {
    transform: rotate(225deg) translateY(-1px);
}

.submenu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.submenu {
    list-style: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 34px rgba(9, 46, 44, 0.12);
    display: grid;
    gap: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    z-index: 45;
}

.nav-list > .nav-item > .submenu {
    top: calc(100% + 10px);
    left: 0;
}

.submenu > .nav-item > .submenu {
    top: -0.5rem;
    left: calc(100% + 8px);
}

.submenu a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0.72rem 0.85rem;
    font-size: 0.84rem;
}

.nav-item.has-children:hover > .submenu,
.nav-item.has-children:focus-within > .submenu,
.nav-item.has-children.is-open > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-cta {
    background: linear-gradient(120deg, var(--brand), #0e9f8f);
    color: #fff;
    box-shadow: 0 12px 30px rgba(10, 127, 114, 0.3);
}

.mobile-toggle {
    border: 0;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
    padding-top: 1.35rem;
}

.hero-slider {
    position: relative;
    min-height: 76vh;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-color: #1f2d35;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(9, 20, 30, 0.87) 0%, rgba(7, 24, 31, 0.6) 48%, rgba(6, 35, 41, 0.45) 100%),
        radial-gradient(circle at 85% 15%, rgba(255, 138, 61, 0.42), transparent 38%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: #f9fbff;
    width: min(760px, 100%);
    padding: clamp(2rem, 8vw, 5rem) 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.38rem 0.75rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.hero-inner h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 5.2vw, 3.95rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.05rem;
}

.hero-inner p {
    font-size: clamp(0.98rem, 2vw, 1.2rem);
    color: rgba(236, 245, 255, 0.95);
    max-width: 60ch;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(12, 78, 71, 0.34);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--accent);
    transform: scale(1.12);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading span {
    display: inline-flex;
    align-items: center;
    font-family: "Sora", sans-serif;
    font-size: 0.82rem;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    margin-bottom: 0.65rem;
}

.section-heading h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 3.6vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.7rem;
}

.section-heading p {
    color: var(--ink-soft);
    max-width: 60ch;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    box-shadow: 0 12px 28px rgba(8, 52, 49, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 34px rgba(8, 52, 49, 0.12);
}

.service-card[id] {
    scroll-margin-top: 120px;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--brand), #15a08f);
}

.service-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    margin-bottom: 0.45rem;
}

.service-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.about-section {
    background:
        linear-gradient(120deg, rgba(255, 138, 61, 0.08), transparent 36%),
        linear-gradient(240deg, rgba(10, 127, 114, 0.08), transparent 44%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.25rem;
    align-items: stretch;
}

.about-copy {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(8, 46, 44, 0.08);
}

.about-copy span {
    color: var(--brand);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "Sora", sans-serif;
}

.about-copy h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin: 0.45rem 0 0.8rem;
    line-height: 1.16;
}

.about-copy p {
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.metric-card {
    background: linear-gradient(145deg, #0d514a, #0d7266);
    color: #f4fffd;
    border-radius: var(--radius-md);
    padding: 1.6rem;
    box-shadow: 0 14px 26px rgba(6, 60, 54, 0.2);
}

.metric-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.35rem;
}

.why-card i {
    color: var(--accent);
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.why-card h3 {
    font-family: "Sora", sans-serif;
    margin-bottom: 0.4rem;
    font-size: 1.03rem;
}

.why-card p {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.cta-strip {
    padding: 2.4rem 0;
}

.cta-inner {
    border-radius: var(--radius-lg);
    background: linear-gradient(130deg, #0f6a60 0%, #0f8a79 60%, #1d6f95 100%);
    color: #fff;
    padding: 1.6rem clamp(1rem, 4vw, 2.2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-inner h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1rem;
}

.contact-copy,
.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.contact-copy span {
    color: var(--brand);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "Sora", sans-serif;
}

.contact-copy h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.45rem, 3.2vw, 2.4rem);
    margin: 0.5rem 0 0.8rem;
    line-height: 1.17;
}

.contact-copy p {
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

.contact-copy ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.contact-copy li i {
    width: 22px;
    color: var(--brand);
}

.contact-form {
    display: grid;
    gap: 0.8rem;
}

.form-row {
    display: grid;
    gap: 0.33rem;
}

.form-row label {
    font-size: 0.88rem;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    color: var(--ink);
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid #ced9d7;
    border-radius: 12px;
    padding: 0.77rem 0.95rem;
    font: inherit;
    outline: none;
    background: #fafdfe;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(10, 127, 114, 0.12);
}

.alert {
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.alert-success {
    background: #e9f9f4;
    color: #0b6a53;
    border: 1px solid #bce9d9;
}

.alert-error {
    background: #fff2f0;
    color: #9e2f2f;
    border: 1px solid #f9cdca;
}

.inner-hero {
    padding: clamp(2.6rem, 6vw, 4.4rem) 0 1.5rem;
}

.inner-hero span {
    display: inline-block;
    color: var(--brand);
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Sora", sans-serif;
    margin-bottom: 0.55rem;
}

.inner-hero h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 4vw, 3.1rem);
    line-height: 1.1;
    margin-bottom: 0.65rem;
}

.inner-hero p {
    color: var(--ink-soft);
    max-width: 70ch;
}

.directory-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.directory-toolbar input {
    width: min(520px, 100%);
    border: 1px solid #cfd9d7;
    border-radius: 999px;
    padding: 0.78rem 1rem;
    font: inherit;
    outline: none;
    background: #fff;
}

.directory-toolbar input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(10, 127, 114, 0.12);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.directory-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid var(--line);
    padding: 1.1rem;
    display: grid;
    gap: 0.5rem;
}

.directory-card i {
    color: var(--brand);
    font-size: 1.1rem;
}

.directory-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

.directory-card a {
    color: #0f5e8d;
    font-family: "Sora", sans-serif;
    font-size: 0.86rem;
}

.empty-note {
    margin-top: 1rem;
    color: var(--ink-soft);
}

.site-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    background: linear-gradient(170deg, #0a2e36 0%, #0d4551 60%, #0f5a62 100%);
    color: #e3f7f6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
    gap: 1.2rem;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 0.7rem;
}

.footer-logo-text {
    font-family: "Sora", sans-serif;
    font-size: var(--footer-logo-size);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.footer-logo-image {
    width: var(--footer-logo-size);
    max-width: 190px;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(227, 247, 246, 0.86);
    margin-bottom: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.footer-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.13);
}

.site-footer h3 {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: #fff;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.footer-submenu {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    margin-top: 0.35rem;
    padding-left: 0.9rem;
}

.footer-submenu .footer-submenu {
    padding-left: 1rem;
}

.footer-links a,
.footer-contact li {
    color: rgba(227, 247, 246, 0.87);
    font-size: 0.9rem;
}

.footer-submenu a {
    color: rgba(227, 247, 246, 0.76);
    font-size: 0.84rem;
}

.footer-contact li i {
    width: 20px;
    color: #ffb98f;
}

.admin-link {
    display: inline-flex;
    margin-top: 0.8rem;
    color: #ffd2b2;
    font-family: "Sora", sans-serif;
    font-size: 0.84rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 1.4rem;
    padding: 0.9rem 0 1.2rem;
    text-align: center;
    color: rgba(227, 247, 246, 0.75);
    font-size: 0.88rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #1ea857);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 16px 30px rgba(10, 58, 32, 0.34);
    z-index: 40;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid,
    .contact-grid,
    .why-grid,
    .directory-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 4%;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: stretch;
        width: min(360px, 92vw);
        padding: 0.9rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: all 0.28s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-list {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link-row {
        width: 100%;
        gap: 0.35rem;
    }

    .main-nav a {
        flex: 1;
        justify-content: flex-start;
    }

    .main-nav a.has-caret .nav-caret {
        display: none;
    }

    .submenu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .submenu {
        position: static;
        min-width: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0.25rem 0.8rem;
        margin-top: 0.15rem;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .submenu .submenu {
        padding-left: 0.9rem;
    }

    .nav-item.has-children:hover > .submenu,
    .nav-item.has-children:focus-within > .submenu {
        display: none;
    }

    .nav-item.has-children.is-open > .submenu {
        display: grid;
    }

    .submenu a {
        padding: 0.68rem 0.8rem;
        background: rgba(10, 127, 114, 0.06);
    }

    .header-cta {
        width: 100%;
        text-align: center;
    }

    .hero-slider {
        min-height: 64vh;
    }

    .hero-inner {
        width: min(650px, 100%);
    }

    .directory-toolbar {
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .section-spacing {
        padding: 4.3rem 0;
    }

    .top-bar-left span:nth-child(2) {
        display: none;
    }

    .top-bar-right span {
        display: none;
    }

    .service-cards,
    .about-grid,
    .about-metrics,
    .contact-grid,
    .why-grid,
    .directory-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        min-height: 70vh;
        border-radius: 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .brand-text {
        font-size: clamp(1.35rem, 7vw, 1.95rem);
    }

    .brand-tagline {
        display: none;
    }

    .hero-inner {
        padding: 1.7rem 0;
    }

    .hero-inner h1 {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }

    .hero-inner p {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
    }
}
