/* =====================================================
   RoyalBird Supply – styles.css
   Design: Luxury Minimal | Deep Green + Gold + Ivory
   ===================================================== */

/* ── TOKENS ── */
:root {
    --green-deep:   #0d2818;
    --green-mid:    #1a4a2e;
    --green-light:  #2d6a4f;
    --gold:         #c9a84c;
    --gold-light:   #e4c77b;
    --gold-pale:    #f5e6b8;
    --ivory:        #faf8f3;
    --white:        #ffffff;
    --black:        #080e09;
    --text:         #1a1a1a;
    --text-muted:   #5a5a5a;
    --border:       rgba(201, 168, 76, 0.25);
  
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body:    'Jost', system-ui, sans-serif;
  
    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;
  
    --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* ── RESET ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body { font-family: var(--ff-body); font-weight: 400; color: var(--text); background: var(--ivory); overflow-x: hidden; }
  img { display: block; width: 100%; object-fit: cover; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; }
  
  /* ── UTILITY ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
  .section { padding: clamp(5rem, 10vw, 8rem) 0; }
  .section__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
  .section__eyebrow {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
  }
  .section__title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--green-deep);
  }
  .section__title em { font-style: italic; color: var(--gold); }
  .section__sub { margin-top: 1rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
  
  /* ── SCROLL REVEAL ── */
  .reveal, .product-card, .why__card, .tcard, .how__step, .about__grid > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .visible { opacity: 1 !important; transform: translateY(0) !important; }
  
  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .btn:hover::after { opacity: 1; }
  .btn:active { transform: scale(0.97); }
  
  .btn--gold { background: var(--gold); color: var(--black); }
  .btn--gold:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
  
  .btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
  }
  .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
  
  .btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
  }
  .btn--outline-light:hover { background: rgba(255,255,255,0.08); }
  
  .btn--dark { background: var(--green-deep); color: var(--white); }
  .btn--dark:hover { background: var(--green-mid); box-shadow: var(--shadow-md); }
  
  .btn--sm { padding: 0.65rem 1.4rem; font-size: 0.8rem; }
  
  /* ── NAV ── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.4s, box-shadow 0.4s;
  }
  .nav--scrolled {
    background: rgba(8, 14, 9, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem clamp(1.25rem, 4vw, 2.5rem);
    max-width: 1300px;
    margin: 0 auto;
  }
  .nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .nav__logo em { color: var(--gold); font-style: italic; font-weight: 400; }
  .nav__logo-crown { color: var(--gold); font-size: 1.3rem; }
  .nav__links { display: flex; align-items: center; gap: 2.2rem; }
  .nav__links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
  }
  .nav__links a:hover { color: var(--gold); }
  .nav__cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 3px;
  }
  .nav__cta:hover { background: var(--gold-light) !important; }
  .nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
  .nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
  .nav__mobile {
    display: none;
    flex-direction: column;
    background: var(--black);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1.2rem;
  }
  .nav__mobile a {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 1rem;
  }
  .nav__mobile.open { display: flex; }
  @media (max-width: 800px) {
    .nav__links { display: none; }
    .nav__burger { display: flex; }
  }
  
  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero__bg { position: absolute; inset: 0; }
  .hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.05); animation: slowZoom 14s ease-out forwards; }
  @keyframes slowZoom { to { transform: scale(1); } }
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(8,14,9,0.88) 0%,
      rgba(13,40,24,0.7) 50%,
      rgba(8,14,9,0.5) 100%
    );
  }
  .hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    padding: clamp(7rem, 15vw, 10rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6rem);
    max-width: min(680px, 90vw);
    margin-left: max(5vw, 1.25rem);
  }
  .hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 1.25rem;
    animation-delay: 0.2s;
  }
  .hero__headline {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation-delay: 0.35s;
  }
  .hero__headline em { color: var(--gold); font-style: italic; display: block; font-weight: 400; }
  .hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 2.2rem;
    animation-delay: 0.5s;
  }
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation-delay: 0.65s;
  }
  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation-delay: 0.8s;
  }
  .badge {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.05);
  }
  .badge__icon { color: var(--gold); font-size: 0.65rem; }
  .hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
  }
  .hero__scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); writing-mode: vertical-rl; }
  .hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollAnim 2s ease-in-out infinite; }
  @keyframes scrollAnim { 0%,100%{opacity:0.3;transform:scaleY(0.5);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }
  .br-hide { display: none; }
  @media (min-width: 600px) { .br-hide { display: inline; } }
  
  /* ── ABOUT ── */
  .about { background: var(--white); }
  .about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
  @media (max-width: 768px) { .about__grid { grid-template-columns: 1fr; } }
  .about__media { position: relative; }
  .about__img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
  .about__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .about__img-wrap:hover .about__img { transform: scale(1.04); }
  .about__img-badge {
    position: absolute;
    bottom: 1.5rem;
    right: -1rem;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    font-family: var(--ff-body);
    font-weight: 600;
  }
  .about__img-badge-num { display: block; font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
  .about__img-badge span:last-child { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
  .about__gold-line {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 60%;
    height: 60%;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 4px 0 0 0;
    opacity: 0.4;
    pointer-events: none;
  }
  .about__text .section__title { text-align: left; }
  .about__body { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.2rem; font-size: 1.02rem; }
  .about__mission {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--ivory);
    border-left: 3px solid var(--gold);
    padding: 1.2rem 1.4rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.8rem 0 2rem;
  }
  .about__mission-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
  .about__mission p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }
  .about__mission strong { color: var(--green-deep); }
  
  /* ── PRODUCTS ── */
  .products { background: var(--ivory); }
  .products__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; }
  .product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .product-card__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
  .product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .product-card:hover .product-card__img { transform: scale(1.06); }
  .product-card__tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
  }
  .product-card__tag--dark { background: var(--green-deep); color: var(--white); }
  .product-card__body { padding: 1.8rem; }
  .product-card__body h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.6rem; }
  .product-card__body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.2rem; }
  .product-card__price { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--gold); margin-bottom: 1.2rem; }
  
  /* ── HOW IT WORKS ── */
  .how { background: var(--green-deep); color: var(--white); }
  .how .section__title { color: var(--white); }
  .how__steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; }
  .how__step {
    flex: 1 1 200px;
    max-width: 280px;
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
  }
  .how__step-num {
    font-family: var(--ff-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: -0.5rem;
  }
  .how__step-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
  .how__step h3 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--gold-light); }
  .how__step p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; }
  .how__connector {
    flex: 0 0 auto;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2));
    margin-top: 5rem;
    align-self: flex-start;
  }
  @media (max-width: 700px) { .how__connector { display: none; } }
  
  /* ── WHY CHOOSE US ── */
  .why { background: var(--white); }
  .why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
  .why__card {
    padding: 2.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  }
  .why__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .why__card:hover::before { transform: scaleX(1); }
  .why__card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .why__icon { font-size: 2.4rem; margin-bottom: 1.2rem; display: block; }
  .why__card h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.65rem; }
  .why__card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }
  
  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--ivory); }
  .testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; align-items: start; }
  .tcard {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .tcard--featured {
    background: var(--green-deep);
    border-color: var(--gold);
    transform: scale(1.03);
  }
  .tcard--featured:hover { transform: scale(1.03) translateY(-4px); }
  .tcard__quote { font-family: var(--ff-display); font-size: 4rem; color: var(--gold); line-height: 1; margin-bottom: -1rem; opacity: 0.6; }
  .tcard__stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
  .tcard__body { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
  .tcard--featured .tcard__body { color: rgba(255,255,255,0.8); }
  .tcard__author { display: flex; align-items: center; gap: 0.85rem; }
  .tcard__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-light), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem; color: var(--white);
    flex-shrink: 0;
  }
  .tcard--featured .tcard__avatar { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); }
  .tcard__author strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
  .tcard--featured .tcard__author strong { color: var(--white); }
  .tcard__author span { font-size: 0.77rem; color: var(--text-muted); }
  .tcard--featured .tcard__author span { color: rgba(255,255,255,0.55); }
  
  /* ── CONTACT ── */
  .contact { position: relative; background: var(--green-deep); }
  .contact__bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(45,106,79,0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 800px) { .contact__inner { grid-template-columns: 1fr; } }
  .contact__left .section__title { text-align: left; }
  .contact__info { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
  .contact__info-item {
    display: flex; align-items: center; gap: 0.85rem;
    color: rgba(255,255,255,0.75); font-size: 0.92rem;
  }
  .contact__info-icon { font-size: 1.1rem; flex-shrink: 0; }
  .contact__btns { display: flex; flex-wrap: wrap; gap: 1rem; }
  .contact__form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(8px);
  }
  .contact__form h3 {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.8rem;
  }
  .form-group { margin-bottom: 1.1rem; }
  .form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--ff-body);
    font-size: 0.92rem;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    appearance: none;
  }
  .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a84c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
  .form-group select option { background: var(--green-deep); color: var(--white); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.09);
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .contact__form-note { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; }
  
  /* ── FOOTER ── */
  .footer { background: var(--black); color: rgba(255,255,255,0.6); }
  .footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  @media (max-width: 700px) { .footer__inner { grid-template-columns: 1fr; gap: 2rem; } }
  .footer__brand { display: flex; flex-direction: column; gap: 0.6rem; }
  .footer__name { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
  .footer__name em { color: var(--gold); font-style: italic; }
  .footer__brand p { font-size: 0.88rem; line-height: 1.7; max-width: 240px; }
  .footer__links, .footer__contact { display: flex; flex-direction: column; gap: 0.7rem; }
  .footer__links h4, .footer__contact h4 {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.3rem;
  }
  .footer__links a { font-size: 0.88rem; transition: color 0.2s; }
  .footer__links a:hover { color: var(--gold); }
  .footer__contact p { font-size: 0.88rem; }
  .footer__wa { color: var(--gold) !important; font-weight: 600; font-size: 0.88rem; margin-top: 0.4rem; }
  .footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
  }
  
  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.65); }
  .wa-float__pulse {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: pulse 2.5s ease-out infinite;
  }
  @keyframes pulse { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.8);opacity:0} }
  
  /* ── RESPONSIVE TWEAKS ── */
  @media (max-width: 600px) {
    .hero__content { margin-left: 0; padding-left: 1.25rem; padding-right: 1.25rem; }
    .hero__scroll { display: none; }
    .about__img-badge { right: 0.5rem; }
  }