/*
Theme Name: VietWeb Florida
Theme URI: https://vietwebflorida.com
Author: VietWeb Florida
Description: A bilingual, conversion-focused WordPress theme for VietWeb Florida.
Version: 1.0.1
Text Domain: vietweb-florida
*/

:root {
  --ink: #102d2b;
  --ink-soft: #385854;
  --teal: #0f5b55;
  --teal-dark: #093f3b;
  --teal-light: #dff0ec;
  --coral: #d94e3f;
  --coral-dark: #b43c31;
  --gold: #f1ad3d;
  --cream: #fbf7ef;
  --paper: #fffdf9;
  --line: #dce7e3;
  --white: #fff;
  --shadow: 0 18px 50px rgba(16, 45, 43, .11);
  --radius: 22px;
  --font-display: "Aptos Display", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

[data-vi] {
  display: none !important;
}

html[data-lang="vi"] [data-en] {
  display: none !important;
}

html[data-lang="vi"] [data-vi] {
  display: revert !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--coral-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .eyebrow::after {
  width: 24px;
  height: 2px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.7vw, 6.4rem);
  line-height: .98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-heading.center p {
  margin-inline: auto;
}

.highlight {
  color: var(--coral);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 25px rgba(217, 78, 63, .24);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, .46);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.button-light {
  color: var(--teal-dark);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-name,
.site-header:not(.is-scrolled):not(.is-open) .desktop-nav a:not(.button) {
  color: var(--white);
}

.site-header:not(.is-scrolled):not(.is-open) .brand-tagline {
  color: rgba(255, 255, 255, .62);
}

.site-header:not(.is-scrolled):not(.is-open) .menu-toggle span {
  background: var(--white);
}

.site-header:not(.is-scrolled):not(.is-open) .menu-toggle {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(16, 45, 43, .08);
  background: rgba(255, 253, 249, .94);
  box-shadow: 0 8px 28px rgba(16, 45, 43, .06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 45px;
  height: 45px;
}

.brand-name {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.brand-name em {
  color: var(--coral);
  font-style: normal;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.desktop-nav a {
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a:not(.button):hover {
  color: var(--coral);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle:hover {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.is-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 150px 0 90px;
  color: var(--white);
  background: var(--teal-dark);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(241, 173, 61, .2), transparent 24%),
    radial-gradient(circle at 10% 85%, rgba(217, 78, 63, .25), transparent 30%),
    linear-gradient(130deg, var(--teal-dark), var(--teal) 70%, #176e66);
  content: "";
}

.hero::after {
  position: absolute;
  top: -170px;
  right: -150px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, .025),
    0 0 0 160px rgba(255, 255, 255, .018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.12fr .88fr;
  gap: 66px;
}

.hero .eyebrow {
  color: #ffd58f;
}

.hero-copy {
  position: relative;
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 700;
}

.proof-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #ffd58f;
}

.hero-showcase {
  position: relative;
  min-height: 500px;
}

.browser-frame {
  position: absolute;
  top: 20px;
  right: 0;
  width: min(100%, 470px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .28);
  transform: rotate(2deg);
}

.browser-top {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #e2ded6;
  background: var(--white);
}

.browser-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3cbc0;
}

.browser-page {
  min-height: 330px;
  padding: 27px;
  color: var(--ink);
  background:
    linear-gradient(145deg, transparent 50%, rgba(241, 173, 61, .16) 50%),
    var(--cream);
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
}

.mock-links {
  width: 38%;
  height: 7px;
  border-radius: 10px;
  background: #b9cbc7;
}

.mock-content {
  display: grid;
  align-items: center;
  margin-top: 55px;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}

.mock-kicker,
.mock-line,
.mock-button {
  border-radius: 999px;
}

.mock-kicker {
  width: 50%;
  height: 8px;
  background: var(--coral);
}

.mock-line {
  height: 19px;
  margin-top: 10px;
  background: var(--ink);
}

.mock-line.short {
  width: 72%;
}

.mock-button {
  width: 45%;
  height: 28px;
  margin-top: 24px;
  background: var(--gold);
}

.mock-photo {
  height: 175px;
  border-radius: 44% 44% 12px 12px;
  background:
    radial-gradient(circle at 50% 35%, #ffd58f 0 18%, transparent 19%),
    linear-gradient(160deg, var(--coral), #8f3029);
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 42px;
  width: 235px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: .95rem;
}

.floating-card span {
  display: block;
  color: var(--ink-soft);
  font-size: .76rem;
}

.floating-card .metric {
  margin-top: 12px;
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.sun-badge {
  position: absolute;
  bottom: 24px;
  left: 5px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.trust-strip {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.trust-label {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: var(--ink);
  font-size: .85rem;
  font-weight: 800;
}

.industry-list span::before {
  margin-right: 8px;
  color: var(--coral);
  content: "•";
}

section {
  padding: 110px 0;
}

.intro-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.local-visual {
  position: relative;
  min-height: 480px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background: var(--teal);
}

.local-visual::before {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 320px;
  height: 430px;
  border: 30px solid rgba(255, 255, 255, .1);
  border-radius: 50% 30% 55% 35%;
  content: "";
  transform: rotate(-18deg);
}

.local-visual h3 {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-top: 110px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.local-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
  font-size: .74rem;
  font-weight: 800;
}

.local-pin::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.pin-one { top: 32px; right: 30px; }
.pin-two { right: 55px; bottom: 116px; }
.pin-three { bottom: 45px; left: 35px; }

.intro-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.benefit-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  gap: 17px;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
}

.benefit-list i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-light);
  font-style: normal;
  font-weight: 900;
}

.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid rgba(16, 45, 43, .08);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  border-color: rgba(217, 78, 63, .3);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 12px;
  color: var(--teal);
  background: var(--teal-light);
  font-size: .76rem;
  font-weight: 900;
}

.service-card:nth-child(2n) .service-number {
  color: var(--coral-dark);
  background: #fbe6e2;
}

.service-card:nth-child(3n) .service-number {
  color: #87520b;
  background: #fff0ce;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .93rem;
}

.outcomes {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.outcomes-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.outcomes .eyebrow {
  color: #ffd58f;
}

.outcomes p {
  color: rgba(255, 255, 255, .72);
}

.outcome-list {
  display: grid;
  gap: 14px;
}

.outcome {
  display: grid;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  background: rgba(255, 255, 255, .055);
  grid-template-columns: 54px 1fr;
  gap: 18px;
}

.outcome-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  color: var(--ink);
  background: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
}

.outcome h3 {
  margin-bottom: 4px;
  font-size: 1.07rem;
}

.outcome p {
  margin-bottom: 0;
  font-size: .85rem;
}

.portfolio {
  background: var(--paper);
}

.portfolio-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--teal-light);
  font-size: .76rem;
  font-weight: 750;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.concept-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 45, 43, .07);
}

.concept-art {
  position: relative;
  height: 250px;
  padding: 22px;
  overflow: hidden;
}

.concept-art.restaurant { background: #f6d8b5; }
.concept-art.salon { background: #d9e7e4; }
.concept-art.professional { background: #e7e0f2; }

.mini-site {
  position: absolute;
  right: 22px;
  bottom: -20px;
  left: 22px;
  min-height: 195px;
  padding: 17px;
  border-radius: 14px 14px 0 0;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(16, 45, 43, .18);
}

.mini-site-nav {
  width: 100%;
  height: 8px;
  margin-bottom: 29px;
  border-radius: 10px;
  background: #dfe6e4;
}

.mini-site-title {
  width: 72%;
  height: 20px;
  border-radius: 6px;
  background: var(--ink);
}

.mini-site-copy {
  width: 58%;
  height: 8px;
  margin-top: 10px;
  border-radius: 6px;
  background: #b8c8c4;
}

.mini-site-cta {
  width: 31%;
  height: 24px;
  margin-top: 25px;
  border-radius: 999px;
  background: var(--coral);
}

.salon .mini-site-cta { background: var(--teal); }
.professional .mini-site-cta { background: #7653a1; }

.concept-label {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.concept-copy {
  padding: 24px;
}

.concept-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 25px;
  padding: 7px 12px;
  border-radius: 0 0 10px 10px;
  color: var(--white);
  background: var(--teal);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-kicker {
  color: var(--coral);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.price {
  margin: 15px 0 5px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}

.price small {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-summary {
  min-height: 72px;
  color: var(--ink-soft);
  font-size: .9rem;
}

.price-features {
  display: grid;
  margin: 22px 0 30px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  gap: 11px;
}

.price-features li {
  display: flex;
  gap: 9px;
  color: var(--ink-soft);
  font-size: .86rem;
}

.price-features li::before {
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
  border-color: var(--teal);
  color: var(--teal);
}

.price-card.featured .button {
  color: var(--white);
  background: var(--teal);
}

.care-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 22px 26px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
}

.care-note strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.care-note span {
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  position: relative;
  padding: 0 28px 0 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: 10px;
  width: 38px;
  height: 1px;
  background: var(--line);
  content: "";
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral);
  background: var(--white);
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

.contact {
  padding-bottom: 80px;
  background: var(--teal-dark);
}

.contact-shell {
  display: grid;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .23);
  grid-template-columns: .82fr 1.18fr;
}

.contact-info {
  position: relative;
  padding: 48px;
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
}

.contact-info::after {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 290px;
  height: 290px;
  border: 50px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  content: "";
}

.contact-info .eyebrow {
  color: #ffd58f;
}

.contact-info h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.contact-info > p {
  color: rgba(255, 255, 255, .74);
}

.contact-methods {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 36px;
  gap: 14px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.contact-method i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--teal);
  background: var(--white);
  font-style: normal;
  font-weight: 900;
}

.contact-method span {
  font-size: .9rem;
  font-weight: 750;
}

.quote-form {
  padding: 48px;
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h3 {
  font-size: 1.8rem;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 115px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 91, 85, .1);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-submit small {
  max-width: 270px;
  color: var(--ink-soft);
  font-size: .72rem;
}

.form-notice {
  margin-bottom: 22px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 750;
}

.form-notice.success {
  color: #155c3b;
  background: #dcf4e7;
}

.form-notice.error {
  color: #8c2f29;
  background: #fde5e2;
}

.site-footer {
  padding: 28px 0 34px;
  color: rgba(255, 255, 255, .68);
  background: var(--teal-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-inner p {
  margin: 0;
  font-size: .78rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 34px 24px;
    align-items: stretch;
    flex-direction: column;
    background: var(--paper);
  }

  .desktop-nav a {
    padding: 7px 0;
    font-size: 1.35rem;
  }

  .desktop-nav .button {
    margin-top: 12px;
    color: var(--white);
    font-size: 1rem;
  }

  .is-open .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .outcomes-grid {
    gap: 45px;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .services-grid,
  .concept-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  section {
    padding: 78px 0;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 125px 0 70px;
  }

  .hero-grid,
  .intro-grid,
  .outcomes-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 405px;
  }

  .browser-frame {
    width: 92%;
  }

  .floating-card {
    right: 0;
  }

  .sun-badge {
    left: 0;
    width: 92px;
    height: 92px;
    font-size: .63rem;
  }

  .trust-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .industry-list {
    justify-content: flex-start;
    gap: 8px 16px;
  }

  .local-visual {
    min-height: 380px;
  }

  .services-grid,
  .concept-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .care-note,
  .form-submit,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-info,
  .quote-form {
    padding: 34px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  .header-inner {
    min-height: 74px;
    gap: 10px;
  }

  .desktop-nav {
    top: 74px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-name {
    font-size: .96rem;
  }

  .lang-toggle {
    min-width: 42px;
    justify-content: center;
    padding: 8px 10px;
  }

  .lang-toggle .lang-label {
    display: none;
  }

  html[lang="en"] .lang-toggle::after {
    content: "VI";
  }

  html[lang="vi"] .lang-toggle::after {
    content: "EN";
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 14px;
  }

  .mock-content {
    margin-top: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
