/*
Theme Name:  AM Web Studio
Theme URI:   https://amwebstudio.com
Author:      Abdul Majid
Author URI:  https://amwebstudio.com
Description: Premium WordPress theme for AM Web Studio — conversion-focused design for clinics, dentists, real estate & local businesses in Pakistan.
Version:     1.0.0
License:     GPL-2.0-or-later
Text Domain: am-web-studio
Tags:        business, one-page, custom-colors, full-width-template, translation-ready
*/

/* ===== CSS Variables ===== */
:root {
  --bg: #ffffff;
  --fg: #0f1a2e;
  --muted: #5a6a85;
  --border: #e6ecf5;
  --card: #ffffff;
  --primary: #2563eb;
  --primary-2: #4f7cff;
  --primary-dark: #1d4ed8;
  --primary-soft: #eaf1ff;
  --accent: #dbe7ff;
  --wa: #25d366;
  --wa-dark: #1ebe5d;
  --dark: #0f1a2e;
  --radius: 16px;
  --shadow-sm: 0 4px 14px -6px rgba(37,99,235,.18);
  --shadow: 0 12px 32px -14px rgba(15,26,46,.18);
  --shadow-lg: 0 24px 60px -20px rgba(37,99,235,.35);
  --shadow-cta: 0 12px 30px -10px rgba(37,211,102,.45);
  --grad: linear-gradient(135deg,#3b82f6,#2563eb 60%,#1e40af);
  --font-display: "Plus Jakarta Sans","Inter",system-ui,sans-serif;
  --font-body: "Inter",system-ui,sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; color: var(--fg); }
h1 { font-size: clamp(2rem,4.2vw,3.6rem); }
h2 { font-size: clamp(1.75rem,3.2vw,2.75rem); }
h3 { font-size: 1.1rem; }
p { color: var(--muted); }

/* ===== Layout ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 1.5rem; font-size: 1rem; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: var(--shadow-cta); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { opacity: .9; transform: translateY(-2px); }
.btn-ghost { background: var(--card); color: var(--fg); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--primary-soft); border-color: var(--primary-2); }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.navbar.scrolled { border-color: var(--border); box-shadow: 0 6px 24px -16px rgba(15,26,46,.2); background: rgba(255,255,255,.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; font-size: .8rem; box-shadow: var(--shadow-sm);
}
.nav-links { display: flex; gap: 1.75rem; font-size: .92rem; font-weight: 500; color: var(--muted); }
.nav-links a { position: relative; padding: .25rem 0; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.menu-btn span { width: 20px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s, opacity .2s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 880px) {
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 1rem 20px; display: none;
  }
  .nav-links.open { display: flex; animation: slideDown .25s ease; }
  .nav-links a { padding: .85rem 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border: 0; }
  .nav-cta { display: none; }
  .menu-btn { display: flex; }
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 80px 0 100px; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 15% 0%, #e7efff 0%, transparent 60%),
    radial-gradient(50% 60% at 90% 100%, #dde9ff 0%, transparent 60%),
    linear-gradient(180deg, #fbfcff, #ffffff);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 50px; } }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: var(--primary-soft); color: var(--primary-dark); font-size: .78rem; font-weight: 600; padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.25rem; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(37,99,235,0); } }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { margin-top: 1.25rem; font-size: 1.1rem; max-width: 540px; }
.cta-row { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-stats { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; font-size: .85rem; color: var(--muted); }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--fg); }
.hero-stats .divider { width: 1px; height: 32px; background: var(--border); }

/* Hero mockup */
.hero-visual { position: relative; }
.mockup { position: relative; transform: rotate(1deg); }
.browser {
  background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 10px;
  box-shadow: var(--shadow-lg);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-8px); } }
.browser .dots { display: flex; align-items: center; gap: 6px; padding: 8px 10px; border-bottom: 1px solid var(--border); }
.browser .dots i { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.browser .dots i:nth-child(2) { background: #f59e0b; }
.browser .dots i:nth-child(3) { background: #22c55e; }
.browser .dots span { margin-left: 10px; font-size: .7rem; font-family: ui-monospace,monospace; color: var(--muted); }
.screen { padding: 24px; background: linear-gradient(180deg,#eef4ff,#fff); border-radius: 16px; margin-top: 8px; display: flex; flex-direction: column; gap: 12px; }
.bar { height: 12px; border-radius: 6px; background: rgba(15,26,46,.12); }
.bar.small { width: 90px; height: 10px; background: rgba(37,99,235,.3); }
.bar.lg { height: 26px; width: 75%; background: rgba(15,26,46,.78); }
.bar.w70 { width: 70%; }
.btn-row { display: flex; gap: 8px; margin-top: 4px; }
.pill { height: 34px; width: 130px; border-radius: 999px; }
.grad-pill { background: var(--grad); box-shadow: var(--shadow-sm); }
.wa-pill { background: var(--wa); width: 110px; }
.thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 8px; }
.thumbs > div { aspect-ratio: 4/3; border-radius: 12px; background: linear-gradient(135deg,#dbeafe,#eef4ff); border: 1px solid var(--border); }
.float-card {
  position: absolute; left: -14px; bottom: -26px; background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); min-width: 220px;
  animation: floaty 5s ease-in-out infinite .8s;
}
.fc-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(37,211,102,.15); color: var(--wa); display: flex; align-items: center; justify-content: center; }
.float-card small { display: block; font-size: .72rem; color: var(--muted); }
.float-card strong { font-size: .92rem; }
@media (max-width: 560px) { .float-card { left: 50%; transform: translateX(-50%); bottom: -30px; min-width: 0; width: 88%; } }

/* ===== Trust Bar ===== */
.trust { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding: 32px 0; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2,1fr); } }
.trust-item { display: flex; align-items: center; gap: .85rem; }
.ti-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-soft); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { font-size: .78rem; color: var(--muted); }

/* ===== Section Head ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.tag { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--primary); background: var(--primary-soft); padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(37,99,235,.07),transparent 60%); opacity: 0; transition: opacity .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.sc-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-soft); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 14px; position: relative; }
.service-card h3 { margin-bottom: 6px; position: relative; }
.service-card p { font-size: .88rem; line-height: 1.55; position: relative; }

/* ===== Why Us ===== */
.why-us { background: linear-gradient(180deg,#f4f8ff,#fff); }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 960px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
.why-us h2 { margin-top: 1rem; }
.checks { margin: 1.75rem 0; display: flex; flex-direction: column; gap: 1rem; }
.checks li { display: flex; gap: .85rem; align-items: flex-start; }
.ck { width: 28px; height: 28px; border-radius: 50%; background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; margin-top: 2px; }
.checks strong { display: block; font-size: .98rem; color: var(--fg); }
.checks p { font-size: .85rem; margin-top: 2px; }
.why-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); }
.stat-card strong { display: block; font-family: var(--font-display); font-size: 2.25rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-card span { display: block; margin-top: 8px; font-size: .85rem; color: var(--muted); }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 34px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--accent); }
.price-card.popular { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-12px); }
.price-card.popular:hover { transform: translateY(-16px); }
@media (max-width: 900px) { .price-card.popular { transform: none; } .price-card.popular:hover { transform: translateY(-8px); } }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: .72rem; font-weight: 700; padding: .45rem 1rem; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.pc-name { font-weight: 700; color: var(--primary); font-size: .95rem; }
.pc-price { display: flex; align-items: baseline; gap: .4rem; margin-top: .75rem; }
.pc-price .amount { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; }
.pc-price .curr { color: var(--muted); font-weight: 600; }
.pc-sub { margin-top: .35rem; font-size: .82rem; color: var(--muted); }
.pc-features { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .65rem; font-size: .9rem; flex: 1; }
.pc-features li { color: var(--fg); display: flex; gap: .5rem; }
.price-card .btn { margin-top: auto; width: 100%; }
.pc-note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: .9rem; }
.pc-note a { color: var(--primary); font-weight: 600; }

/* ===== Portfolio ===== */
.portfolio { background: linear-gradient(180deg,#fff,#f4f8ff); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }
.port-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pc-art { aspect-ratio: 16/10; position: relative; padding: 22px; display: flex; align-items: flex-end; }
.pc-art::before { content: ""; position: absolute; inset: 18px; border-radius: 14px; background: linear-gradient(180deg,rgba(255,255,255,.55),rgba(255,255,255,.2)); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.5); }
.pc-art .arrow { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; transition: transform .3s, background .3s; }
.port-card:hover .pc-art .arrow { transform: rotate(45deg) scale(1.05); background: var(--primary); color: #fff; }
.pc-art.a1 { background: linear-gradient(135deg,#bfd5ff,#eaf1ff); }
.pc-art.a2 { background: linear-gradient(135deg,#b8f5d2,#e9fbf0); }
.pc-art.a3 { background: linear-gradient(135deg,#ffe0a8,#fff6e0); }
.pc-art.a4 { background: linear-gradient(135deg,#dcd6ff,#f0ecff); }
.pc-art.a5 { background: linear-gradient(135deg,#ffd1d6,#fff0f2); }
.pc-art.a6 { background: linear-gradient(135deg,#c6f0ff,#ebf9ff); }
.pc-meta { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.pc-meta small { display: block; color: var(--primary); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.pc-meta strong { display: block; margin-top: 2px; font-family: var(--font-display); }
.metric { font-size: .78rem; color: var(--wa-dark); font-weight: 600; text-align: right; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-card {
  aspect-ratio: 1; max-width: 380px; margin: 0 auto; padding: 36px; border-radius: 28px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px;
  position: relative; overflow: hidden;
}
.about-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 0%,rgba(37,99,235,.12),transparent); pointer-events: none; }
.avatar { width: 108px; height: 108px; border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 2.25rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); margin-bottom: 8px; }
.about-card strong { font-family: var(--font-display); font-size: 1.25rem; }
.about-card span { color: var(--muted); font-size: .9rem; }
.about-card small { margin-top: 6px; font-size: .78rem; color: var(--muted); }

/* ===== Contact ===== */
.contact { background: linear-gradient(180deg,#f4f8ff,#fff); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px 20px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.contact-card.wa { background: var(--wa); color: #fff; border-color: var(--wa); box-shadow: var(--shadow-cta); }
.cc-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.contact-card.wa .cc-ic { background: rgba(255,255,255,.18); color: #fff; }
.contact-card small { display: block; font-size: .75rem; color: var(--muted); }
.contact-card.wa small { color: rgba(255,255,255,.9); }
.contact-card strong { font-size: .95rem; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 32px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: .5rem; font-size: .85rem; font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; font: inherit; color: var(--fg); background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: .85rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .row-2 { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; text-align: center; min-height: 1rem; }
.form-note.ok { color: var(--wa-dark); }
.form-note.err { color: #dc2626; }

/* ===== Footer ===== */
.footer { background: #0b1426; color: #cbd5e1; padding: 60px 0 0; margin-top: 40px; }
.footer .logo { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer p { color: #94a3b8; margin-top: 12px; font-size: .9rem; max-width: 380px; }
.footer strong { display: block; color: #fff; margin-bottom: 14px; font-family: var(--font-display); }
.footer ul { display: flex; flex-direction: column; gap: 8px; font-size: .9rem; }
.footer a { color: #cbd5e1; transition: color .2s; }
.footer a:hover { color: #fff; }
.copyright { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .8rem; color: #94a3b8; text-align: center; }

/* ===== Floating WhatsApp ===== */
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--wa); color: #fff; padding: 12px 18px 12px 14px; border-radius: 999px;
  box-shadow: var(--shadow-cta); font-weight: 600; font-size: .9rem;
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.04); }
.float-wa svg { position: relative; z-index: 1; }
.float-wa .ring { position: absolute; left: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.35); animation: waPulse 2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
@media (max-width: 520px) { .float-wa .label { display: none; } .float-wa { padding: 12px; border-radius: 50%; } .float-wa .ring { left: 0; width: 100%; height: 100%; } }

/* ===== Reveal Animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .browser, .float-card, .float-wa .ring, .eyebrow .dot { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== WordPress Block Editor Overrides ===== */
.wp-block-group { margin: 0; }
.editor-styles-wrapper .container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }