/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid #e5e7eb;
}
.dis-f {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.dis-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dis-c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dis-e {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

:root {
  --navy: #0b2e59;
  --navy-light: #123b74;
  --navy-dark: #05132a;
  --navy-darker: #061a35;
  --navy-mid: #0a2749;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --cream: #f1efe9;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-600: #dc2626;
  --cyan-400: #22d3ee;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-700: #047857;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-700: #b91c1c;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  font-family:
    "Noto Sans SC",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--slate-50);
  color: var(--slate-900);
  font-family: "Noto Sans SC", system-ui, sans-serif;
}

img,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  text-transform: none;
}

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

ul,
ol {
  list-style: none;
}

/* ===== Typography ===== */
.font-display {
  font-family: "Playfair Display", "Noto Sans SC", serif;
}

.gold-text {
  background: linear-gradient(90deg, #f5c76a, #f9e28b, #f5c76a) 0 0 / 200%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ===== Utilities ===== */
.hidden {
  display: none !important;
}

/* ===== SVG Icons ===== */
.icon {
  width: 0.5rem;
  height: 0.5rem;
  /* vertical-align: -0.125em; */
  fill: currentColor;
  flex-shrink: 0;
  display: inline-block;
}

/* ===== Layout ===== */
.container {
  /* max-width: 80rem; */
  margin: 0 auto;
  padding: 0 0.5rem;
}

.section {
  padding: 1rem 0;
}

.section-white {
  background: #fff;
}

.section-slate {
  background: var(--slate-50);
}

.section-dark {
  background: linear-gradient(
    to bottom,
    var(--navy-dark),
    var(--navy),
    var(--navy-dark)
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-dark-alt {
  background: linear-gradient(
    to bottom right,
    var(--navy-dark),
    var(--navy),
    var(--navy-light)
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ===== Section Header ===== */
.section-head {
  text-align: center;
  /* max-width: 42rem; */
  margin: 0 auto 0.8rem;
}

.section-eyebrow {
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: .5rem;
  margin-bottom: 0.15rem;
}

.section-eyebrow-amber {
  color: var(--amber-500);
}

.section-eyebrow-amber-light {
  color: var(--amber-300);
}

.section-title {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title-light {
  color: #fff;
}
.section-title p{
  position: relative;
}
.section-title p::after{
  content: "";
    width: 2.3rem;
    height: 0.3rem;
  background: url(titleIcon.png) no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
    right: -0.8rem;
    bottom: -0.2rem;

}
.section-title1 p::after{
    right:-0.2rem;
}

.section-desc {
  font-size: 0.575rem;
  color: var(--slate-500);
}

.section-desc-light {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  font-weight: 600;
  border-radius: .1rem;
  padding: 0.275rem 0;
  font-size: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  width: 5.4rem;
  background: linear-gradient(to right, var(--amber-400), var(--amber-500));
  color: var(--slate-900);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--amber-500), var(--amber-600));
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
}

.btn-outline {
  width: 5.4rem;
  border: 1px solid #163c76;
  color: #fff;
  background: #163c76;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.section-buttons {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 1rem;
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  display: none;
}

.site-header.scrolled {
  display: block;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 200px;
}
.brand img{
  width: 100%;
}

.brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: linear-gradient(to bottom right, var(--navy), var(--navy-light));
  color: var(--amber-300);
  font-size: 1.125rem;
}

.brand-text {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  color: #fff;
  transition: color 0.3s;
}

.site-header.scrolled .brand-text {
  color: var(--slate-900);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}

.site-header.scrolled .nav-desktop {
  color: var(--slate-700);
}

.nav-desktop button {
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-desktop button:hover {
  color: var(--amber-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: #fff;
  font-size: 1.25rem;
}

.site-header.scrolled .menu-toggle {
  color: var(--slate-800);
}

.mobile-menu {
  background: #fff;
  border-top: 1px solid var(--slate-100);
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
  color: var(--slate-700);
  cursor: pointer;
}

.mobile-menu .btn-primary {
  text-align: center;
  margin-top: 0.5rem;
  width: 100%;
  display: block;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 16rem;
  overflow: hidden;
  background: url(hreo.jpg) no-repeat;
  background-size: 100%;
  background-position: top center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    transparent,
    rgba(0, 0, 0, 0.4)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  height: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  /* gap: 0.5rem; */
  /* padding: 0.375rem 0.75rem; */
  border-radius: 9999px;
  font-size: .55rem;
  color: var(--amber-300);
  position: absolute;
  top: 1.72rem;
  right: 1.6rem;
  /* flex-direction: column; */
  width: 4.1rem;
}
.hero-badge span{
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--amber-400);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero h1 {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 48rem;
}

.hero-br {
  display: none;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 42rem;
}

.hero-desc .highlight {
  color: var(--amber-300);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  /* flex-direction: column; */
  gap: 0.45rem;
  position: absolute;
  bottom: 1.7rem;
  width: 100%;
  left: 0;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 36rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.hero-stat-val {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-stat-key {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* ===== Pain Points ===== */
.pain-card {
  height: 100%;
  background: linear-gradient(to bottom right, var(--slate-50), #fff);
  border: 1px solid var(--slate-100);
  border-radius: 0.2rem;
  padding: 0.3rem;
  transition: all 0.3s;
  cursor: default;
}

.pain-card:hover {
  border-color: var(--amber-300);
}

.pain-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.175rem;
  background: var(--navy);
  color: var(--amber-300);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  transition: transform 0.3s;
}

.pain-card:hover .pain-icon {
  transform: scale(1.1);
}

.pain-card h3 {
  font-weight: 600;
  font-size: 0.625rem;
  color: var(--slate-900);
  margin-bottom: 0rem;
}

.pain-card p {
  font-size: 0.475rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ===== Advantage / DSE ===== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.compare-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.2rem;
  padding: 0.5rem;
}

.compare-card-highlight {
  border-color: rgba(251, 191, 36, 0.4);
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  font-size: 0.5rem;
}

.compare-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.compare-val {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-weight: 700;
  font-size: 0.6rem;
}

.compare-val-red {
  color: var(--red-300);
}

.compare-bar {
  height: 0.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.compare-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 1.6s ease-out;
}

.compare-bar-fill-red {
  background: linear-gradient(to right, var(--red-400), var(--red-600));
}

.compare-bar-fill-amber {
  background: linear-gradient(to right, var(--amber-300), var(--amber-500));
}

.compare-note {
  font-size: 0.45rem;
  margin-top: 0.75rem;
}

.compare-note-muted {
  color: rgba(255, 255, 255, 0.6);
}

.compare-note-amber {
  color: var(--amber-300);
}

.adv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.2rem;
  padding: 0.2rem 0.5rem;
  height: 100%;
  transition: border-color 0.3s;
}

.adv-card:hover {
  border-color: rgba(251, 191, 36, 0.6);
}

.adv-num {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.adv-num .suffix {
  font-size: 0.55rem;
}

.adv-label {
  margin-top: 0.05rem;
  font-weight: 600;
  font-size: 0.55rem;
}

.adv-sub {
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.175rem;
  line-height: 1.3;
}

/* ===== Service Cards ===== */
.service-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 0.2rem;
  padding: 0.4rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-0.25rem);
}

.service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.1rem;
}

.service-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.175rem;
  background: linear-gradient(to bottom right, var(--navy), var(--navy-light));
  color: var(--amber-300);
  font-size: 1.25rem;
}

.service-step {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-weight: 700;
  font-size: 0.775rem;
  color: var(--slate-100);
  transition: color 0.3s;
}

.service-card:hover .service-step {
  color: var(--amber-400);
}

.service-card h3 {
  font-weight: 600;
  font-size: 0.625rem;
  color: var(--slate-900);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.475rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.service-cta {
  height: 100%;
  background: linear-gradient(to bottom right, var(--navy), var(--navy-light));
  color: #fff;
  border-radius: 0.2rem;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-cta-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.175rem;
  background: var(--amber-400);
  color: var(--slate-900);
  font-size: 1.25rem;
  margin-bottom: 0.1rem;
}

.service-cta h3 {
  font-weight: 600;
  font-size: 0.625rem;
  margin-bottom: 0.4rem;
}

.service-cta p {
  font-size: 0.475rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.service-cta button {
  margin-top: 0.55rem;
  width: 100%;
  background: var(--amber-400);
  color: var(--slate-900);
  font-weight: 600;
  padding: 0.275rem 0;
  border-radius: .1rem;
  font-size: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}

.service-cta button:hover {
  background: var(--amber-300);
}

/* ===== Stats ===== */
.stat-card {
  background: linear-gradient(to bottom, var(--slate-50), #fff);
  border: 1px solid var(--slate-100);
  border-radius: 0.2rem;
  padding: 0.4rem;
  text-align: center;
  height: 100%;
}

.stat-num {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-num .suffix {
  color: var(--amber-500);
}

.stat-label {
  margin-top: 0.15rem;
  font-weight: 600;
  color: var(--slate-800);
  font-size: 0.45rem;
}

.stat-desc {
  font-size: 0.45rem;
  color: var(--slate-500);
  margin-top: -0.025rem;
}

/* ===== Testimonials ===== */
.voice-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 0.2rem;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
}

.voice-stars {
  display: flex;
  color: var(--amber-400);
  margin-bottom: 0.1rem;
  font-size: 0.975rem;
}

.voice-card blockquote {
  font-size: 0.475rem;
  color: var(--slate-600);
  line-height: 1.7;
  flex: 1;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px solid var(--slate-100);
}

.voice-author img {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 9999px;
  object-fit: cover;
  object-position: top;
}

.voice-name {
  font-weight: 600;
  color: var(--slate-900);
  font-size: 0.575rem;
}

.voice-role {
  font-size: 0.35rem;
  color: var(--slate-500);
}

/* ===== Timeline ===== */
.timeline-line {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(251, 191, 36, 0.6),
    transparent
  );
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  flex-direction: row;
  margin-top: -1.5rem;
  text-align: right;
}
.timeline-item:nth-child(1){
  margin-top: 0;
}

.timeline-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.2rem;
  padding: 0.2rem;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber-300);
  font-size: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}

.timeline-step::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--amber-300);
}

.timeline-item.reverse .timeline-step {
  flex-direction: row-reverse;
}

.timeline-card h3 {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: 0.55rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.timeline-card li {
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.timeline-dot {
  display: flex;
  width: 1.1rem;
  height: 1.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--amber-400);
  color: var(--slate-900);
  font-weight: 700;
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0 0 0 4px var(--navy);
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 0.2rem;
  overflow: hidden;
  background: #fff;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0.4rem 0.45rem;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-toggle:hover {
  background: var(--slate-50);
}

.faq-q {
  font-weight: 500;
  color: var(--slate-900);
  font-size: 0.575rem;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--slate-400);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--amber-500);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}

.faq-item.open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
}

.faq-a {
  padding: 0 0.45rem 0.25rem;
  color: var(--slate-600);
  font-size: 0.475rem;
  line-height: 1.7;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: 0.975rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  text-align: center;
}

.contact-info > p {
  font-size: .5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0.15rem;
  text-align: center;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.475rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-check {
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.2);
  color: var(--amber-300);
  flex-shrink: 0;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-details i {
  color: var(--amber-300);
}

.contact-form {
  background: #fff;
  color: var(--slate-800);
  border-radius: 0.2rem;
  padding: 0.7rem 0.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.form-field label {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 0.175rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-size: 0.475rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.2rem;
  padding: 0.325rem 0.35rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 2px #fef3c7;
}

.form-field textarea {
  resize: none;
}

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

.hp-field {
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.form-msg {
  margin-top: 0.5rem;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--emerald-700);
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: 0.875rem;
}

.form-error {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--red-700);
  background: var(--red-50);
  border: 1px solid var(--red-100);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: 0.875rem;
}

.form-privacy {
  font-size: 0.35rem;
  color: var(--slate-400);
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--cream);
  color: var(--slate-700);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: var(--navy);
  color: var(--amber-300);
}

.footer-brand-name {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--slate-900);
}

.footer-col p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.footer-col h4 {
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col li,
.footer-col button {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-col button:hover {
  color: var(--amber-600);
}

.footer-bottom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 0;
  border-top: 1px solid rgba(203, 213, 225, 0.6);
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
}

.reveal.in-view {
  animation: fadeUp 0.8s forwards;
}

/* ===== Animations ===== */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ===== Glow decorations ===== */
.glow-amber {
  position: absolute;
  top: -5rem;
  left: 33%;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.1);
  filter: blur(48px);
}

.glow-amber-contact {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.15);
  filter: blur(48px);
}

  .timeline-item .timeline-card-wrap {
    width: 41.8%;
  }

    .timeline-item.reverse {
    flex-direction: row-reverse;
  }
  .timeline-item.reverse .timeline-card {
    text-align: left;
  }
/* ===== Responsive ===== */
@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-actions {
    flex-direction: row;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  .section {
    padding: 7rem 0;
  }
  .header-inner {
    height: 5rem;
    padding: 0 1.5rem;
  }
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
  #navCta {
    display: inline-flex !important;
    width: 100px;
  }

  .hero h1 {
    font-size: 3.75rem;
  }
  .hero-br {
    display: block;
  }
  .hero-desc {
    font-size: 1.25rem;
  }
  .hero-content {
    padding: 6rem 1.5rem 4rem;
  }
  .hero-badge {
    font-size: 0.975rem;
  }
  .hero-stat {
    padding: 1rem;
  }
  .hero-stat-val {
    font-size: 1.875rem;
  }
  .hero-stat-key {
    font-size: 0.875rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  /* .contact-info { grid-column: span 2; } */
  .contact-form {
    grid-column: span 3;
  }
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form {
    padding: 2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
  .section-eyebrow {
    font-size: 0.875rem;
  }
  .section-desc {
    font-size: 1rem;
  }
  .faq-q {
    font-size: 1rem;
  }
  .faq-toggle {
    padding: 1rem 1.5rem;
  }
  .faq-a {
    padding: 0 1.5rem 1.25rem;
  }
  .voice-card blockquote {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 1.5rem;
  }

  .timeline-line {
    display: block;
  }
  .timeline-list {
    gap: 4rem;
  }
  .timeline-item {
    flex-direction: row;
  }


  .timeline-dot {
    display: flex;
  }
  .timeline-spacer {
    display: block;
    width: 50%;
  }

  .stat-card {
    padding: 2rem;
  }
  .stat-num {
    font-size: 3rem;
  }
  .adv-card {
    padding: 1.5rem;
  }
  .adv-num {
    font-size: 3rem;
  }
  .adv-num .suffix {
    font-size: 1.875rem;
  }
  .adv-sub {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
