/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1e3d0a;
  --green-mid:    #2d5a1b;
  --green-light:  #7dc420;
  --green-pale:   #e8f4d9;
  --gold:         #C8900A;
  --gold-mid:     #E5A820;
  --gold-light:   #FDF3DC;
  --gold-border:  #F0D080;
  --white:        #ffffff;
  --gray-100:     #f5f7f2;
  --gray-200:     #e4ece0;
  --gray-500:     #6b7a62;
  --gray-800:     #2c2c2c;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.11);
  --shadow-warm:  0 6px 24px rgba(200,144,10,.18);
  --transition:   .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: .5rem;
}

.section-title {
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.85rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: .01em;
}

.btn-primary {
  background: var(--gold-mid);
  color: var(--green-dark);
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200,144,10,.3);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-ghost {
  background: transparent;
  border-color: var(--green-mid);
  color: var(--green-mid);
  border-radius: 100px;
}
.btn-ghost:hover { background: var(--green-pale); }

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gold-light); color: var(--gold); }

/* ─── Announcement Bar ──────────────────────────────────────── */
.announce-bar {
  background: var(--green-mid);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
  padding: .55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
  flex-wrap: wrap;
}
.announce-bar strong { color: var(--white); }
.announce-icon { font-size: 1rem; }
.announce-link {
  color: var(--gold-mid);
  font-weight: 700;
  white-space: nowrap;
}
.announce-link:hover { color: var(--white); }

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-logo img { height: 44px; width: auto; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text .name { font-family: var(--font-head); font-size: 1rem; color: var(--white); font-weight: 700; }
.nav-logo-text .sub { font-size: .7rem; color: var(--gold-mid); letter-spacing: .04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem .75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }

.nav-links a.nav-cta {
  background: var(--gold-mid);
  color: var(--green-dark);
  font-weight: 700;
  padding: .5rem 1.1rem;
  border-radius: 100px;
}
.nav-links a.nav-cta:hover { background: var(--gold); color: var(--white); }

/* ─── Language Switcher ─────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 700;
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: .9rem;
  margin-left: .35rem;
  letter-spacing: .02em;
}
.lang-switcher a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.lang-switcher a:hover { color: var(--gold); background: none; }
.lang-switcher .lang-sep { color: rgba(255,255,255,.25); }
.lang-switcher .lang-active { color: var(--gold); cursor: default; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: .5rem;
}

/* ─── Floating Email Button ─────────────────────────────────── */
.float-email {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: var(--gold-mid);
  color: var(--green-dark);
  border-radius: 100px;
  padding: .8rem 1.4rem;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 20px rgba(200,144,10,.4);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.float-email:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,144,10,.45);
}
.float-email svg { flex-shrink: 0; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #2d5a1b 55%, #3a7020 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content { flex: 1; }

.hero-image {
  flex: 0 0 420px;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  display: block;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,.15);
  pointer-events: none;
}

.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .45rem 1rem;
  margin-bottom: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

.hero-stars { color: #FDD835; letter-spacing: .05em; font-size: 1rem; }

.hero h1 { margin-bottom: .75rem; }

.hero-chinese {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-note {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: .6rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}

.hero-stat .number {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold-mid);
  font-weight: 700;
}
.hero-stat .label { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ─── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--gold-light);
  border-bottom: 1px solid var(--gold-border);
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--gray-800);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
}

.trust-item svg { color: var(--gold); }
.trust-item .stars-sm { color: #FDD835; font-size: .9rem; }
.trust-item a { color: var(--gray-800); font-weight: 600; }
.trust-item a:hover { color: var(--gold); }

/* ─── Getting Started Section ───────────────────────────────── */
.steps-bar {
  background: var(--green-dark);
  padding: 48px 0;
}

.steps-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-mid);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  flex-shrink: 0;
}

.step-text h4 { color: var(--white); margin-bottom: .25rem; font-size: .95rem; }
.step-text p { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ─── Sections ──────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-100); }
.section-warm { background: var(--gold-light); }

/* ─── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-card h3 { color: var(--green-dark); margin-bottom: .6rem; }
.service-card p { font-size: .9rem; color: var(--gray-500); }

.service-list {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.service-list li {
  font-size: .85rem;
  color: var(--gray-500);
  padding-left: 1.1rem;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-mid);
  font-weight: 700;
}

/* ─── Home FAQ Grid ─────────────────────────────────────────── */
.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.home-faq-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.home-faq-item:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-warm);
}

.home-faq-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.home-faq-item h4 { color: var(--green-dark); margin-bottom: .4rem; font-size: .95rem; }
.home-faq-item p { font-size: .88rem; color: var(--gray-500); }

/* ─── About Split ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}

.feature-text h4 { color: var(--green-dark); margin-bottom: .2rem; font-size: .95rem; }
.feature-text p { font-size: .88rem; color: var(--gray-500); }

.partners-box {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.partners-box h3 {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.5rem;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.partner-card:last-child { border-bottom: none; padding-bottom: 0; }

.partner-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.partner-info .name { font-weight: 700; margin-bottom: .15rem; }
.partner-info .cred { font-size: .78rem; color: var(--gold-mid); font-weight: 500; }

/* ─── Warm CTA Band ─────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), #2d5a1b);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}

.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 2rem; }

/* ─── Tax Return Page ───────────────────────────────────────── */
.tax-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.tax-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.tax-card:hover {
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-warm);
}

.tax-card-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.tax-card h3 { color: var(--green-dark); margin-bottom: .5rem; }
.tax-card p { font-size: .88rem; color: var(--gray-500); margin-bottom: 1.5rem; }

.tax-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.tax-step {
  text-align: center;
  padding: 0 2rem;
  position: relative;
  flex: 1;
  min-width: 140px;
}

.tax-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  left: 50%;
  z-index: 0;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--gold-mid);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  margin: 0 auto .75rem;
  position: relative;
  z-index: 1;
}

.tax-step h4 { font-size: .88rem; color: var(--green-dark); margin-bottom: .25rem; }
.tax-step p { font-size: .8rem; color: var(--gray-500); }

/* ─── Blog ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-border);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  overflow: hidden;
}

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: .75rem;
}

.blog-tag {
  background: var(--gold-light);
  color: var(--gold);
  padding: .2rem .65rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .72rem;
}

.blog-card h3 { color: var(--green-dark); font-size: 1rem; margin-bottom: .6rem; }
.blog-card p { font-size: .88rem; color: var(--gray-500); margin-bottom: 1rem; }
.blog-read-more { font-size: .85rem; font-weight: 700; color: var(--gold); }
.blog-read-more:hover { color: var(--gold-mid); }

/* ─── Blog Post ─────────────────────────────────────────────── */
.post-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 60px 0 70px;
}

.post-header .blog-meta { color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.post-header .blog-tag { background: rgba(229,168,32,.2); color: var(--gold-mid); }
.post-header h1 { max-width: 700px; }

.post-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 24px;
}

.post-body p { margin-bottom: 1.25rem; color: var(--gray-800); }
.post-body h2 { color: var(--green-dark); margin: 2rem 0 .75rem; }
.post-body h3 { color: var(--green-dark); margin: 1.5rem 0 .5rem; }
.post-body ul { margin: .75rem 0 1.25rem 1.25rem; list-style: disc; }
.post-body ul li { margin-bottom: .35rem; color: var(--gray-800); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--gold-mid); }

/* ─── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: .2rem; }
.contact-item p { color: var(--gray-800); font-size: .95rem; }
.contact-item a { color: var(--gold); font-weight: 600; }
.contact-item a:hover { color: var(--gold-mid); }

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 { color: var(--green-dark); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(229,168,32,.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; max-width: 240px; }

.tpb-badge {
  height: 64px;
  width: auto;
  margin-top: 1.25rem;
  display: block;
  opacity: .88;
  transition: opacity var(--transition);
}
.tpb-badge:hover { opacity: 1; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tax-cards { grid-template-columns: 1fr; max-width: 420px; }
  .hero-image { display: none; }
  .steps-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  /* Centre hero content when image is hidden */
  .hero-inner { justify-content: center; }
  .hero-content { max-width: 640px; margin: 0 auto; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  /* Trust bar: tighter gap so 5 items fit in 2 tidy rows */
  .trust-bar-inner { gap: 1.5rem; justify-content: center; }
  /* Hide phone item in trust bar at mid-size to avoid crowding */
  .trust-item-phone { display: none; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--green-dark); padding: 1rem; gap: .25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .tax-steps { flex-direction: column; gap: 1.5rem; }
  .tax-step::after { display: none; }
  .float-email span { display: none; }
  .float-email { padding: .85rem; border-radius: 50%; }
  /* Ensure float button doesn't cover contact form submit on mobile */
  .contact-form { padding-bottom: 4.5rem; }
  /* Announcement bar: smaller text */
  .announce-bar { font-size: .78rem; gap: .5rem; }
  /* FAQ stacks to single column naturally */
  .home-faq-grid { grid-template-columns: 1fr; }
  /* Services stacks to single column on small screens */
  .services-grid { grid-template-columns: 1fr; }
}
