/* ============================================
   环球家 - 海外移民一站式服务平台
   Mobile-First Landing Page Stylesheet
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --color-primary: #1B2A4A;
  --color-primary-light: #2a3d66;
  --color-primary-dark: #111d35;
  --color-accent: #C9A96E;
  --color-accent-light: #d4ba88;
  --color-accent-dark: #b08f52;
  --color-bg: #FAF8F5;
  --color-bg-alt: #EEF2F7;
  --color-text: #2D3436;
  --color-text-light: #636e72;
  --color-text-muted: #95a5a6;
  --color-success: #2ECC71;
  --color-white: #ffffff;
  --color-border: rgba(27, 42, 74, 0.08);

  --font-en: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-cn: var(--font-en);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.12);
  --shadow-accent: 0 4px 20px rgba(201, 169, 110, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 20px;
}

body {
  font-family: var(--font-en);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.text-gold {
  color: var(--color-accent);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
  border: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 29, 53, 0.75) 0%,
    rgba(27, 42, 74, 0.85) 50%,
    rgba(17, 29, 53, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 480px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--color-accent);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.hero-title-highlight {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-accent);
  border: 1px solid rgba(201, 169, 110, 0.5);
  background: rgba(201, 169, 110, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-title-accent {
  display: block;
  font-size: 22px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--color-accent), #e8d5a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* --- Hero Smart Match Panel --- */
.hero-match {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
}

.hero-match-group {
  margin-bottom: 20px;
}

.hero-match-group:last-child {
  margin-bottom: 0;
}

.hero-match-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-match-value {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(201, 169, 110, 0.15);
  padding: 2px 10px;
  border-radius: 6px;
}

/* --- Tags --- */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.hero-tag-flag {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-tag-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

.hero-tag-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

.hero-tag:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.08);
}

.hero-tag.active {
  border-color: var(--color-accent);
  background: rgba(201, 169, 110, 0.18);
  box-shadow: 0 0 0 1px var(--color-accent), 0 2px 12px rgba(201, 169, 110, 0.2);
}

.hero-tag.active .hero-tag-text {
  color: var(--color-accent);
}

.hero-tag.active .hero-tag-sub {
  color: rgba(201, 169, 110, 0.8);
}

/* --- Slider --- */
.hero-slider-wrap {
  width: 100%;
}

.hero-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(
    to right,
    var(--color-accent) 0%,
    var(--color-accent) var(--slider-pct, 0%),
    rgba(255, 255, 255, 0.15) var(--slider-pct, 0%),
    rgba(255, 255, 255, 0.15) 100%
  );
  outline: none;
  margin-bottom: 8px;
}

.hero-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.hero-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.hero-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-slider-track {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-en);
}

.hero-cta {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3); }
  50% { box-shadow: 0 4px 32px rgba(201, 169, 110, 0.55); }
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-trust-number {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.hero-trust-number span {
  font-size: 18px;
}

.hero-trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.hero-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* --- Pain Points Section --- */
.pain-section {
  background: var(--color-bg);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pain-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--color-accent);
}

.pain-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- Services Section --- */
.services-section {
  background: var(--color-bg-alt);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27, 42, 74, 0.6) 100%);
}

.service-body {
  padding: 24px 20px;
}

.service-number {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.service-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.service-body > p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
}

.service-features li svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* --- Destinations Section --- */
.destinations-section {
  background: var(--color-bg);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dest-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.dest-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.dest-flag {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}

.dest-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.dest-card p {
  font-size: 10px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* --- Process Section --- */
.process-section {
  background: var(--color-primary);
  color: var(--color-white);
}

.process-section .section-tag {
  color: var(--color-accent);
  background: rgba(201, 169, 110, 0.15);
}

.process-section .section-title {
  color: var(--color-white);
}

.process-timeline {
  position: relative;
  padding-left: 28px;
}

.process-line {
  position: relative;
  height: 24px;
  margin-left: 12px;
}

.process-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(201, 169, 110, 0.3);
}

.process-step {
  position: relative;
  padding-left: 24px;
  padding-bottom: 4px;
}

.process-dot {
  position: absolute;
  left: -28px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
}

.process-dot span {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
}

.process-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-white);
}

.process-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: var(--color-bg-alt);
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--color-accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* --- Family Section --- */
.family-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.family-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.family-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 29, 53, 0.8) 0%,
    rgba(27, 42, 74, 0.85) 100%
  );
}

.family-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.family-content h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 16px;
}

.family-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* --- CTA / Contact Section --- */
.cta-section {
  background: var(--color-bg);
  padding: 64px 0 80px;
}

.cta-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-accent);
}

.cta-card h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cta-card > p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--color-text);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2395a5a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder {
  color: var(--color-text-muted);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 4px;
}

.btn-submit:disabled {
  opacity: 0.9;
  cursor: default;
}

.cta-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 16px;
}

.cta-privacy svg {
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-brand {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 4px;
}

.footer-slogan {
  font-size: 13px;
  color: var(--color-accent);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-en);
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  transition: var(--transition);
}

.floating-cta.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.btn-floating {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

/* --- Scroll Animations --- */
.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for grid children */
.pain-grid .pain-card:nth-child(1) { transition-delay: 0s; }
.pain-grid .pain-card:nth-child(2) { transition-delay: 0.08s; }
.pain-grid .pain-card:nth-child(3) { transition-delay: 0.16s; }
.pain-grid .pain-card:nth-child(4) { transition-delay: 0.24s; }

.dest-grid .dest-card:nth-child(1) { transition-delay: 0s; }
.dest-grid .dest-card:nth-child(2) { transition-delay: 0.05s; }
.dest-grid .dest-card:nth-child(3) { transition-delay: 0.1s; }
.dest-grid .dest-card:nth-child(4) { transition-delay: 0.15s; }
.dest-grid .dest-card:nth-child(5) { transition-delay: 0.2s; }
.dest-grid .dest-card:nth-child(6) { transition-delay: 0.25s; }
.dest-grid .dest-card:nth-child(7) { transition-delay: 0.3s; }
.dest-grid .dest-card:nth-child(8) { transition-delay: 0.35s; }

/* --- Tablet / Desktop Enhancements --- */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 32px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 36px;
  }

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

  .hero-title-highlight {
    font-size: 18px;
  }

  .hero-title-accent {
    font-size: 30px;
  }

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

  .hero-match {
    padding: 24px 20px;
  }

  .hero-tag {
    padding: 12px 16px;
  }

  .hero-tag-flag {
    font-size: 24px;
  }

  .hero-tag-text {
    font-size: 14px;
  }

  .pain-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .dest-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .dest-card {
    padding: 20px 12px;
  }

  .dest-flag {
    font-size: 40px;
  }

  .footer-links {
    gap: 32px;
  }

  .floating-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-title-highlight {
    font-size: 20px;
  }

  .hero-title-accent {
    font-size: 34px;
  }

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

  .service-img {
    height: 200px;
  }
}
