:root {
  --ink: #111827;
  --muted: #5f6977;
  --line: #d8e0ea;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --brand: #0067c8;
  --brand-dark: #03458f;
  --teal: #0f9f9a;
  --gold: #c99534;
  --danger-soft: #fff7e8;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(16, 38, 74, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang HK",
    "PingFang TC", "Microsoft JhengHei", "Noto Sans CJK TC", Arial, sans-serif;
  line-height: 1.58;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 234, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #263241;
  font-size: 15px;
}

.nav-links a {
  padding: 8px 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(88vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("logohero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.34);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 27, 57, 0.9) 0%, rgba(4, 27, 57, 0.74) 40%, rgba(4, 27, 57, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 91, 193, 0.32), rgba(255, 255, 255, 0.08));
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 48px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  color: #cbe8ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--brand);
}

.hero h1,
.section h2,
.compliance h2 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 7vw, 76px);
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #f6fbff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.hero-metrics strong {
  margin-right: 6px;
  color: #fff;
}

.section,
.band {
  padding: 82px 0;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.band {
  background: #f2f7fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 52px;
  align-items: start;
}

.intro h2,
.section h2,
.compliance h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.intro p:last-child {
  margin: 4px 0 0;
  color: #344154;
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.audience-item,
.plan-card,
.add-on-panel,
.meeting-panel,
.renewal-intro,
.renewal-check-grid article,
.renewal-details,
.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 38, 74, 0.07);
}

.audience-item {
  padding: 28px;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--brand);
  background: #eaf4ff;
  border-radius: 50%;
}

.icon-circle svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-item h3,
.plan-card h3,
.meeting-panel h3,
.process-list h3 {
  margin: 18px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.audience-item p,
.plan-for,
.meeting-panel p,
.process-list p,
.consult-copy p,
.proof-grid p,
.add-on-panel p {
  margin: 0;
  color: var(--muted);
}

.plans-section {
  background: #fbfcfe;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 30px;
}

.plan-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.plan-topline {
  color: var(--brand);
  font-weight: 900;
}

.plan-for {
  min-height: 76px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
  color: var(--ink);
}

.price strong {
  font-size: 54px;
  line-height: 1;
}

.currency {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.origin-price {
  margin: 8px 0 18px;
  color: var(--gold);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  color: #263241;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.plan-select {
  width: 100%;
  margin-top: auto;
  color: #fff;
  background: var(--brand);
}

.featured .plan-select {
  background: var(--teal);
}

.add-ons {
  background: #eef6f8;
}

.add-on-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.add-on-panel,
.meeting-panel {
  padding: 34px;
}

.add-on-price {
  margin: 18px 0 12px;
  color: var(--brand-dark);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.location-tags span {
  padding: 8px 13px;
  color: var(--brand-dark);
  background: #eaf4ff;
  border-radius: 999px;
  font-weight: 800;
}

.renewal-section {
  background: #fbfcfe;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.renewal-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  margin-bottom: 24px;
}

.renewal-intro h3,
.renewal-check-grid h3,
.renewal-details h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.renewal-intro p,
.renewal-check-grid p,
.renewal-details p,
.notice-box p {
  margin: 0;
  color: var(--muted);
}

.notice-box {
  padding: 20px;
  background: var(--danger-soft);
  border: 1px solid #f4dfbd;
  border-radius: var(--radius);
}

.notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: #7a4c08;
}

.notice-box a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.renewal-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.renewal-check-grid article {
  padding: 28px;
}

.feature-list.compact {
  margin-bottom: 0;
}

.renewal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.renewal-card .price {
  flex-wrap: wrap;
}

.renewal-card .price strong {
  font-size: clamp(38px, 4vw, 48px);
}

.renewal-details {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  margin-top: 24px;
  padding: 30px;
}

.add-on-price.small {
  margin-top: 10px;
  font-size: 34px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 220px;
  padding: 26px;
  background: #fff;
  border-left: 4px solid var(--brand);
  box-shadow: 0 10px 30px rgba(16, 38, 74, 0.07);
}

.process-list span {
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

.proof-section {
  background: var(--soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.proof-grid img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consult-section {
  background: #fff;
}

.consult-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  background: #f5f8fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #344154;
}

.contact-box strong {
  color: var(--ink);
}

.contact-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 16px;
  color: #fff;
  background: #0f9f62;
  border-radius: var(--radius-sm);
  font-weight: 900;
  text-decoration: none;
}

.contact-whatsapp:hover {
  background: #0b8753;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #263241;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 103, 200, 0.13);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.compliance {
  padding: 38px 0;
  background: var(--danger-soft);
  border-top: 1px solid #f4dfbd;
}

.compliance h2 {
  font-size: 24px;
}

.compliance p {
  max-width: 980px;
  margin: 10px 0 0;
  color: #5f4a25;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 58px);
  color: #fff;
  background: #0f172a;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: #cbd5e1;
}

.site-footer a {
  color: #b7e4ff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 27, 57, 0.92), rgba(4, 27, 57, 0.62));
  }

  .intro-grid,
  .add-on-grid,
  .proof-grid,
  .consult-grid,
  .renewal-intro,
  .renewal-details {
    grid-template-columns: 1fr;
  }

  .audience-list,
  .plan-grid,
  .renewal-grid,
  .renewal-check-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-for {
    min-height: auto;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 14px;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    width: min(100% - 30px, 1120px);
    padding: 40px 0 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-metrics span {
    width: 100%;
  }

  .section,
  .band {
    padding: 58px 0;
  }

  .section-inner {
    width: min(100% - 30px, 1160px);
  }

  .intro h2,
  .section h2 {
    font-size: 30px;
  }

  .audience-item,
  .plan-card,
  .add-on-panel,
  .meeting-panel,
  .renewal-intro,
  .renewal-check-grid article,
  .renewal-details,
  .lead-form,
  .process-list li {
    padding: 22px;
  }

  .price strong {
    font-size: 46px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
