/* =========================================================
   Ghaness Web Agency — black / chrome monochrome + crimson
   ========================================================= */

:root {
  --bg: #060607;
  --bg-2: #0d0d10;
  --text: #e9e9ee;
  --head: #ffffff;
  --muted: #9a9aa6;
  --muted-2: #6a6a74;
  --dim: #74747e;

  --crimson: #e6173c;
  --crimson-l: #ff4d68;
  --crimson-d: #a8102e;
  --crimson-grad: linear-gradient(135deg, #ff4d68 0%, #e6173c 55%, #a8102e 100%);
  --chrome-grad: linear-gradient(160deg, #ffffff 0%, #d2d2da 38%, #8a8a92 70%, #56565e 100%);

  --line: rgba(255,255,255,0.09);
  --line-2: rgba(255,255,255,0.16);
  --card: linear-gradient(165deg, #171719 0%, #0b0b0d 100%);

  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.65; font-size: 16px; overflow-x: hidden; min-height: 100vh;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; color: var(--head); line-height: 1.06; font-weight: 700; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(230,23,60,.35); color: #fff; }

.dim { color: var(--dim); }
.grad { background: var(--crimson-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.skip-link { position: fixed; top: -60px; left: 16px; z-index: 200; background: var(--crimson); color: #fff; padding: 10px 18px; border-radius: 10px; transition: top .25s var(--ease); }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--crimson-l); outline-offset: 3px; border-radius: 6px; }

/* ---------- background ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.glow-1 { width: 620px; height: 620px; top: -220px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(230,23,60,.5), transparent 70%); }
.glow-2 { width: 520px; height: 520px; bottom: -180px; right: -120px; background: radial-gradient(circle, rgba(120,120,130,.35), transparent 70%); opacity: .4; }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 75%); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--crimson-grad); z-index: 300; box-shadow: 0 0 12px rgba(230,23,60,.6); }

.cursor-glow { position: fixed; top: 0; left: 0; width: 340px; height: 340px; border-radius: 50%; pointer-events: none; z-index: 1; opacity: 0; transition: opacity .35s; background: radial-gradient(circle, rgba(255,77,104,.12), transparent 60%); mix-blend-mode: screen; }
.cursor-glow.active { opacity: 1; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; }
.container.narrow { max-width: 820px; }
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }

.glass { background: var(--card); border: 1px solid var(--line); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 24px 60px rgba(0,0,0,.5); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 600; font-size: .95rem; padding: 13px 24px; border-radius: 12px; border: 1px solid transparent; white-space: nowrap; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s; }
.btn .ic { width: 18px; height: 18px; }
.btn-primary { background: var(--crimson-grad); color: #fff; box-shadow: 0 10px 30px rgba(230,23,60,.4), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(230,23,60,.55), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--head); border-color: var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.28); }
.btn-block { width: 100%; }

/* ---------- navbar ---------- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 16px clamp(16px,4vw,28px); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 20px; padding: 11px 12px 11px 20px; border-radius: 16px; transition: background .3s, box-shadow .3s; }
.navbar.scrolled .nav-inner { background: rgba(10,10,12,.82); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--head); }
.logo-mark { width: 26px; height: 26px; filter: drop-shadow(0 3px 10px rgba(230,23,60,.5)); }
.logo-mark svg { width: 100%; height: 100%; }
.logo-dim { color: var(--muted-2); font-weight: 500; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { padding: 9px 15px; border-radius: 10px; font-size: .93rem; color: var(--muted); font-weight: 500; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--head); background: rgba(255,255,255,.05); }
.nav-right { display: flex; }
.nav-cta { padding: 10px 20px; border-radius: 10px; background: var(--crimson-grad); color: #fff; font-weight: 600; font-size: .93rem; box-shadow: 0 8px 22px rgba(230,23,60,.4); transition: transform .2s; }
.nav-cta:hover { transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; min-width: 44px; min-height: 44px; background: none; border: 0; -webkit-tap-highlight-color: transparent; }
.hamburger span { width: 22px; height: 2px; background: var(--head); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; top: 76px; left: clamp(16px,4vw,28px); right: clamp(16px,4vw,28px); border-radius: 18px; padding: 10px; z-index: 199; display: none; flex-direction: column; opacity: 0; transform: translateY(-12px); transition: opacity .25s var(--ease), transform .25s var(--ease); background: rgba(12,12,14,.95); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-link { padding: 14px 16px; border-radius: 12px; color: var(--text); font-weight: 500; }
.mobile-link:hover { background: rgba(255,255,255,.05); }
.mobile-cta { background: var(--crimson-grad); color: #fff; text-align: center; justify-content: center; margin-top: 6px; font-weight: 600; }

/* ---------- badges / pills ---------- */
.badge, .pill { display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: var(--text); padding: 7px 15px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255,255,255,.03); }
.badge-dot, .pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--crimson-l); box-shadow: 0 0 10px 1px rgba(255,77,104,.7); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 150px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }
.hero-copy .badge { margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5rem); margin-bottom: 24px; }
.hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: clamp(22px,4vw,48px); }
.hero-stats li { display: flex; flex-direction: column; gap: 3px; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--head); }
.stat-lbl { font-size: .82rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }

.hero-visual { position: relative; height: 400px; display: grid; place-items: center; }
.star { filter: drop-shadow(0 20px 50px rgba(0,0,0,.6)); animation: spinstar 22s linear infinite; }
.star-lg { width: 260px; }
.star-sm { position: absolute; width: 96px; top: 30px; right: 20px; animation-duration: 16s; }
.star-xs { position: absolute; width: 54px; bottom: 40px; left: 30px; filter: drop-shadow(0 6px 18px rgba(230,23,60,.6)); animation-duration: 12s; }
@keyframes spinstar { to { transform: rotate(360deg); } }

/* ---------- trust ---------- */
.trust { margin-top: 90px; text-align: center; }
.trust-label { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); margin-bottom: 22px; }
.trust-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-tags span { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: #cfcfd6; padding: 9px 18px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.02); }

/* ---------- section head ---------- */
.sec-head { max-width: 680px; margin: 0 0 clamp(40px,6vw,64px); }
.sec-head .pill { margin-bottom: 20px; }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.sec-lead { color: var(--muted); margin-top: 16px; font-size: 1.06rem; max-width: 560px; }

/* ---------- bento / services ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { border-radius: var(--radius-lg); padding: 30px; position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s; }
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.06), transparent 55%); pointer-events: none; }
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card-wide { grid-column: span 2; }
.card-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; color: var(--crimson-l); background: rgba(230,23,60,.1); border: 1px solid rgba(255,77,104,.25); margin-bottom: 18px; }
.card-ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.2rem; margin-bottom: 9px; }
.card p { font-size: .94rem; color: var(--muted); }
.mini-site { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 18px; border-radius: 14px; background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); border: 1px solid var(--line); }
.ms-bar { height: 10px; border-radius: 5px; background: rgba(255,255,255,.22); flex: 1 1 100%; max-width: 220px; }
.ms-bar.w60 { max-width: 140px; opacity: .55; }
.ms-btn { height: 30px; width: 96px; border-radius: 8px; background: var(--crimson-grad); }
.mini-chart { margin-top: 22px; display: flex; align-items: flex-end; gap: 10px; height: 74px; padding: 14px 16px; border-radius: 14px; background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); border: 1px solid var(--line); }
.mini-chart i { flex: 1; border-radius: 4px 4px 0 0; background: rgba(255,255,255,.18); }
.mini-chart i:nth-child(1){ height: 30%; } .mini-chart i:nth-child(2){ height: 48%; } .mini-chart i:nth-child(3){ height: 40%; }
.mini-chart i:nth-child(4){ height: 66%; } .mini-chart i:nth-child(5){ height: 82%; background: var(--crimson-grad); } .mini-chart i:nth-child(6){ height: 100%; background: var(--crimson-grad); }

/* ---------- stat cards ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { border-radius: var(--radius-lg); padding: 34px 30px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 10px; min-height: 200px; justify-content: flex-end; transition: transform .35s var(--ease), border-color .35s; }
.stat-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(100% 80% at 80% 0%, rgba(255,77,104,.14), transparent 55%); pointer-events: none; }
.stat-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.stat-huge { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; line-height: 1; background: var(--crimson-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-cap { color: var(--muted); font-size: .95rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { border-radius: var(--radius); padding: 28px 26px; transition: transform .35s var(--ease), border-color .35s; }
.step:hover { transform: translateY(-5px); border-color: var(--line-2); }
.step-n { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: transparent; background: var(--chrome-grad); -webkit-background-clip: text; background-clip: text; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--muted); }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { border-radius: var(--radius-lg); padding: 34px 30px; position: relative; overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s; }
.plan:hover { transform: translateY(-6px); border-color: var(--line-2); }
.plan-feat { border-color: rgba(255,77,104,.4); box-shadow: 0 30px 70px rgba(230,23,60,.18), inset 0 1px 0 rgba(255,255,255,.06); }
.plan-feat::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px; background: var(--crimson-grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .6; pointer-events: none; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--crimson-grad); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 15px; border-radius: 999px; box-shadow: 0 8px 20px rgba(230,23,60,.5); white-space: nowrap; }
.plan-name { font-size: 1.35rem; margin-bottom: 6px; }
.plan-desc { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.plan-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.9rem; font-weight: 700; color: var(--head); line-height: 1; margin-bottom: 4px; }
.plan-price .cur { font-size: 1.3rem; color: var(--muted); vertical-align: super; margin-right: 2px; }
.plan-price .per { font-size: .8rem; color: var(--muted-2); font-family: 'Inter'; font-weight: 500; margin-left: 8px; }
.plan-gyd { color: var(--muted-2); font-size: .9rem; margin-bottom: 22px; }
.plan-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan-feats li { position: relative; padding-left: 28px; font-size: .93rem; color: var(--text); }
.plan-feats li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: rgba(230,23,60,.12); border: 1px solid rgba(255,77,104,.3); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4d68' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E"); background-size: 11px; background-position: center; background-repeat: no-repeat; }
.plans-note { text-align: center; margin-top: 30px; color: var(--muted); }
.plans-note a { color: var(--crimson-l); border-bottom: 1px solid rgba(255,77,104,.4); }
.plans-note a:hover { color: #fff; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { border-radius: var(--radius-lg); padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; transition: transform .35s var(--ease), border-color .35s; }
.quote:hover { transform: translateY(-5px); border-color: var(--line-2); }
.stars { color: #ffc94d; letter-spacing: 3px; font-size: 1rem; }
.quote blockquote { font-size: 1rem; color: var(--text); line-height: 1.7; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.ava { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: 'Space Grotesk'; font-weight: 700; color: #fff; background: var(--crimson-grad); }
.who { display: flex; flex-direction: column; }
.who strong { color: var(--head); font-weight: 600; }
.who span { font-size: .85rem; color: var(--muted-2); }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.02); overflow: hidden; transition: border-color .3s, background .3s; }
.faq-item[open] { border-color: var(--line-2); background: rgba(230,23,60,.05); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.04rem; color: var(--head); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.faq-x::before, .faq-x::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--crimson-l); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-x::before { width: 14px; height: 2px; } .faq-x::after { width: 2px; height: 14px; }
.faq-item[open] .faq-x::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { padding: 0 22px 22px; color: var(--muted); }
.faq-a p { font-size: .96rem; }

/* ---------- contact ---------- */
.contact-panel { border-radius: var(--radius-lg); padding: clamp(28px,4vw,48px); display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px,4vw,56px); }
.contact-copy .pill { margin-bottom: 18px; }
.contact-copy .sec-lead { margin-bottom: 28px; }
.contact-list { display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.c-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--crimson-l); background: rgba(230,23,60,.1); border: 1px solid rgba(255,77,104,.25); }
.c-ic svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); font-weight: 600; }
.contact-list a { color: var(--head); font-weight: 600; }
.contact-list a:hover { color: var(--crimson-l); }
.contact-form { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: .85rem; color: var(--muted); }
.field input, .field select, .field textarea { background: rgba(0,0,0,.4); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; color: var(--text); font-size: 16px; transition: border-color .2s, background .2s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--crimson-l); background: rgba(0,0,0,.6); }
.field textarea { resize: vertical; min-height: 90px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a9aa6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.form-note { font-size: .9rem; min-height: 1.2em; }
.form-note.error { color: #ff8a8a; } .form-note.success { color: #45d67d; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(56px,7vw,88px) 0 34px; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 320px; margin-bottom: 20px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 6px; }
.footer-col a { color: var(--muted); font-size: .94rem; width: fit-content; transition: color .2s; }
.footer-col a:hover { color: var(--crimson-l); }
.footer-loc { color: var(--muted-2); font-size: .9rem; }
.footer-word { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(70px, 22vw, 300px); line-height: .8; text-align: center; letter-spacing: -.04em; background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.02)); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 10px 0 -.12em; user-select: none; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .86rem; color: var(--muted-2); }

/* ---------- floating whatsapp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 150; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #25d366; box-shadow: 0 10px 30px rgba(37,211,102,.5); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- reveal ---------- */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-up { transform: translateY(32px); }
.reveal-left { transform: translateX(-36px); } .reveal-right { transform: translateX(36px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 300px; order: -1; }
  .star-lg { width: 200px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 2; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-feat { order: -1; }
  .quotes { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bento, .stat-grid, .steps { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* short / landscape screens — lighten the hero's top space */
@media (max-height: 640px) {
  .hero { padding-top: 104px; padding-bottom: 28px; }
  .hero h1 { font-size: clamp(2rem, 5.2vw, 3.1rem); margin-bottom: 18px; }
  .hero-sub { margin-bottom: 26px; }
  .hero-actions { margin-bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  .star { animation: none; }
}
