/* ======= RESET & BASE ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green: #7c3aed;
    --green-dark: #5b21b6;
    --green-light: #ede9fe;
    --green-tint: #faf5ff;
    --ink: #0f172a;
    --ink-soft: #334155;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow: 0 8px 30px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, .12);
    --container: 1200px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -.01em;
}

p { color: var(--ink-soft); }
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ======= TIER BADGE ======= */
.tier-badge {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(22, 163, 74, .4);
    font-family: 'Inter', sans-serif;
    min-width: 180px;
    text-align: center;
}
.tier-badge__label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; opacity: .92; }
.tier-badge__price { font-size: 22px; font-weight: 700; margin: 4px 0 6px; }
.tier-badge__compare { font-size: 11px; opacity: .95; }
.tier-badge__compare a { color: #fff; text-decoration: underline; }
.tier-badge__compare a:hover { opacity: .8; color: #fff; }

/* ======= NAV ======= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, .6);
    transition: var(--transition);
}
.nav.scrolled { background: rgba(255, 255, 255, .92); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); font-size: 18px; }
.nav__logo-mark {
    display: inline-grid; place-items: center;
    width: 34px; height: 34px;
    background: var(--green); color: #fff;
    border-radius: 10px; font-family: 'DM Serif Display', serif;
    font-size: 18px;
}
.nav__links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav__links a { color: var(--ink-soft); font-weight: 500; font-size: 15px; }
.nav__links a:hover { color: var(--green); }
.nav__cta {
    background: var(--green); color: #fff !important;
    padding: 10px 20px; border-radius: 10px;
}
.nav__cta:hover { background: var(--green-dark); }
.nav__burger {
    display: none; background: none; border: 0; cursor: pointer;
    width: 40px; height: 40px; padding: 8px;
}
.nav__burger span {
    display: block; width: 24px; height: 2px;
    background: var(--ink); margin: 5px auto;
    transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======= BUTTONS ======= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; border-radius: 12px;
    font-weight: 600; font-size: 15px;
    border: 2px solid transparent; cursor: pointer;
    transition: var(--transition); font-family: inherit;
}
.btn--primary {
    background: var(--green); color: #fff;
    box-shadow: 0 6px 20px rgba(22, 163, 74, .25);
}
.btn--primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22, 163, 74, .35); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }

/* ======= HERO ======= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(240, 253, 244, 0.92) 0%, rgba(255, 255, 255, 0.80) 55%, rgba(220, 252, 231, 0.70) 100%),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1400&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.hero__inner { max-width: 880px; }
.hero__tag {
    display: inline-block;
    background: var(--green-light); color: var(--green-dark);
    padding: 8px 16px; border-radius: 100px;
    font-size: 13px; font-weight: 600; letter-spacing: .3px;
    margin-bottom: 24px;
}
.hero__title { font-size: clamp(40px, 6vw, 72px); margin-bottom: 20px; }
.hero__title em { color: var(--green); font-style: italic; }
.hero__sub { font-size: 19px; color: var(--ink-soft); max-width: 620px; margin-bottom: 36px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.trust-item__icon {
    display: inline-grid; place-items: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--green-light); color: var(--green-dark);
    font-weight: 700;
}

/* ======= TRUST BADGES BAR ======= */
.trust-badges {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}
.trust-badges__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: center;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: var(--transition);
}
.trust-badge:hover { background: var(--green-tint); }
.trust-badge__icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.trust-badge__text { display: flex; flex-direction: column; line-height: 1.2; }
.trust-badge__text strong { font-size: 14px; color: var(--ink); font-weight: 700; }
.trust-badge__text span { font-size: 12px; color: var(--muted); }

/* ======= STATS BAR ======= */
.stats-bar {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    padding: 56px 0;
    color: #fff;
}
.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat__num {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 4.5vw, 54px);
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
}
.stat__label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

/* ======= TRUSTPILOT WIDGET ======= */
:root {
    --tp-green: #00b67a;
}
.trustpilot-widget {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
}
.trustpilot-header {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.tp-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 24px;
    border-right: 1px solid var(--line);
}
.tp-logo-star {
    display: inline-grid;
    place-items: center;
    width: 34px; height: 34px;
    background: var(--tp-green);
    color: #fff;
    border-radius: 4px;
    font-size: 22px;
    line-height: 1;
}
.tp-logo-text {
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    letter-spacing: -.3px;
}
.tp-info { flex: 1; min-width: 200px; }
.tp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.tp-stars {
    display: inline-flex;
    gap: 2px;
    background: var(--tp-green);
    padding: 4px 6px;
    border-radius: 3px;
}
.tp-star {
    color: #fff;
    font-size: 18px;
    line-height: 1;
}
.tp-rating strong {
    font-size: 22px;
    color: var(--ink);
    font-weight: 700;
}
.tp-count {
    font-size: 14px;
    color: var(--muted);
}
.tp-link {
    color: var(--tp-green);
    font-weight: 600;
    font-size: 15px;
}
.tp-link:hover { color: #009966; text-decoration: underline; }

/* ======= TESTIMONIALS ======= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--green-light);
    box-shadow: var(--shadow);
}
.testimonial__stars {
    background: var(--tp-green);
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.testimonial__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.3;
}
.testimonial__text {
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 20px;
    flex: 1;
}
.testimonial__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    gap: 12px;
}
.testimonial__author { display: flex; flex-direction: column; line-height: 1.3; }
.testimonial__author strong { font-size: 14px; color: var(--ink); font-weight: 600; }
.testimonial__author span { font-size: 13px; color: var(--muted); }
.testimonial__date { font-size: 12px; color: var(--muted); white-space: nowrap; }
.testimonial__verified {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--green-dark);
    font-weight: 600;
    align-self: flex-start;
    background: var(--green-light);
    padding: 5px 10px;
    border-radius: 100px;
}
.verified-icon {
    display: inline-grid;
    place-items: center;
    width: 14px; height: 14px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
}

/* ======= BETROET AF ======= */
.trusted-by-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.trusted-logo {
    display: grid;
    place-items: center;
    min-height: 88px;
    padding: 20px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: var(--transition);
    letter-spacing: .2px;
}
.trusted-logo:hover {
    color: var(--green-dark);
    border-color: var(--green-light);
    background: var(--green-tint);
    transform: translateY(-2px);
}

/* ======= SECTIONS ======= */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.eyebrow {
    display: inline-block;
    color: var(--green); font-weight: 600;
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 14px;
}
.section__title { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.section__lead { font-size: 18px; color: var(--ink-soft); }

/* ======= SERVICES ======= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}
.service-card__icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--green-light), #fff);
    border: 1px solid var(--green-light);
    border-radius: 14px;
    display: grid; place-items: center;
    color: var(--green); font-size: 24px;
    margin-bottom: 20px;
}
.service-card__photo {
    width: 100%; height: 150px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    background-size: cover; background-position: center;
    border: 1px solid var(--line);
}
.service-card__photo--1 { background-image: url('https://images.unsplash.com/photo-1560184897-ae75f418493e?w=500&q=80'); }
.service-card__photo--2 { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=500&q=80'); }
.service-card__photo--3 { background-image: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=500&q=80'); }
.service-card__photo--4 { background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=500&q=80'); }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { font-size: 15px; margin-bottom: 20px; }
.service-card__price {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted); font-size: 14px;
}
.service-card__price strong { color: var(--green); font-size: 20px; font-weight: 700; }

/* ======= PRICE TABLE ======= */
.price-table {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
    padding: 18px 24px; text-align: left;
    border-bottom: 1px solid var(--line);
}
.price-table th {
    background: var(--green-tint);
    color: var(--ink);
    font-weight: 600; font-size: 14px;
    letter-spacing: .3px; text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--green-tint); }
.price-table td:last-child { font-weight: 600; color: var(--green-dark); }

/* ======= STEPS ======= */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    position: relative;
}
.step {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    text-align: center;
    transition: var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff; border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 24px rgba(22, 163, 74, .3);
}
.step h3 { font-size: 22px; margin-bottom: 10px; }

/* ======= ABOUT ======= */
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.about__text .section__title { text-align: left; }
.about__text .eyebrow { display: block; text-align: left; }
.about__text p { font-size: 17px; margin-bottom: 16px; }
.about__stats {
    display: flex; gap: 32px; margin-top: 32px;
    padding-top: 28px; border-top: 1px solid var(--line);
}
.about__stats > div { display: flex; flex-direction: column; }
.about__stats strong {
    font-family: 'DM Serif Display', serif;
    font-size: 32px; color: var(--green);
}
.about__stats span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.about__photo {
    aspect-ratio: 4/5;
    background-image:
        linear-gradient(135deg, rgba(22, 163, 74, .15), rgba(22, 163, 74, .08)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    display: grid; place-items: end;
    color: #fff; font-weight: 500;
    border: 1px solid var(--green-light);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.about__photo span { display: none; }

/* ======= FAQ ======= */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 4px 24px;
    transition: var(--transition);
}
.faq__item[open] { border-color: var(--green); box-shadow: var(--shadow); }
.faq__item summary {
    font-weight: 600; font-size: 17px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+'; font-size: 26px; color: var(--green);
    transition: transform var(--transition); line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 20px; color: var(--ink-soft); }

/* ======= CONTACT ======= */
.contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; }
.contact__form {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 14px; color: var(--ink); }
.field input, .field select, .field textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit; font-size: 15px;
    background: #fff; color: var(--ink);
    transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 0; border-color: var(--green);
    box-shadow: 0 0 0 4px var(--green-light);
}
.field.error input, .field.error textarea { border-color: #dc2626; }
.field__error { color: #dc2626; font-size: 13px; min-height: 16px; }
.contact__form button { grid-column: 1 / -1; }
.form__success {
    grid-column: 1 / -1;
    display: none;
    padding: 14px; border-radius: 10px;
    background: var(--green-light); color: var(--green-dark);
    font-weight: 600; text-align: center;
}
.form__success.show { display: block; }

.contact__info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}
.info-card h3 { font-size: 22px; margin-bottom: 16px; }
.info-card p { margin-bottom: 14px; font-size: 15px; }
.map-placeholder {
    aspect-ratio: 16/10;
    background:
        linear-gradient(135deg, var(--green-light), var(--bg-alt));
    border-radius: var(--radius-lg);
    display: grid; place-items: center; gap: 6px;
    color: var(--green-dark); font-weight: 600;
    border: 1px solid var(--line);
    text-align: center;
}
.map-placeholder small { font-weight: 400; color: var(--muted); }

/* ======= FOOTER ======= */
.footer {
    background: var(--ink);
    color: #cbd5e1;
    padding-top: 72px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer h4 { color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 16px; }
.footer__brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 18px; margin-bottom: 14px; }
.footer__col p { color: #94a3b8; font-size: 14px; line-height: 1.7; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: #cbd5e1; font-size: 14px; }
.footer__col a:hover { color: var(--green); }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
    display: grid; place-items: center;
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, .08);
    border-radius: 10px; color: #fff; font-weight: 600; font-size: 12px;
}
.footer__social a:hover { background: var(--green); }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
    font-size: 13px; color: #94a3b8;
}
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }

/* ======= RESPONSIVE ======= */
@media (max-width: 960px) {
    .about { grid-template-columns: 1fr; gap: 40px; }
    .contact { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .trust-badges__grid { grid-template-columns: repeat(3, 1fr); }
    .trusted-by-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trustpilot-header { gap: 20px; }
    .tp-brand { border-right: 0; padding-right: 0; padding-bottom: 16px; border-bottom: 1px solid var(--line); width: 100%; }
}
@media (max-width: 768px) {
    .tier-badge { top: auto; bottom: 12px; right: 12px; min-width: 150px; padding: 10px 14px; }
    .tier-badge__price { font-size: 18px; }
    .nav__burger { display: block; }
    .nav__links {
        position: absolute; top: 72px; left: 0; right: 0;
        flex-direction: column; padding: 24px;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--line);
        transform: translateY(-200%); opacity: 0;
        transition: var(--transition);
        gap: 18px;
    }
    .nav__links.open { transform: translateY(0); opacity: 1; }
    .section { padding: 72px 0; }
    .hero { padding: 110px 0 60px; min-height: auto; }
    .hero__trust { gap: 16px; }
    .contact__form { padding: 24px; grid-template-columns: 1fr; }
    .price-table th, .price-table td { padding: 14px 16px; font-size: 14px; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom .container { flex-direction: column; text-align: center; gap: 6px; }
    .about__stats { flex-wrap: wrap; gap: 20px; }
    .trust-badges__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .trusted-by-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .trustpilot-widget { padding: 20px; }
    .testimonial { padding: 22px; }
}

/* ===== Floating WhatsApp Chat Button ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 998;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.whatsapp-float::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 50%; background: #25D366;
    opacity: 0.5; z-index: -1;
    animation: whatsapp-ripple 2s infinite;
}
@keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes whatsapp-ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-tooltip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    padding: 8px 14px; background: #333; color: #fff;
    font-size: 0.8rem; font-weight: 500; border-radius: 6px;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
    content: ''; position: absolute; top: 50%; right: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px; height: 8px; background: #333;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@media (max-width: 768px) {
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .whatsapp-tooltip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float, .whatsapp-float::before { animation: none; }
}
