*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink:    #0A0A08;
    --gold:   #F5A623;
    --gold2:  #E8920F;
    --cream:  #F5F2EB;
    --muted:  #8C8B84;
    --line:   rgba(245,166,35,0.15);
    --serif:  'Playfair Display', Georgia, serif;
    --sans:   'DM Sans', system-ui, sans-serif;
    --mono:   'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: default;
  }

  ::selection { background: var(--gold); color: var(--ink); }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    mix-blend-mode: normal;
    transition: background 0.4s, padding 0.4s;
  }
  nav.solid { background: rgba(10,10,8,0.96); backdrop-filter: blur(12px); padding: 1rem 3rem; border-bottom: 1px solid var(--line); }

  .nav-logo {
    font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
    color: var(--cream); text-decoration: none; letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .nav-logo-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    animation: pulse-dot 3s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
  }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; background: var(--gold); color: var(--ink);
    padding: 0.6rem 1.4rem; border-radius: 2px; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

  @media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 3rem 5rem;
    position: relative; overflow: hidden;
  }

  .hero-sun {
    position: absolute;
    top: 50%; right: 6%;
    transform: translateY(-52%);
    width: min(56vw, 700px);
    height: min(56vw, 700px);
    pointer-events: none;
    z-index: 0;
  }

  .sun-core {
    position: absolute; inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 38%, #FFC84A, #F5A623 40%, #E8820A 80%, #C05500);
    animation: sun-breathe 8s ease-in-out infinite;
    box-shadow: 0 0 80px 20px rgba(245,166,35,0.25), 0 0 200px 60px rgba(245,166,35,0.08);
  }
  @keyframes sun-breathe {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.04); }
  }

  .sun-ring {
    position: absolute; inset: 15%;
    border-radius: 50%;
    border: 1px solid rgba(245,166,35,0.18);
    animation: sun-breathe 8s ease-in-out infinite 0.5s;
  }
  .sun-ring-2 {
    position: absolute; inset: 5%;
    border-radius: 50%;
    border: 1px solid rgba(245,166,35,0.08);
    animation: sun-breathe 8s ease-in-out infinite 1s;
  }

  .sun-rays {
    position: absolute; inset: 0;
    animation: rays-spin 60s linear infinite;
  }
  @keyframes rays-spin { to { transform: rotate(360deg); } }

  .ray {
    position: absolute;
    top: 50%; left: 50%;
    width: 50%; height: 1px;
    transform-origin: 0 50%;
    background: linear-gradient(to right, transparent, rgba(245,166,35,0.35), transparent);
  }

  .hero-eyebrow {
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.5rem; position: relative; z-index: 1;
    opacity: 0; animation: fade-up 0.8s ease forwards 0.2s;
  }

  .hero-title {
    font-family: var(--serif); font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 900; line-height: 0.92; letter-spacing: -0.03em;
    color: var(--cream); position: relative; z-index: 1;
    max-width: 60%;
    opacity: 0; animation: fade-up 0.9s ease forwards 0.4s;
  }
  .hero-title em {
    font-style: italic; color: var(--gold);
    display: block;
  }

  .hero-sub-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-top: 3rem; position: relative; z-index: 1;
    opacity: 0; animation: fade-up 1s ease forwards 0.7s;
  }

  .hero-tagline {
    font-size: clamp(0.85rem, 1.5vw, 1rem); color: var(--muted);
    max-width: 320px; line-height: 1.7;
  }
  .hero-tagline strong { color: var(--cream); font-weight: 400; }

  .hero-cta-group { display: flex; gap: 1rem; align-items: center; }
  .btn-primary {
    display: inline-block; background: var(--gold); color: var(--ink);
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 1rem 2.2rem;
    text-decoration: none; transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

  .btn-ghost {
    display: inline-block; border: 1px solid rgba(245,242,235,0.2); color: var(--cream);
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 1rem 2.2rem;
    text-decoration: none; transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--muted); z-index: 1;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-drop 2s ease-in-out infinite;
  }
  @keyframes scroll-drop {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    #hero { padding: 0 1.5rem 4rem; }
    .hero-title { max-width: 100%; font-size: clamp(2.8rem, 10vw, 5rem); }
    .hero-sub-row { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .hero-sun { right: -10%; top: 20%; opacity: 0.4; }
  }

  /* ── DIVIDER ── */
  .divider {
    border: none;
    height: 1px;
    background: var(--line);
    margin: 0;
  }

  /* ── STATS STRIP ── */
  #stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
  }
  .stat-cell {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--line);
    position: relative; overflow: hidden;
    transition: background 0.3s;
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:hover { background: rgba(245,166,35,0.04); }
  .stat-cell::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
  }
  .stat-cell:hover::before { transform: scaleX(1); }
  .stat-num {
    font-family: var(--serif); font-size: 3.5rem; font-weight: 900;
    color: var(--gold); line-height: 1; letter-spacing: -0.02em;
    display: block;
  }
  .stat-label {
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); margin-top: 0.5rem; display: block;
  }

  @media (max-width: 768px) {
    #stats { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell { padding: 2rem 1.5rem; }
    .stat-num { font-size: 2.8rem; }
  }

  /* ── SECTION BASE ── */
  section { padding: 7rem 3rem; }
  @media (max-width: 768px) { section { padding: 4rem 1.5rem; } }

  .section-label {
    font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::after {
    content: ''; flex: 0 0 40px; height: 1px; background: var(--gold); opacity: 0.5;
  }

  /* ── ABOUT ── */
  #about { border-bottom: 1px solid var(--line); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 6rem; align-items: start; margin-top: 4rem;
  }

  .about-title {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
    position: sticky; top: 6rem;
  }
  .about-title em { font-style: italic; color: var(--gold); }

  .about-body { display: flex; flex-direction: column; gap: 2rem; }
  .about-lead {
    font-size: 1.15rem; line-height: 1.75; color: rgba(245,242,235,0.75);
    border-left: 2px solid var(--gold); padding-left: 1.5rem;
  }
  .about-body p { color: var(--muted); line-height: 1.8; }

  .about-founder {
    margin-top: 1rem; padding: 1.5rem;
    border: 1px solid var(--line); position: relative;
    background: rgba(245,166,35,0.03);
  }
  .about-founder::before {
    content: '"'; font-family: var(--serif); font-size: 4rem; color: var(--gold);
    opacity: 0.3; position: absolute; top: -1rem; left: 1rem; line-height: 1;
  }
  .founder-quote { font-style: italic; color: rgba(245,242,235,0.7); font-size: 0.95rem; }
  .founder-name {
    margin-top: 1rem; font-family: var(--mono); font-size: 0.72rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  }

  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-title { position: static; }
  }

  /* ── SERVICES ── */
  #services { background: rgba(245,166,35,0.02); border-bottom: 1px solid var(--line); }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4rem; flex-wrap: wrap; gap: 1.5rem;
  }
  .services-title {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; letter-spacing: -0.02em; max-width: 400px; line-height: 1.15;
  }
  .services-sub { font-size: 0.85rem; color: var(--muted); max-width: 280px; }

  .services-list { display: flex; flex-direction: column; }

  .service-item {
    display: grid; grid-template-columns: 4rem 1fr auto;
    align-items: start; gap: 2rem;
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--line);
    cursor: default; transition: background 0.2s;
    position: relative;
  }
  .service-item::before {
    content: ''; position: absolute; left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(245,166,35,0.04);
    opacity: 0; transition: opacity 0.3s;
  }
  .service-item:hover::before { opacity: 1; }

  .service-num {
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
    color: var(--gold); opacity: 0.6; padding-top: 0.35rem;
  }
  .service-content {}
  .service-name {
    font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
    margin-bottom: 0.4rem; transition: color 0.2s;
  }
  .service-item:hover .service-name { color: var(--gold); }
  .service-desc { font-size: 0.85rem; color: var(--muted); max-width: 500px; line-height: 1.7; }
  .service-arrow {
    font-size: 1.2rem; color: var(--gold); opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    padding-top: 0.35rem; align-self: center;
  }
  .service-item:hover .service-arrow { opacity: 1; transform: translateX(4px); }

  @media (max-width: 600px) {
    .service-item { grid-template-columns: 2.5rem 1fr; }
    .service-arrow { display: none; }
  }

  /* ── WHY US ── */
  #why { border-bottom: 1px solid var(--line); }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin-top: 4rem;
    border: 1px solid var(--line);
  }
  .why-card {
    padding: 2.5rem; border-right: 1px solid var(--line);
    position: relative; overflow: hidden; transition: background 0.3s;
  }
  .why-card:last-child { border-right: none; }
  .why-card:hover { background: rgba(245,166,35,0.04); }

  .why-icon {
    width: 40px; height: 40px; margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center;
  }
  .why-icon svg { width: 100%; height: 100%; }
  .why-card-title {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
    margin-bottom: 0.8rem; line-height: 1.3;
  }
  .why-card-text { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }

  @media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .why-card:nth-child(2) { border-right: none; }
  }
  @media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-card { border-right: none; border-bottom: 1px solid var(--line); }
  }

  /* ── PROCESS ── */
  #process { background: var(--cream); color: var(--ink); border-bottom: 1px solid rgba(10,10,8,0.1); }
  #process .section-label { color: var(--gold2); }
  #process .section-label::after { background: var(--gold2); }
  .process-title {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900; letter-spacing: -0.02em; margin-top: 0.5rem;
    max-width: 500px; line-height: 1.1;
  }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 4rem;
    border-top: 1px solid rgba(10,10,8,0.1);
  }
  .process-step {
    padding: 2.5rem 2rem 2.5rem 0;
    border-right: 1px solid rgba(10,10,8,0.1);
    position: relative;
  }
  .process-step:last-child { border-right: none; padding-right: 0; }
  .step-num {
    font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em;
    color: var(--gold2); margin-bottom: 1.5rem; display: block;
  }
  .step-title {
    font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
    margin-bottom: 0.75rem; color: var(--ink); line-height: 1.2;
  }
  .step-text { font-size: 0.84rem; color: rgba(10,10,8,0.55); line-height: 1.75; }
  .step-connector {
    position: absolute; right: 0; top: 2.5rem;
    width: 1rem; height: 1px; background: var(--gold); right: -0.5rem;
    display: none;
  }

  @media (max-width: 900px) {
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step:nth-child(2) { border-right: none; }
    .process-step { border-bottom: 1px solid rgba(10,10,8,0.1); }
    .process-step:nth-last-child(-n+2) { border-bottom: none; }
  }
  @media (max-width: 600px) {
    .process-steps { grid-template-columns: 1fr; }
    .process-step { border-right: none; border-bottom: 1px solid rgba(10,10,8,0.1); }
  }

  /* ── TESTIMONIALS ── */
  #testimonials { border-bottom: 1px solid var(--line); }
  .testimonials-title {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; letter-spacing: -0.02em; margin-top: 0.5rem; max-width: 500px;
  }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin-top: 4rem;
  }
  .testi-card {
    padding: 2.5rem; border: 1px solid var(--line);
    margin-left: -1px; margin-top: -1px;
    position: relative; transition: background 0.3s;
  }
  .testi-card:hover { background: rgba(245,166,35,0.04); z-index: 1; }
  .testi-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1.2rem; letter-spacing: 0.1em; }
  .testi-quote {
    font-size: 0.9rem; line-height: 1.8; color: rgba(245,242,235,0.7);
    font-style: italic; margin-bottom: 1.5rem;
  }
  .testi-name {
    font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
  }
  .testi-meta { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

  @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

  /* ── SERVICE AREA ── */
  #area { background: rgba(245,166,35,0.03); border-bottom: 1px solid var(--line); }
  .area-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }
  .area-text h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  .area-text h2 em { color: var(--gold); font-style: italic; }
  .area-text p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; }
  .area-chips {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
  }
  .chip {
    font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.4rem 0.9rem;
    border: 1px solid var(--line); color: var(--muted);
    transition: border-color 0.2s, color 0.2s;
  }
  .chip:hover { border-color: var(--gold); color: var(--gold); }

  .area-map {
    position: relative; aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .map-circle {
    width: 100%; padding-bottom: 100%; border-radius: 50%;
    border: 1px solid var(--line); position: absolute;
    animation: expand 6s ease-in-out infinite;
  }
  .map-circle:nth-child(2) { width: 70%; padding-bottom: 70%; animation-delay: 1s; border-color: rgba(245,166,35,0.2); }
  .map-circle:nth-child(3) { width: 40%; padding-bottom: 40%; animation-delay: 2s; border-color: rgba(245,166,35,0.35); }
  @keyframes expand {
    0%,100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .map-center {
    position: absolute; width: 16px; height: 16px; border-radius: 50%;
    background: var(--gold); z-index: 2;
    box-shadow: 0 0 0 6px rgba(245,166,35,0.2);
    animation: pulse-center 3s ease-in-out infinite;
  }
  @keyframes pulse-center {
    0%,100% { box-shadow: 0 0 0 6px rgba(245,166,35,0.2); }
    50% { box-shadow: 0 0 0 12px rgba(245,166,35,0.08); }
  }
  .map-label {
    position: absolute; font-family: var(--mono); font-size: 0.6rem;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  }
  .map-label.top    { top: 5%; left: 50%; transform: translateX(-50%); }
  .map-label.right  { right: 3%; top: 50%; transform: translateY(-50%); }
  .map-label.bottom { bottom: 5%; left: 50%; transform: translateX(-50%); }
  .map-label.left   { left: 3%; top: 50%; transform: translateY(-50%); }
  .radius-label {
    position: absolute; right: 0; top: 50%;
    font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em;
    color: var(--gold); opacity: 0.7;
    writing-mode: vertical-lr; transform: translateY(-50%) translateX(1.5rem);
  }

  @media (max-width: 768px) {
    .area-inner { grid-template-columns: 1fr; gap: 3rem; }
    .area-map { max-width: 300px; margin: 0 auto; }
  }

  /* ── CTA ── */
  #cta {
    text-align: center; padding: 8rem 3rem;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0A0A08 0%, #131309 100%);
  }
  .cta-bg-sun {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-eyebrow {
    font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
    position: relative; z-index: 1;
  }
  .cta-title {
    font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 900; letter-spacing: -0.02em; margin-bottom: 1.5rem;
    position: relative; z-index: 1; line-height: 1.05;
  }
  .cta-title em { color: var(--gold); font-style: italic; }
  .cta-sub {
    font-size: 0.95rem; color: var(--muted); margin-bottom: 2.5rem;
    position: relative; z-index: 1; max-width: 420px; margin-left: auto; margin-right: auto;
  }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }
  .cta-phone {
    margin-top: 2rem; font-family: var(--mono); font-size: 0.75rem;
    letter-spacing: 0.15em; color: var(--muted); position: relative; z-index: 1;
  }
  .cta-phone a { color: var(--gold); text-decoration: none; }
  .cta-phone a:hover { text-decoration: underline; }

  /* ── FOOTER ── */
  footer {
    padding: 3rem; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-brand {
    font-family: var(--serif); font-size: 1rem; font-weight: 700;
    color: var(--cream); display: flex; align-items: center; gap: 0.5rem;
  }
  .footer-copy { font-size: 0.75rem; color: var(--muted); }
  .footer-links { display: flex; gap: 2rem; list-style: none; }
  .footer-links a { font-size: 0.75rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }

  @media (max-width: 600px) { footer { flex-direction: column; align-items: flex-start; } }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
  .wa-float svg { width: 28px; height: 28px; fill: #fff; }
