:root {
  --font-main: "QuickSans", "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --green-980: #031910;
  --green-950: #052d1e;
  --green-900: #073b25;
  --green-800: #0a4e31;
  --green-700: #0e6b3b;
  --green-600: #159447;
  --green-400: #52c66d;
  --rice: #d8f3a6;
  --gold: #e4b849;
  --gold-soft: #f7dc7d;
  --cream: #fff8e8;
  --cream-2: #fbf4df;
  --ink: #173127;
  --muted: #64786f;
  --white: #ffffff;
  --line: rgba(7, 59, 37, 0.12);
  --glass: rgba(255, 255, 255, 0.68);
  --shadow: 0 30px 90px rgba(3, 25, 16, 0.16);
  --shadow-soft: 0 18px 50px rgba(3, 25, 16, 0.10);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -5%, rgba(216, 243, 166, .42), transparent 32rem),
    radial-gradient(circle at 100% 8%, rgba(247, 220, 125, .26), transparent 30rem),
    linear-gradient(180deg, #fffaf0 0%, #f6f8ed 43%, #fffaf0 100%);
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.section { position: relative; padding: 112px 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.site-noise,
.grain-rice,
.cursor-glow { pointer-events: none; position: fixed; inset: 0; }
.site-noise {
  z-index: 1; opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
}
.grain-rice {
  z-index: 0; opacity: .28;
  background: repeating-linear-gradient(110deg, transparent 0 42px, rgba(14,107,59,.035) 43px 44px);
}
.cursor-glow {
  z-index: 2; width: 360px; height: 360px; inset: auto; border-radius: 999px;
  background: radial-gradient(circle, rgba(216,243,166,.22), transparent 62%);
  transform: translate(-50%, -50%); mix-blend-mode: multiply; opacity: .8;
}

.site-header { position: fixed; inset: 0 0 auto; z-index: 80; transition: .35s ease; }
.site-header.scrolled {
  background: rgba(255, 250, 240, .82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(7, 59, 37, .10);
  box-shadow: 0 20px 54px rgba(3, 25, 16, .08);
}
.header-inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--green-950); font-weight: 950; letter-spacing: -.05em; }
.brand img { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(3,25,16,.12)); }
.brand span { white-space: nowrap; }
.nav-menu {
  display: flex; align-items: center; gap: 4px; padding: 8px;
  border: 1px solid rgba(7, 59, 37, .10); border-radius: 999px;
  background: rgba(255,255,255,.48); backdrop-filter: blur(18px);
}
.nav-menu a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 13px;
  border-radius: 999px; color: rgba(23,49,39,.78); font-size: 13px; font-weight: 850; transition: .25s ease;
}
.nav-menu a:hover { background: rgba(216,243,166,.55); color: var(--green-950); transform: translateY(-1px); }
.nav-menu i { color: var(--green-700); font-size: 12px; }

.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 20px; border: 0; border-radius: 999px;
  font-weight: 900; letter-spacing: -.025em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--green-800), var(--green-600) 58%, var(--gold)); box-shadow: 0 18px 40px rgba(14,107,59,.28); }
.btn-primary:hover { box-shadow: 0 24px 56px rgba(14,107,59,.34); }
.btn-ghost { color: var(--green-950); background: rgba(255,255,255,.65); border: 1px solid rgba(7,59,37,.12); box-shadow: 0 16px 34px rgba(3,25,16,.08); }
.btn-outline { width: 100%; color: var(--green-850, #073b25); background: rgba(255,255,255,.62); border: 1px solid rgba(7,59,37,.14); }
.btn-large { min-height: 58px; padding: 0 26px; }
.ripple { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.45); transform: translate(-50%, -50%) scale(0); animation: ripple .72s ease-out; z-index: -1; }
@keyframes ripple { to { transform: translate(-50%, -50%) scale(18); opacity: 0; } }

.hamburger { display: none; width: 48px; height: 48px; border: 1px solid rgba(7,59,37,.14); border-radius: 999px; background: rgba(255,255,255,.7); padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.hamburger span { width: 20px; height: 2px; border-radius: 99px; background: var(--green-950); transition: .25s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 150px; overflow: hidden; }
.hero-ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-ambient::before { content: ""; position: absolute; inset: 12% -14% auto -14%; height: 68%; background: linear-gradient(135deg, rgba(216,243,166,.36), rgba(255,255,255,.18)); border-radius: 0 0 48% 52%; transform: skewY(-6deg); }
.blob { position: absolute; border-radius: 999px; filter: blur(12px); animation: blobFloat 9s ease-in-out infinite; opacity: .75; }
.blob-a { width: 300px; height: 300px; left: 4%; top: 18%; background: rgba(82,198,109,.25); }
.blob-b { width: 390px; height: 390px; right: -8%; top: 14%; background: rgba(247,220,125,.22); animation-delay: -2s; }
.blob-c { width: 230px; height: 230px; left: 48%; bottom: 7%; background: rgba(14,107,59,.10); animation-delay: -4s; }
@keyframes blobFloat { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(24px,-28px,0) scale(1.06); } }
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); gap: 62px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px; color: var(--green-700); font-size: 13px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow i { color: var(--gold); }
.hero h1, .section-heading h2, .process-copy h2, .why-copy h2, .cta-card h2 { margin: 0; color: var(--green-980); font-weight: 950; letter-spacing: -.075em; text-wrap: balance; }
.hero h1 { max-width: 760px; font-size: clamp(44px, 6vw, 82px); line-height: .96; }
.hero-text { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.78; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions.centered { justify-content: center; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-tags span { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 0 14px; border-radius: 999px; color: var(--green-950); background: rgba(255,255,255,.66); border: 1px solid rgba(7,59,37,.10); box-shadow: 0 12px 26px rgba(3,25,16,.07); font-size: 13px; font-weight: 900; }
.hero-tags i { color: var(--green-700); }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 520px; margin-top: 28px; }
.trust-strip div { padding: 16px; border-radius: 22px; background: rgba(255,255,255,.62); border: 1px solid rgba(7,59,37,.10); box-shadow: 0 12px 28px rgba(3,25,16,.06); }
.trust-strip strong { display: block; color: var(--green-900); font-size: 26px; line-height: 1; letter-spacing: -.06em; }
.trust-strip span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; font-weight: 800; }
.hero-art { position: relative; min-height: 600px; }
.art-frame, .service-art, .process-copy img, .industry-art, .why-art { border-radius: 46px; filter: drop-shadow(0 30px 55px rgba(3,25,16,.15)); }
.art-frame { transform-style: preserve-3d; animation: floatCard 6s ease-in-out infinite; }
.art-frame img { width: 100%; border-radius: 46px; }
@keyframes floatCard { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(.65deg); } }
.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 24px; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px); animation: floatCard 7s ease-in-out infinite; }
.floating-chip i { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; color: white; background: linear-gradient(135deg, var(--green-700), var(--gold)); }
.floating-chip b { display: block; color: var(--green-950); font-size: 14px; }
.floating-chip small { display: block; margin-top: 3px; color: var(--muted); font-weight: 750; }
.chip-1 { left: -18px; bottom: 18%; }
.chip-2 { right: -8px; top: 16%; animation-delay: -2s; }

.marquee-section { position: relative; z-index: 4; overflow: hidden; padding: 16px 0; border-block: 1px solid rgba(7,59,37,.10); background: rgba(7,59,37,.94); color: rgba(255,255,255,.88); }
.marquee-track { display: flex; gap: 30px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; white-space: nowrap; letter-spacing: -.02em; }
.marquee-track i { color: var(--gold-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

.split-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: 34px; align-items: end; margin-bottom: 48px; }
.section-heading { max-width: 780px; }
.section-heading h2, .process-copy h2, .why-copy h2, .cta-card h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.06; }
.section-heading p, .heading-desc, .process-copy p, .why-copy p, .cta-card p { color: var(--muted); font-size: 16px; line-height: 1.8; }
.section-heading.center p { max-width: 720px; margin-inline: auto; }
.heading-desc { margin: 0 0 8px; }
.service-showcase { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.service-art img, .industry-art img, .why-art img, .process-copy img { border-radius: 42px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card, .step-card, .pricing-card, .industry-card, .why-copy, .cta-card {
  position: relative; overflow: hidden; border: 1px solid rgba(7,59,37,.10); border-radius: var(--radius-lg); background: var(--glass); box-shadow: var(--shadow-soft); backdrop-filter: blur(18px);
}
.service-card, .step-card, .pricing-card, .industry-card { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.tilt-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(247,220,125,.28), transparent 34%); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.tilt-card:hover::before { opacity: 1; }
.tilt-card:hover { transform: translateY(-9px); box-shadow: 0 32px 86px rgba(3,25,16,.16); border-color: rgba(228,184,73,.32); }
.service-card { min-height: 250px; padding: 28px; }
.icon-box, .pricing-icon, .industry-card > i { width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; border-radius: 20px; color: var(--green-900); background: linear-gradient(135deg, rgba(216,243,166,.88), rgba(247,220,125,.44)); box-shadow: inset 0 1px 0 rgba(255,255,255,.55); font-size: 22px; margin-bottom: 20px; }
.service-card h3, .step-card h3, .pricing-card h3, .industry-card h3 { position: relative; z-index: 1; margin: 0; color: var(--green-980); font-size: 22px; letter-spacing: -.045em; line-height: 1.2; }
.service-card p, .step-card p, .pricing-card p, .industry-card p { position: relative; z-index: 1; margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.card-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--green-700); font-size: 13px; font-weight: 900; }
.card-link:hover i { transform: translateX(4px); }
.card-link i { transition: .22s ease; }

.process { background: linear-gradient(180deg, transparent, rgba(216,243,166,.18), transparent); }
.process-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 30px; align-items: center; }
.process-copy img { margin-top: 28px; }
.steps-timeline { position: relative; display: grid; gap: 16px; }
.steps-timeline::before { content: ""; position: absolute; left: 34px; top: 40px; bottom: 40px; width: 2px; background: linear-gradient(180deg, transparent, rgba(14,107,59,.36), transparent); }
.step-card { display: grid; grid-template-columns: 74px 54px 1fr; align-items: center; gap: 16px; padding: 24px; }
.step-card span { z-index: 1; color: var(--gold); font-size: 28px; font-weight: 950; letter-spacing: -.06em; }
.step-card > i { z-index: 1; width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--green-800), var(--green-600)); box-shadow: 0 14px 25px rgba(14,107,59,.24); }
.step-card p { grid-column: 3; margin-top: -6px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pricing-card { padding: 30px; }
.pricing-card.featured { background: radial-gradient(circle at 100% 0%, rgba(247,220,125,.35), transparent 16rem), rgba(255,255,255,.82); border-color: rgba(228,184,73,.46); transform: translateY(-14px); }
.pricing-card.featured:hover { transform: translateY(-23px); }
.popular-badge { position: absolute; top: 18px; right: 18px; display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 999px; background: var(--gold-soft); color: var(--green-950); font-size: 12px; font-weight: 950; }
.price { margin: 20px 0 22px; color: var(--green-950); font-size: 34px; font-weight: 950; letter-spacing: -.065em; }
.price span { color: var(--muted); font-size: 14px; letter-spacing: 0; }
ul { list-style: none; margin: 0; padding: 0; }
.pricing-card ul { display: grid; gap: 12px; margin-bottom: 28px; }
.pricing-card li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: 14px; line-height: 1.55; }
.pricing-card li i { flex: 0 0 auto; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--green-900); background: rgba(216,243,166,.8); font-size: 11px; margin-top: 1px; }

.industries-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 34px; align-items: center; }
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.industry-card { padding: 22px; }
.industry-card > i { width: 50px; height: 50px; font-size: 19px; border-radius: 18px; margin-bottom: 16px; }

.why { background: linear-gradient(180deg, transparent, rgba(7,59,37,.06), transparent); }
.why-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 30px; align-items: center; }
.why-copy { padding: 42px; }
.why-points { display: grid; gap: 13px; margin-top: 28px; }
.why-points div { display: flex; align-items: center; gap: 14px; padding: 15px; border-radius: 20px; background: rgba(255,255,255,.62); border: 1px solid rgba(7,59,37,.09); color: var(--green-950); font-weight: 850; }
.why-points i { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; color: var(--gold-soft); background: var(--green-900); }
.cta-card { text-align: center; padding: clamp(38px, 6vw, 76px); border-radius: 44px; background: radial-gradient(circle at 12% 14%, rgba(216,243,166,.62), transparent 18rem), radial-gradient(circle at 92% 18%, rgba(247,220,125,.38), transparent 16rem), rgba(255,255,255,.76); }
.cta-card p { max-width: 760px; margin: 18px auto 0; }

.footer { position: relative; z-index: 3; padding: 66px 0 28px; color: rgba(255,255,255,.75); background: radial-gradient(circle at 10% 0%, rgba(82,198,109,.14), transparent 26rem), var(--green-980); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .72fr 1fr; gap: 42px; }
.footer .brand { color: white; }
.footer p { margin: 14px 0 0; line-height: 1.75; }
.footer h4 { margin: 0 0 16px; color: white; font-size: 16px; }
.footer a:not(.brand) { display: flex; align-items: center; gap: 8px; margin: 10px 0; transition: .22s ease; }
.footer a:hover { color: var(--gold-soft); }
.copyright { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; }

.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: grid; gap: 12px; }
.float-btn { position: relative; width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; border-radius: 22px; color: white; font-size: 22px; box-shadow: 0 20px 38px rgba(3,25,16,.18); animation: pulse 2.2s ease-in-out infinite; }
.float-btn.zalo { background: linear-gradient(135deg, #0b8ef3, #045dc3); }
.float-btn.facebook { background: linear-gradient(135deg, #1877f2, #0d47a1); animation-delay: -.85s; }
.float-label { position: absolute; right: 70px; top: 50%; transform: translateY(-50%) translateX(8px); opacity: 0; pointer-events: none; white-space: nowrap; padding: 8px 12px; border-radius: 999px; color: var(--green-950); background: white; font-size: 13px; font-weight: 900; box-shadow: var(--shadow-soft); transition: .22s ease; }
.float-btn:hover .float-label { transform: translateY(-50%) translateX(0); opacity: 1; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(14,107,59,.24), 0 20px 38px rgba(3,25,16,.18); } 50% { box-shadow: 0 0 0 13px rgba(14,107,59,0), 0 20px 38px rgba(3,25,16,.18); } }

.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: .3s ease; }
.modal.active { opacity: 1; visibility: visible; }
.modal-overlay { position: absolute; inset: 0; background: rgba(3,25,16,.66); backdrop-filter: blur(14px); }
.modal-dialog { position: relative; width: min(100%, 940px); max-height: min(92vh, 780px); overflow: auto; border-radius: 36px; background: var(--cream); box-shadow: 0 38px 120px rgba(3,25,16,.42); transform: translateY(26px) scale(.96); transition: .3s ease; }
.modal.active .modal-dialog { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 999px; color: var(--green-950); background: rgba(255,255,255,.78); box-shadow: 0 12px 24px rgba(3,25,16,.08); }
.modal-grid { display: grid; grid-template-columns: .92fr 1.08fr; }
.modal-panel { padding: 44px; color: white; background: radial-gradient(circle at 18% 18%, rgba(247,220,125,.24), transparent 16rem), linear-gradient(145deg, var(--green-980), var(--green-700)); }
.modal-panel h2 { margin: 0; font-size: clamp(28px, 4vw, 43px); line-height: 1.08; letter-spacing: -.06em; }
.modal-panel p { color: rgba(255,255,255,.76); line-height: 1.75; }
.modal-benefits { display: grid; gap: 12px; margin-top: 28px; }
.modal-benefits span { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.12); font-weight: 800; }
.modal-benefits i { color: var(--gold-soft); }
.contact-form { padding: 44px; display: grid; gap: 15px; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; }
.contact-form label { display: grid; gap: 8px; color: var(--green-950); font-size: 13px; font-weight: 950; }
.contact-form strong { color: #c33131; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid rgba(7,59,37,.14); border-radius: 16px; outline: none; color: var(--green-950); background: rgba(255,255,255,.86); transition: .22s ease; }
.contact-form textarea { min-height: 100px; padding: 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(21,148,71,.64); box-shadow: 0 0 0 4px rgba(82,198,109,.16); }
.form-message { min-height: 24px; border-radius: 14px; font-size: 14px; font-weight: 850; line-height: 1.5; }
.form-message.error { color: #a41f1f; }
.form-message.success { color: var(--green-700); }
.form-submit { width: 100%; min-height: 56px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1120px) {
  .header-cta { display: none; }
  .hero-grid, .service-showcase, .process-grid, .industries-layout, .why-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: auto; max-width: 720px; margin-inline: auto; }
  .process-copy img, .industry-art { max-width: 640px; margin-inline: auto; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-9px); }
}
@media (max-width: 940px) {
  .nav-menu { position: fixed; top: 78px; left: 20px; right: 20px; display: grid; border-radius: 26px; padding: 14px; background: rgba(255,250,240,.95); box-shadow: var(--shadow-soft); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .25s ease; }
  .nav-menu.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-menu a { justify-content: flex-start; min-height: 48px; }
  .hamburger { display: inline-flex; }
  .split-heading, .modal-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 15px; }
  .hero { padding-top: 118px; min-height: auto; }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero-actions, .hero-actions.centered { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-strip, .service-grid, .pricing-grid, .industry-grid { grid-template-columns: 1fr; }
  .floating-chip { position: relative; inset: auto; margin: 12px 0 0; width: 100%; }
  .art-frame img, .service-art img, .industry-art img, .why-art img, .process-copy img { border-radius: 28px; }
  .step-card { grid-template-columns: 1fr; }
  .step-card p { grid-column: auto; margin-top: 0; }
  .steps-timeline::before { display: none; }
  .why-copy, .cta-card, .contact-form, .modal-panel { padding: 26px; }
  .modal { padding: 12px; }
  .modal-dialog { border-radius: 26px; }
  .float-label { display: none; }
  .floating-contact { right: 14px; bottom: 14px; }
  .float-btn { width: 52px; height: 52px; border-radius: 18px; }
  .cursor-glow { display: none; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } }
