/* ============================================================
   LINKEDTRADE — CSS
   ============================================================ */

:root {
  --navy: #0c1f3f;
  --navy-mid: #142d55;
  --navy-light: #1e3a5f;
  --gold: #f5a623;
  --gold-light: #f7b84b;
  --cream: #f4f1eb;
  --text: #1a2e4a;
  --text-muted: #5a7080;
  --white: #ffffff;
  --border: #e0d9ce;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(12,31,63,0.10);
  --shadow-lg: 0 12px 48px rgba(12,31,63,0.18);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: 'Sora', sans-serif; }

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; }

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo span { color: var(--gold); }

/* ---- LAYOUT ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-light);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-quote {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-quote:hover { background: var(--gold-light); transform: translateY(-1px); }

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  padding: 7px 12px;
  border-radius: 7px;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background: var(--navy);
  border-top: 1px solid var(--navy-light);
  gap: 12px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  padding: 6px 0;
}
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  }

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 60%);
}
.orb2 {
  width: 500px; height: 500px;
  bottom: -200px; right: 10%;
  background: radial-gradient(circle, rgba(30,58,95,0.5) 0%, transparent 70%);
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  filter: blur(1px);
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero-eyebrow {
  color: rgba(26,46,74,0.45);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.headline-line1 {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.5s ease both;
}

.headline-line2 {
  display: block;
  margin-top: 4px;
  font-style: italic;
  color: var(--navy);
  animation: fadeUp 0.5s 0.2s ease both;
}

.real-person {
  position: relative;
  display: inline-block;
}

.real-person::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  background: var(--gold);
  width: 0;
  border-radius: 2px;
  animation: underline-grow 0.6s 0.8s cubic-bezier(.4,0,.2,1) forwards;
}

.person-word {
  color: var(--gold);
  display: inline-block;
  min-width: 2px;
  animation: pop-in 0.4s 1.4s cubic-bezier(.34,1.56,.64,1) both;
}

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

@keyframes underline-grow {
  from { width: 0; opacity: 0; }
  to { width: 100%; opacity: 1; }
}

@keyframes pop-in {
  from { transform: scale(0.85); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}

.highlight {
  color: var(--gold);
  font-style: italic;
  font-weight: 800;
}

.tag-bilingual {
  display: inline-block;
  background: rgba(12,31,63,0.08);
  border: 1px solid rgba(12,31,63,0.2);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  padding: 4px 12px;
  border-radius: 6px;
  margin-left: 10px;
  vertical-align: middle;
  font-family: 'DM Sans', sans-serif;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 24px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.25s ease both;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
/* In hero, override to dark bg */
.hero .btn-primary {
  background: var(--navy);
  color: var(--white);
}
.hero .btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12,31,63,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(12,31,63,0.3);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(12,31,63,0.06);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(12,31,63,0.15);
}

/* Globe */
.hero-globe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s 0.2s ease both;
  width: 420px;
  flex-shrink: 0;
}

.globe {
  position: relative;
  width: 320px;
  height: 320px;
}

#globe-canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
  border-radius: 50%;
}

#globe-canvas:active {
  cursor: grabbing;
}

.globe-svg {
  width: 100%;
  height: 100%;
}

.route-label {
  position: absolute;
  background: rgba(15,32,64,0.92);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pulse-dot {
  animation: pulseDot 2.5s ease-in-out infinite;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 { color: var(--text); }
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.service-card:nth-child(4) {
  grid-column: 1 / 2;
}

.service-card:nth-child(5) {
  grid-column: 2 / 3;
}

.service-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: auto;
  margin-right: 0;
}

.service-card:nth-child(5) {
  grid-column: 2 / 3;
  margin-left: 0;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,0.3);
}

.service-icon { font-size: 2rem; margin-bottom: 14px; }

.service-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
  border: 1px solid rgba(245,166,35,0.25);
}
.btn-service-quote {
  display: inline-block;
  margin-top: 16px;
  background: none;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-service-quote:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: 100px 0;
  background: var(--navy);
}

.why-us .section-eyebrow { color: var(--gold); }
.why-us h2 { color: var(--white); margin-bottom: 32px; }

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

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check {
  width: 28px; height: 28px;
  min-width: 28px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-list p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

.stats-card {
  background: linear-gradient(135deg, var(--navy-mid), #0a1829);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 3px;
}

.stats-card-inner {
  background: linear-gradient(135deg, rgba(30,58,95,0.4), rgba(10,24,41,0.8));
  border-radius: calc(var(--radius-lg) - 3px);
  padding: 40px 36px;
}

.big-stat { margin-bottom: 32px; }

.big-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.big-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mini-stat span {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.mini-stat p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* ============================================================
   INSIGHTS / NEWSLETTER
   ============================================================ */
   .insights {
    padding: 100px 0;
    background: var(--cream);
  }
  
  .newsletter-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow);
  }
  
  /* ---- 左欄:label + Beehiiv 表單 + disclaimer ---- */
  .newsletter-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .newsletter-label {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
  }
  
  .beehiiv-embed {
    width: 100%;
    max-width: 460px;
  }
  
  .beehiiv-embed iframe {
    width: 100% !important;
    height: 320px !important;  /* 含 Title+Subtitle+表單 */
    min-height: 0 !important;
  }
  
  .newsletter-disclaimer {
    color: var(--text-muted);
    font-size: 0.78rem;
  }
  
  /* ---- 右欄:topics ---- */
  .topics-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  
  .topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .topic-tags span {
    background: rgba(12,31,63,0.06);
    border: 1px solid rgba(12,31,63,0.12);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 13px;
    border-radius: 100px;
    transition: all var(--transition);
    cursor: default;
  }
  .topic-tags span:hover {
    background: var(--navy);
    color: var(--white);
  }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content .section-eyebrow { text-align: left; }
.about-content h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.founder-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.founder-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  overflow: hidden;
}

.founder-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.founder-badge p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.about-callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: sticky;
  top: 90px;
}

.about-callout h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.about-callout p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.about-callout .btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-block;
}
.about-callout .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #07121f;
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7,18,31,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--border); color: var(--text); }

.modal h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.quote-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.full-width { width: 100%; }

.quote-form .btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px;
  font-size: 0.95rem;
  border-radius: 10px;
  margin-top: 4px;
}
.quote-form .btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a8a55;
  color: white;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 100px;
  z-index: 2000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.4s cubic-bezier(.175,.885,.32,1.275);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes pulseDot {
  0%, 100% { r: 8; opacity: 1; }
  50% { r: 11; opacity: 0.6; }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
  grid-column: auto;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    padding: 48px 28px 60px;
    grid-template-columns: 1fr;
  }

  .hero-globe-wrap { display: none; }

  .badge {
    font-size: 0.68rem;
    padding: 4px 10px;
    white-space: nowrap;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-headline {
    font-size: 2rem !important;
    line-height: 1.15;
  }

  .tag-bilingual { display: none; }

  .hero-sub {
    font-size: 0.9rem;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 28px;
  }

  .stat-num { font-size: 1.1rem; }
  .stat-label { font-size: 0.72rem; }

  h1 { font-size: 2rem; }

  .why-grid,
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .newsletter-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
  }

  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links { grid-template-columns: 1fr 1fr; }

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

  .about-callout { position: static; }

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

  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .hero-stats { gap: 16px; }

  .newsletter-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
  }
}

.article-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-top: 12px;
  font-style: italic;
}
