/*
Theme Name: Verdantia — Tissue Culture
Theme URI: https://example.com/verdantia
Author: Custom Build
Author URI: https://example.com
Description: A modern, trendy WordPress theme for tissue-culture & biotech plant producers. Botanical green palette, classic PHP templates, no page-builder dependency. Inspired by — not copied from — agri-biotech industry sites.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verdantia
Tags: business, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Botanical palette */
  --c-green-900: #0f2e1d;
  --c-green-800: #14532d;
  --c-green-700: #166534;
  --c-green-600: #1b7a3f;
  --c-green-500: #22a155;
  --c-lime-500:  #65c466;
  --c-lime-400:  #84cc16;
  --c-lime-300:  #bef264;
  --c-cream:     #f7f9f2;
  --c-cream-2:   #eef3e6;
  --c-ink:       #16261c;
  --c-body:      #3a4a40;
  --c-muted:     #6b7c70;
  --c-white:     #ffffff;
  --c-line:      #e2eadb;

  --grad-hero: linear-gradient(135deg, #0f2e1d 0%, #166534 55%, #1b7a3f 100%);
  --grad-accent: linear-gradient(135deg, #22a155 0%, #84cc16 100%);

  --shadow-sm: 0 1px 3px rgba(16,46,29,.08);
  --shadow-md: 0 8px 24px rgba(16,46,29,.10);
  --shadow-lg: 0 24px 60px rgba(16,46,29,.16);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --gap: clamp(1rem, 2.5vw, 2rem);

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-body);
  background: var(--c-white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green-600); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--c-lime-400); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1.1rem; }
ul { margin: 0; padding: 0; }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--tint { background: var(--c-cream); }
.section--dark { background: var(--grad-hero); color: #d7e6db; }
.section--dark h2, .section--dark h3 { color: #fff; }

.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--c-green-600);
  background: var(--c-cream-2);
  padding: .45rem 1rem; border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.section--dark .eyebrow { color: var(--c-lime-300); background: rgba(132,204,22,.12); }
.lead { font-size: 1.1rem; color: var(--c-muted); max-width: 60ch; }
.text-center .lead { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.7rem; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-accent); color: #fff; box-shadow: 0 10px 24px rgba(34,161,85,.32); }
.btn--primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(34,161,85,.42); }
.btn--ghost { background: transparent; color: var(--c-green-700); border-color: var(--c-line); }
.btn--ghost:hover { background: var(--c-cream); border-color: var(--c-green-500); }
.btn--light { background: #fff; color: var(--c-green-700); }
.btn--light:hover { color: var(--c-green-800); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--white-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--c-green-900);
  color: #cfe3d4;
  font-size: .85rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; flex-wrap: wrap; }
.topbar a { color: #cfe3d4; }
.topbar a:hover { color: var(--c-lime-300); }
.topbar__info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__social { display: flex; gap: .35rem; }
.topbar__social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.08);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.topbar__social a:hover { background: var(--c-lime-400); transform: translateY(-2px); }
.topbar__social svg { width: 15px; height: 15px; fill: currentColor; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.site-branding { display: flex; align-items: center; gap: .7rem; }
.site-branding img { max-height: 56px; width: auto; }
.site-branding .site-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--c-green-800); margin: 0; }
.site-branding .site-desc { font-size: .72rem; color: var(--c-muted); letter-spacing: .05em; text-transform: uppercase; }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: .3rem; }
.main-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  color: var(--c-ink); padding: .6rem .9rem; border-radius: var(--radius-sm);
  position: relative; transition: color .25s var(--ease), background .25s var(--ease);
}
.main-nav a:hover, .main-nav .current-menu-item > a, .main-nav .current_page_item > a { color: var(--c-green-700); background: var(--c-cream); }
.main-nav li { position: relative; }
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: .5rem; display: block;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  flex-direction: column; gap: 2px; z-index: 50;
}
.main-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu .sub-menu { top: 0; left: 100%; }
.main-nav .sub-menu a { display: block; padding: .55rem .8rem; }
.menu-item-has-children > a::after { content: "▾"; font-size: .7rem; margin-left: .3rem; opacity: .6; }

.header-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--c-ink); margin: 5px 0; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--grad-hero); color: #e6f1e9; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(132,204,22,.18), transparent 45%),
                    radial-gradient(circle at 15% 90%, rgba(34,161,85,.22), transparent 40%);
}
.hero__leaf { position: absolute; opacity: .08; pointer-events: none; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding: clamp(3.5rem,8vw,6.5rem) 0; }
.hero__eyebrow { color: var(--c-lime-300); background: rgba(132,204,22,.14); }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 .accent { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: #cfe3d4; font-size: 1.12rem; max-width: 52ch; }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero__trust { display: flex; gap: 1.8rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--font-head); font-size: 1.7rem; color: #fff; }
.hero__trust small { color: #a9c4b1; font-size: .82rem; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; color: var(--c-ink);
  border-radius: var(--radius-md); padding: 1rem 1.3rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .8rem; max-width: 260px;
}
.hero__badge .icon { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--grad-accent); display: grid; place-items: center; }
.hero__badge .icon svg { width: 24px; height: 24px; stroke: #fff; }
.hero__badge b { font-family: var(--font-head); display: block; font-size: 1rem; color: var(--c-ink); }
.hero__badge span { font-size: .8rem; color: var(--c-muted); }
.hero__wave { display: block; width: 100%; height: auto; position: relative; z-index: 2; margin-top: -1px; }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat {
  text-align: center; padding: 2rem 1rem; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--radius-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat__num { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: var(--c-green-600); line-height: 1; }
.stat__num .plus { color: var(--c-lime-400); }
.stat__label { margin-top: .5rem; font-weight: 600; color: var(--c-ink); font-family: var(--font-head); font-size: 1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__media .frame { position: absolute; inset: 16px -16px -16px 16px; border: 2px solid var(--c-lime-400); border-radius: var(--radius-lg); z-index: -1; }
.about ul.checks { list-style: none; margin: 1.4rem 0; display: grid; gap: .7rem; }
.about ul.checks li { display: flex; gap: .7rem; align-items: flex-start; }
.about ul.checks svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--gap); }
.product-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card__media { aspect-ratio: 4/5; overflow: hidden; position: relative; background: var(--c-cream-2); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.08); }
.product-card__tag { position: absolute; top: .8rem; left: .8rem; background: rgba(15,46,29,.82); color: #fff; font-size: .72rem; font-weight: 600; padding: .3rem .7rem; border-radius: var(--radius-pill); font-family: var(--font-head); letter-spacing: .03em; }
.product-card__body { padding: 1.2rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.product-card__body h3 { margin: 0; font-size: 1.18rem; }
.product-card__body p { font-size: .92rem; color: var(--c-muted); margin: 0; }
.product-card__link { margin-top: auto; padding-top: .7rem; display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--c-green-600); }
.product-card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.product-card:hover .product-card__link svg { transform: translateX(4px); }

/* ============================================================
   FEATURES (Why choose us)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--gap); }
.feature {
  background: #fff; border-radius: var(--radius-md); padding: 2rem 1.7rem;
  border: 1px solid var(--c-line); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature:hover::after { transform: scaleX(1); }
.feature__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--c-cream-2); display: grid; place-items: center; margin-bottom: 1.1rem; transition: background .35s var(--ease); }
.feature:hover .feature__icon { background: var(--grad-accent); }
.feature__icon svg { width: 28px; height: 28px; stroke: var(--c-green-600); transition: stroke .35s var(--ease); }
.feature:hover .feature__icon svg { stroke: #fff; }
.feature h3 { font-size: 1.2rem; }
.feature p { font-size: .94rem; color: var(--c-muted); margin: 0; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); position: relative; }
.process__step { text-align: center; position: relative; }
.process__num {
  width: 76px; height: 76px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: #fff; border: 2px solid var(--c-line); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--c-green-600);
  position: relative; z-index: 2; transition: all .35s var(--ease);
}
.process__step:hover .process__num { background: var(--grad-accent); color: #fff; border-color: transparent; transform: scale(1.08); }
.process__step:not(:last-child)::after {
  content: ""; position: absolute; top: 38px; left: 60%; width: 80%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-lime-400) 0 8px, transparent 8px 16px);
  z-index: 1;
}
.process h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.process p { font-size: .9rem; color: var(--c-muted); margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1rem; grid-auto-flow: dense; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 1; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item__overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,46,29,.85), transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease); display: flex; align-items: flex-end; padding: 1.1rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span { color: #fff; font-family: var(--font-head); font-weight: 600; transform: translateY(10px); transition: transform .4s var(--ease); }
.gallery-item:hover .gallery-item__overlay span { transform: translateY(0); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner .inner {
  background: var(--grad-hero); border-radius: var(--radius-lg); padding: clamp(2.5rem,6vw,4.5rem);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; position: relative; overflow: hidden;
}
.cta-banner .inner::before { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(132,204,22,.25), transparent 70%); }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #cfe3d4; margin: 0; }
.cta-banner .actions { display: flex; gap: .8rem; justify-content: flex-end; flex-wrap: wrap; position: relative; z-index: 2; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.contact__info { display: grid; gap: 1.2rem; }
.contact__card { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 1.3rem 1.4rem; }
.contact__card .icon { width: 50px; height: 50px; flex: none; border-radius: 14px; background: var(--c-cream-2); display: grid; place-items: center; }
.contact__card .icon svg { width: 24px; height: 24px; stroke: var(--c-green-600); }
.contact__card b { font-family: var(--font-head); color: var(--c-ink); display: block; margin-bottom: .15rem; }
.contact__card span, .contact__card a { font-size: .95rem; color: var(--c-muted); }

.form-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-head); font-size: .85rem; font-weight: 600; color: var(--c-ink); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .98rem; color: var(--c-ink); background: var(--c-cream); transition: border .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-green-500); box-shadow: 0 0 0 3px rgba(34,161,85,.14); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-feedback { margin-top: 1rem; padding: .8rem 1rem; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form-feedback.is-success { display: block; background: #e6f7ec; color: var(--c-green-700); border: 1px solid #b6e4c4; }
.form-feedback.is-error { display: block; background: #fdecea; color: #b3261e; border: 1px solid #f5c2bd; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--c-green-900); color: #b9d0c0; padding-top: clamp(3rem,6vw,5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.2rem; font-family: var(--font-head); }
.site-footer ul { list-style: none; display: grid; gap: .6rem; }
.site-footer a { color: #b9d0c0; font-size: .95rem; }
.site-footer a:hover { color: var(--c-lime-300); padding-left: 4px; }
.footer-brand img { max-height: 64px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .92rem; color: #9bb6a4; max-width: 34ch; }
.footer-social { display: flex; gap: .5rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); transition: background .25s var(--ease), transform .25s var(--ease); }
.footer-social a:hover { background: var(--c-lime-400); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-subscribe form { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-subscribe input { flex: 1; padding: .75rem 1rem; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; font-size: .92rem; }
.footer-subscribe input::placeholder { color: #8aa593; }
.footer-subscribe button { border: 0; cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8aa593; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .3s var(--ease); animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero { background: var(--grad-hero); color: #fff; padding: clamp(3rem,7vw,5.5rem) 0 clamp(2.5rem,5vw,4rem); position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 85% 15%, rgba(132,204,22,.18), transparent 45%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .4rem; }
.breadcrumbs { font-size: .9rem; color: #b9d0c0; }
.breadcrumbs a { color: var(--c-lime-300); }
.entry-content { max-width: 820px; }
.entry-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }
.entry-content h2, .entry-content h3 { margin-top: 1.8rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay:.08s;} .reveal[data-delay="2"]{ transition-delay:.16s;}
.reveal[data-delay="3"]{ transition-delay:.24s;} .reveal[data-delay="4"]{ transition-delay:.32s;}

/* ============================================================
   WORDPRESS CORE
   ============================================================ */
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.aligncenter { margin-inline: auto; }
.wp-caption-text { font-size: .85rem; color: var(--c-muted); text-align: center; }
.sticky, .gallery-caption { display: block; }
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 2rem; }
.pagination .page-numbers { padding: .5rem .9rem; border: 1px solid var(--c-line); border-radius: var(--radius-sm); }
.pagination .current { background: var(--grad-accent); color: #fff; border-color: transparent; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero .container, .about, .contact, .cta-banner .inner { grid-template-columns: 1fr; }
  .stats, .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner .actions { justify-content: flex-start; }
  .process__step::after { display: none; }
  .hero__media { order: -1; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(82%, 340px);
    background: #fff; box-shadow: var(--shadow-lg); padding: 5rem 1.4rem 2rem;
    transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; z-index: 90;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .main-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 1rem; display: none; }
  .main-nav .menu-item-has-children.is-expanded > .sub-menu { display: flex; }
  .header-cta .btn--primary { display: none; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(15,46,29,.45); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 80; }
  .nav-overlay.is-open { opacity: 1; visibility: visible; }
}
@media (max-width: 540px) {
  .stats, .process, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero__badge { left: 0; bottom: -16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
