:root {
    --navy: #232f5f;
    --navy-deep: #141a37;
    --navy-mid: #2f3c73;
    --orange: #e8583c;
    --orange-dim: #c94a32;
    --orange-tint: #fbe6e0;
    --paper: #fbfaf8;
    --panel: #f3f1eb;
    --ink: #1c2033;
    --muted: #5c6178;
    --line: rgba(35, 47, 95, 0.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--orange);
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, background .3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px -8px rgba(232, 88, 60, 0.55);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -8px rgba(232, 88, 60, 0.65);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--line);
}

.btn-ghost:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--navy);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.35);
}

/* ============ NAV ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(251, 250, 248, 0.82);
    backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, box-shadow .3s ease;
}

header.scrolled {
    border-color: var(--line);
    box-shadow: 0 6px 24px -18px rgba(20, 26, 55, 0.4);
}

nav {
    max-width: 1220px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    height: 60px;
    width: auto;
}

@media (max-width:650px){
.brand img{
        max-width: 120px;
        height: auto;
}

.btn{
    padding: 10px 20px;
}
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--orange);
    transition: width .3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
}

.nav-phone svg {
    flex-shrink: 0;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: .3s;
}

/* ============ HERO ============ */
.hero {
    padding: 168px 0 90px;
    background:
        radial-gradient(1100px 620px at 88% -10%, rgba(232, 88, 60, 0.10), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(35, 47, 95, 0.07), transparent 55%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(38px, 4.6vw, 62px);
    line-height: 1.04;
    font-weight: 700;
}

.hero h1 .accent-wrap {
    position: relative;
    display: inline-block;
}

.hero h1 .accent-wrap svg {
    position: absolute;
    left: -2%;
    bottom: -6px;
    width: 104%;
    height: auto;
    z-index: -1;
}

.hero-sub {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.hero-stat b {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    color: var(--navy);
    display: block;
    font-weight: 700;
}

.hero-stat span {
    font-size: 13.5px;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    height: 480px;
}

.mark-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mark-card {
    position: relative;
    width: 340px;
    height: 340px;
    background: var(--navy-deep);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px -24px rgba(20, 26, 55, 0.55);
}

.mark-card svg {
    width: 62%;
    height: 62%;
}

.draw-path {
    fill: none;
    stroke: #fff;
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: draw 2.2s cubic-bezier(.65, 0, .35, 1) 0.4s forwards;
}

.draw-comma {
    fill: var(--orange);
    opacity: 0;
    transform-origin: center;
    animation: pop 0.6s cubic-bezier(.2, 1.4, .4, 1) 2.3s forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(0.4) rotate(-20deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 7px 16px 7px 7px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 14px 30px -14px rgba(20, 26, 55, 0.3);
    animation: float 7s ease-in-out infinite;
}

.chip img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #f3f1eb;
}

.chip i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
    margin-right: 7px;
}

.chip-1 {
    top: 6%;
    left: 0%;
    animation-delay: 0s;
}

.chip-2 {
    top: 16%;
    right: -2%;
    animation-delay: 1.4s;
}

.chip-3 {
    bottom: 14%;
    left: -4%;
    animation-delay: 0.7s;
}

.chip-4 {
    bottom: 2%;
    right: 6%;
    animation-delay: 2.1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ============ MARQUEE ============ */
.marquee-wrap {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--panel);
    padding: 22px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: scroll-left 28s linear infinite;
}

.marquee-track span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--navy);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.marquee-track span img {
    width: 50ppx;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 1px solid var(--line);
}

.marquee-track span::after {
    content: "◆";
    color: var(--orange);
    font-size: 9px;
    opacity: 0.8;
    margin-left: 44px;
}

.marquee-track {
    gap: 0;
}

.marquee-track span {
    padding-right: 56px;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============ SECTION HEAD ============ */
.section-head {
    max-width: 640px;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 700;
    margin-top: 14px;
    line-height: 1.15;
}

.section-head p {
    margin-top: 16px;
    font-size: 16.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ============ ABOUT ============ */
.about {
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-copy p {
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--muted);
}

.about-copy p+p {
    margin-top: 16px;
}

.badge-row {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 100px;
    background: var(--orange-tint);
    color: var(--orange-dim);
    font-size: 13.5px;
    font-weight: 700;
}

.about-stats {
    background: var(--navy);
    border-radius: 28px;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.16;
    filter: blur(20px);
    top: -90px;
    right: -90px;
}

.about-stats .stat b {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.about-stats .stat span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.68);
    display: block;
    margin-top: 6px;
}

/* ============ SERVICES ============ */
.services {
    padding: 100px 0;
    background: var(--panel);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 44px -24px rgba(20, 26, 55, 0.28);
    border-color: transparent;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--orange-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
}

.service-card.wide {
    grid-column: span 1;
}

/* ============ CONCEPT WALL (portfolio) ============ */
.portfolio {
    padding: 110px 0;
}

.wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.wall-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
}

.wall-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 26px 50px -22px rgba(20, 26, 55, 0.32);
}

.wall-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.wall-item:hover img {
    transform: scale(1.06);
}

.wall-item .wall-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(20, 26, 55, 0.88), transparent);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    text-align: center;
    padding: 24px 10px 12px;
    opacity: 0;
    transition: opacity .3s ease;
}

.wall-item:hover .wall-label {
    opacity: 1;
}

.wall-more {
    margin-top: 22px;
}

.wall-more-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.wall-more-head span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--muted);
    white-space: nowrap;
}

.wall-more-head .rule {
    height: 1px;
    background: var(--line);
    flex: 1;
}

/* ============ PRICING ============ */
.pricing {
    padding: 110px 0;
    background: var(--navy-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 88, 60, 0.22), transparent 65%);
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing .section-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing .section-head h2 {
    color: #fff;
}

.pricing .section-head p {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.price-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, background .35s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
}

.price-card.featured {
    background: linear-gradient(165deg, var(--orange), var(--orange-dim));
    border-color: transparent;
    box-shadow: 0 30px 60px -20px rgba(232, 88, 60, 0.5);
}

.price-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.price-card.featured .price-tag {
    opacity: 0.85;
}

.price-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    color: #fff;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 20px;
}

.price-amount b {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
}

.price-amount s {
    opacity: 0.5;
    font-size: 16px;
}

.price-features {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    opacity: 0.9;
}

.price-features li svg {
    flex-shrink: 0;
}

.price-card .btn {
    margin-top: 30px;
    width: 100%;
}

.popular-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--orange-dim);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.price-card {
    position: relative;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 110px 0;
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.t-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.t-stars {
    display: flex;
    gap: 3px;
}

.t-quote {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink);
    flex: 1;
}

.t-who {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.t-who b {
    font-size: 13.5px;
    display: block;
}

.t-who span {
    font-size: 12px;
    color: var(--muted);
}

/* ============ CTA BANNER ============ */
.cta-band {
    padding: 100px 0;
}

.cta-inner {
    background: var(--navy);
    border-radius: 32px;
    padding: 70px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -90px;
    width: 280px;
    height: 280px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(10px);
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(26px, 3vw, 36px);
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* ============ FOOTER ============ */
footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 60px;
    margin-bottom: 18px;
    
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

footer h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: 'Space Grotesk', sans-serif;
}

footer ul li {
    margin-bottom: 11px;
}

footer ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color .25s ease;
}

footer ul li a:hover {
    color: var(--orange);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

.social-row a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.pay-row {
    display: flex;
    gap: 14px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 380px;
        margin-top: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wall-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .t-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 32px;
    }
}

@media (max-width: 720px) {

    .nav-links,
    .nav-phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .wrap {
        padding: 0 20px;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .t-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        padding: 34px 26px;
    }

    .hero-stats {
        gap: 26px;
    }

    .pricing::before {
        display: none;
    }

    .chip {
        font-size: 11.5px;
        padding: 7px 12px;
    }
}

/* ============ WHATSAPP STICKY ============ */
.whatsapp-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
    animation: wa-pulse 2.6s ease-in-out infinite;
}

.whatsapp-btn:hover {
    animation-play-state: paused;
    transform: scale(1.06);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width:720px) {
    .whatsapp-btn {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 720px) {
    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 20px 50px -14px rgba(20, 26, 55, 0.35);
        padding: 22px;
        display: none;
        flex-direction: column;
        gap: 16px;
        z-index: 99;
        border: 1px solid var(--line);
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-weight: 600;
        color: var(--navy);
        font-size: 15px;
    }
}



@media (min-width:800px){
    .mobile-menu{
        display: none;
    }
}