/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/*=============== CSS CUSTOM PROPERTIES ===============*/
:root {
  /* Core palette — Coal, Salt, Indigo */
  --coal-900: #0B0808;
  --coal-800: #130E0E;
  --coal-700: #1B1616;
  --coal-600: #251E1E;
  --coal-500: #302626;
  --coal-400: #3D3030;

  --salt-100: #F4EFEC;
  --salt-200: #E4DDDA;
  --salt-300: #BEB5B2;
  --salt-400: #8E8582;
  --salt-500: #6A6260;
  --salt-600: #463E3C;

  /* Sky blue accent */
  --sky-200: #BAE6FD;
  --sky-300: #7DD3FC;
  --sky-400: #38BDF8;
  --sky-500: #0EA5E9;
  --sky-600: #0284C7;
  --sky-700: #0369A1;

  /* Theme tokens — dark default */
  --bg:           var(--coal-900);
  --bg-subtle:    var(--coal-800);
  --bg-raised:    var(--coal-700);
  --bg-overlay:   var(--coal-600);
  --border:       var(--coal-500);
  --border-hi:    var(--coal-400);

  --fg:           var(--salt-100);
  --fg-2:         var(--salt-300);
  --fg-3:         var(--salt-400);
  --fg-4:         var(--salt-500);

  --accent:       var(--sky-500);
  --accent-hi:    var(--sky-400);
  --accent-lo:    var(--sky-600);
  --accent-bg:    rgba(14, 165, 233, 0.1);
  --accent-glow:  rgba(14, 165, 233, 0.25);

  --nav-bg:       rgba(11, 8, 8, 0.9);
  --nav-h:        70px;

  /* Typography */
  --f-display: 'Outfit', system-ui, sans-serif;
  --f-ui:      'Outfit', system-ui, sans-serif;
  --f-body:    'Outfit', system-ui, sans-serif;

  /* Motion */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 0.85, 0.35);

  /* Layout */
  --max-w:        1200px;
  --pad:          clamp(1.25rem, 4vw, 2.5rem);
  --section-py:   clamp(5rem, 10vw, 9rem);
}

[data-theme="light"] {
  --bg:           #F8F4F2;
  --bg-subtle:    #EDE7E4;
  --bg-raised:    #FFFFFF;
  --bg-overlay:   #E2DAD6;
  --border:       #D6CCC8;
  --border-hi:    #C4B8B4;

  --fg:           #1A1212;
  --fg-2:         #54423E;
  --fg-3:         #7A6864;
  --fg-4:         #A09088;

  --accent:       #0284C7;
  --accent-hi:    #0EA5E9;
  --accent-lo:    #0369A1;
  --accent-bg:    rgba(2, 132, 199, 0.08);
  --accent-glow:  rgba(2, 132, 199, 0.2);

  --nav-bg:       rgba(248, 244, 242, 0.92);
}

/*=============== RESET & BASE ===============*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/*=============== UTILITIES ===============*/
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: var(--section-py) 0; }

.label {
  font-family: var(--f-ui);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.label::before {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.display em, h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--accent);
  font-variation-settings: 'opsz' 72, 'WONK' 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.75rem;
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}
.btn i { font-size: 0.82em; transition: transform 0.3s var(--ease); }

.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover {
  background: var(--accent-hi);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--accent-glow);
}
.btn--solid:hover i { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-hi);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn--text {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  gap: 0.6rem;
}
.btn--text i { transition: transform 0.3s var(--ease); }
.btn--text:hover i { transform: translateX(5px); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }
.reveal-delay-5 { transition-delay: 0.58s; }

/*=============== NAVIGATION ===============*/
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.nav__logo { height: 110px; display: flex; align-items: center; }
.nav__logo img { height: 110px; width: auto; object-fit: contain; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark  { display: block; }
[data-theme="light"] .logo-dark { display: none; }
[data-theme="light"] .logo-light { display: block; }

.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__link {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  transition: color 0.25s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--fg); }
.nav__link:hover::after, .nav__link.active::after { right: 0; }

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

.nav__countries {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--border-hi);
  border-radius: 2px;
  padding: 0.28rem 0.55rem;
}
.nav__country {
  font-family: var(--f-ui);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 0.2rem 0.4rem;
  border-radius: 1px;
  transition: all 0.2s;
}
.nav__country:hover { color: var(--fg); background: var(--accent-bg); }
.nav__country-sep { color: var(--border-hi); font-size: 0.7rem; }

.nav__theme {
  width: 36px; height: 36px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3);
  font-size: 0.78rem;
  transition: all 0.25s;
}
.nav__theme:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--fg); transition: all 0.3s var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); inset-inline: 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--pad) 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: var(--f-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--accent); }

/*=============== HERO ===============*/
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Indigo orb */
.hero__orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb::before {
  content: '';
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(14, 165, 233, 0.15) 0%,
    rgba(14, 165, 233, 0.06) 40%,
    transparent 70%
  );
  top: -80px;
  right: -150px;
  animation: orb-drift 8s ease-in-out infinite;
}
.hero__orb::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(56, 189, 248, 0.1) 0%,
    transparent 65%
  );
  top: 40%;
  right: 8%;
  animation: orb-drift 6s ease-in-out infinite reverse;
}

@keyframes orb-drift {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.1) translate(-25px, 40px); }
  66%       { transform: scale(0.92) translate(20px, -25px); }
}

.hero__left {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 6rem) var(--pad) clamp(2rem, 4vw, 3.5rem);
  padding-left: calc(max((100vw - var(--max-w)) / 2, var(--pad)));
}

.hero__eyebrow { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 2rem; }
.hero__eyebrow-line { width: 2.5rem; height: 1px; background: var(--accent); }
.hero__eyebrow-text {
  font-family: var(--f-ui);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(3.4rem, 7.5vw, 6.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 1.75rem;
  font-variation-settings: 'opsz' 72;
}
.hero__headline strong {
  font-weight: 700;
  display: block;
  letter-spacing: -0.03em;
}
.hero__headline em {
  font-style: normal;
  color: var(--accent);
  font-variation-settings: 'opsz' 72, 'WONK' 1;
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--fg-2);
  max-width: 420px;
  line-height: 1.82;
  margin-bottom: 2.75rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fg-4);
}
.hero__scroll-line { width: 2.5rem; height: 1px; background: currentColor; }
.hero__scroll-text {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__right {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-right: calc(max((100vw - var(--max-w)) / 2, var(--pad)));
}

.hero__pillars {
  width: 100%;
  max-width: 260px;
  margin-left: auto;
  border-top: 1px solid var(--border);
}
.hero__pillar {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.25s;
}
.hero__pillar-text {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  transition: color 0.25s;
}
.hero__pillar-num {
  font-family: var(--f-display);
  font-size: 0.72rem;
  color: var(--fg-4);
  font-variation-settings: 'opsz' 9;
}
.hero__pillar:hover { border-bottom-color: var(--accent); }
.hero__pillar:hover .hero__pillar-text { color: var(--accent); }

/* Country cards — inline below hero actions */
.hero__countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  width: 340px;
  margin-top: 3rem;
}
.hero__country {
  background: var(--bg-subtle);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: background 0.25s;
}
.hero__country:hover { background: var(--bg-raised); }
.hero__country:hover .hero__country-arrow { transform: translateX(3px); }
.hero__country-flag { font-size: 1.45rem; line-height: 1; }
.hero__country-label {
  font-family: var(--f-ui);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 0.1rem;
}
.hero__country-name {
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fg);
  font-variation-settings: 'opsz' 18;
}
.hero__country-arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 0.68rem;
  transition: transform 0.25s var(--ease);
}

/*=============== MARQUEE ===============*/
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  padding: 0.95rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  white-space: nowrap;
  font-family: var(--f-ui);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.marquee-diamond {
  width: 5px; height: 5px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/*=============== SERVICES ===============*/
.services { background: var(--bg); padding-top: clamp(3rem, 5vw, 5rem); }
.services__header { max-width: 600px; margin-bottom: clamp(3rem, 6vw, 5rem); text-align: center; margin-left: auto; margin-right: auto; }
.services__list { border-top: 1px solid var(--border); }

.service-item {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2.5rem 0;
  transition: border-color 0.3s;
}
.service-item:hover { border-bottom-color: var(--accent); }
.service-item:hover .service-item__name { color: var(--accent); }
.service-item:hover .service-item__arrow { opacity: 1; transform: translateX(0); }

.service-item__num {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 0.4rem;
  font-variation-settings: 'opsz' 9;
}
.service-item__body {}
.service-item__name {
  font-family: var(--f-display);
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.08;
  margin-bottom: 0.65rem;
  font-variation-settings: 'opsz' 36;
  transition: color 0.25s;
}
.service-item__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg-2);
  max-width: 520px;
  line-height: 1.78;
}
.service-item__tag {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 0.28rem 0.6rem;
  border-radius: 2px;
  margin-top: 1rem;
  display: inline-block;
}
.service-item__arrow {
  color: var(--accent);
  font-size: 0.9rem;
  padding-top: 0.5rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}

/*=============== PORCHTALK SHOWCASE ===============*/
.porchtalk {
  background: #070508;
  position: relative;
  overflow: hidden;
}
.porchtalk::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.09) 0%, transparent 60%);
  top: -200px; left: -200px;
  pointer-events: none;
}
.porchtalk::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 60%);
  bottom: -150px; right: -100px;
  pointer-events: none;
}

.porchtalk__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.porchtalk__product-label {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
}
.porchtalk__wordmark {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  font-style: normal;
  color: #FAF6F0;
  line-height: 1;
  margin-bottom: 1.25rem;
  font-variation-settings: 'opsz' 72, 'WONK' 1;
  letter-spacing: -0.025em;
}
.porchtalk__tagline {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: normal;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.75rem;
  line-height: 1.5;
  font-variation-settings: 'opsz' 18;
}
.porchtalk__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.88;
  margin-bottom: 2rem;
  max-width: 460px;
}
.porchtalk__pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.porchtalk__pillar {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.porchtalk__pillar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.porchtalk__pillar-text {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.porchtalk__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Ember-coloured CTA for PorchTalk */
.btn--ember {
  background: var(--accent);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.btn--ember:hover {
  background: var(--accent-hi);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.3);
}

.btn--ghost-ember {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.btn--ghost-ember:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.85); transform: translateY(-2px); }

/* Phone mockup */
.porchtalk__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup { width: 275px; position: relative; }
.phone-frame {
  width: 275px;
  background: #161014;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07);
}
.phone-notch {
  width: 80px; height: 24px;
  background: #161014;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 6px;
}
.phone-screen {
  background: #0D0A14;
  border-radius: 28px;
  overflow: hidden;
  min-height: 510px;
  display: flex;
  flex-direction: column;
}

.pt-status {
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0D0A14;
}
.pt-time {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.pt-signal { display: flex; gap: 2px; align-items: flex-end; }
.pt-signal span { display: block; width: 3px; background: rgba(255,255,255,0.5); border-radius: 1px; }
.pt-signal span:nth-child(1) { height: 4px; }
.pt-signal span:nth-child(2) { height: 7px; }
.pt-signal span:nth-child(3) { height: 10px; }

.pt-header {
  padding: 0.9rem 1.1rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pt-logo {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  color: #fff;
}
.pt-logo-accent { color: var(--accent-hi); }
.pt-cat-icon { font-size: 1rem; color: var(--accent); display: block; margin-bottom: 0.28rem; }
.pt-post-time {
  font-family: var(--f-ui);
  font-size: 0.48rem;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  margin-left: auto;
}
.pt-anon-pill {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(14, 165, 233, 0.85);
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
}
.pt-sub {
  padding: 0 1.1rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.pt-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0 0.9rem 0.9rem;
}
.pt-cat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 0.5rem 0.3rem;
  text-align: center;
  transition: all 0.2s;
}
.pt-cat:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.35);
}
.pt-cat-emoji { font-size: 1.15rem; display: block; margin-bottom: 0.28rem; }
.pt-cat-name {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.pt-rule { border: none; height: 1px; background: rgba(255,255,255,0.05); margin: 0 0.9rem; }

.pt-post {
  padding: 0.9rem 1.1rem;
  flex: 1;
}
.pt-post-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}
.pt-post-who {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.pt-post-tag {
  font-family: var(--f-ui);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(14, 165, 233, 0.15);
  padding: 0.12rem 0.4rem;
  border-radius: 10px;
}
.pt-post-text {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}
.pt-post-replies {
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pt-compose {
  padding: 0.65rem 1.1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pt-compose-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 0.5rem 0.75rem;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--f-body);
}
.pt-send-btn {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/*=============== ABOUT ===============*/
.about { background: var(--bg-subtle); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.about__name-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 2rem 0 2.5rem;
  border-radius: 2px;
  overflow: hidden;
}
.about__name-part {
  background: var(--bg-raised);
  padding: 1.5rem 1.25rem;
}
.about__name-word {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: normal;
  color: var(--accent);
  margin-bottom: 0.35rem;
  font-variation-settings: 'opsz' 18, 'WONK' 1;
}
.about__name-meaning {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 0.6rem;
}
.about__name-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.72;
}
.about__right { padding-top: 1rem; }
.about__quote {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: normal;
  color: var(--fg);
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  margin-bottom: 1.75rem;
  font-variation-settings: 'opsz' 18;
}
.about__body {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.88;
  margin-bottom: 1.25rem;
}
.about__mission {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
}
.about__mission-label {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.about__mission-text {
  font-family: var(--f-display);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.7;
  font-variation-settings: 'opsz' 18;
}

/*=============== VALUES ===============*/
.values { background: var(--bg); }
.values__header { max-width: 600px; margin-bottom: clamp(3rem, 6vw, 5rem); text-align: center; margin-left: auto; margin-right: auto; }

.values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.value-block {
  background: var(--bg-raised);
  padding: 2.5rem 1.75rem;
  transition: background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--accent-bg);
  transition: height 0.4s var(--ease);
}
.value-block:hover { background: var(--bg-overlay); }
.value-block:hover::after { height: 100%; }

.value-block__letter {
  font-family: var(--f-display);
  font-size: 4.5rem;
  font-weight: 700;
  font-style: normal;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  font-variation-settings: 'opsz' 72, 'WONK' 1;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}
.value-block__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.65rem;
  font-variation-settings: 'opsz' 18;
  position: relative;
  z-index: 1;
}
.value-block__body {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/*=============== WHERE WE OPERATE ===============*/
.operate { background: var(--bg-subtle); }
.operate__header { margin-bottom: 3rem; text-align: center; margin-left: auto; margin-right: auto; }
.operate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.operate__card {
  display: block;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.operate__card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.operate__card:hover .operate__card-arrow { transform: translateX(5px); color: var(--accent); }

.operate__card-top {
  padding: 2.5rem 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.operate__card-flag { font-size: 2.5rem; line-height: 1; }
.operate__card-icon { font-size: 1.5rem; color: var(--accent); line-height: 1; }
.operate__card-arrow { color: var(--fg-4); font-size: 0.85rem; margin-top: 0.5rem; transition: all 0.3s var(--ease); }
.operate__card-body { padding: 1.5rem 2.5rem 2rem; }
.operate__card-country {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.5rem;
  font-variation-settings: 'opsz' 24;
}
.operate__card-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.78;
  margin-bottom: 1.5rem;
}
.operate__card-foot {
  padding: 1.25rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.operate__card-entity {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.operate__card-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

/*=============== CONTACT ===============*/
.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}
.contact__info-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
  font-variation-settings: 'opsz' 36;
}
.contact__info-body {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.contact__detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact__detail-icon {
  width: 36px; height: 36px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact__detail-label {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 0.2rem;
}
.contact__detail-value {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--fg-2);
}

.contact__form {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border-hi);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--fg);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--fg-4); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A6260' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-select option { background: var(--bg-raised); color: var(--fg); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s var(--ease);
}
.form-submit:hover { background: var(--accent-hi); transform: translateY(-2px); box-shadow: 0 10px 28px var(--accent-glow); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

#contact-message { font-size: 0.85rem; margin-top: 0.75rem; min-height: 1.2em; font-weight: 400; }
.color-green { color: #4caf50; }
.color-red   { color: #ef5350; }

/*=============== LEGAL PAGES ===============*/
.legal-content { background: var(--bg); }
.legal-body { max-width: 780px; margin: 0 auto; }
.legal-section { margin-bottom: 3rem; }
.legal-section p { color: var(--fg-2); line-height: 1.8; margin-bottom: 1rem; }
.legal-heading {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}
.legal-list li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  color: var(--fg-2);
  line-height: 1.7;
  position: relative;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.legal-link {
  color: var(--accent);
  text-decoration: none;
}
.legal-link:hover { text-decoration: underline; }
.legal-section code {
  font-family: monospace;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
  color: var(--fg);
}

/*=============== FOOTER ===============*/
.footer { background: var(--bg-subtle); border-top: 1px solid var(--border); }
.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer__logo { height: 110px; width: auto; object-fit: contain; margin-bottom: 1.25rem; }
.footer__tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.78;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer__socials { display: flex; gap: 0.65rem; }
.footer__social {
  width: 34px; height: 34px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-4);
  font-size: 0.75rem;
  transition: all 0.25s;
}
.footer__social:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.footer__col-title {
  font-family: var(--f-ui);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__link { font-size: 0.875rem; font-weight: 300; color: var(--fg-3); transition: color 0.2s; }
.footer__link:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg-4);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal-link {
  font-family: var(--f-ui);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
  transition: color 0.2s;
}
.footer__legal-link:hover { color: var(--accent); }

/*=============== COUNTRY PAGES ===============*/
.country-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.country-hero__orb {
  position: absolute; inset: 0; pointer-events: none;
}
.country-hero__orb::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 65%);
  top: -100px; right: -100px;
  animation: orb-drift 9s ease-in-out infinite;
}
.country-hero__content {
  position: relative; z-index: 1;
  width: 100%;
  padding: 4rem 0 5rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-ui);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 2.5rem;
}
.breadcrumb a { color: var(--fg-4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 0.52rem; color: var(--border-hi); }

.country-hero__flag { font-size: 3rem; margin-bottom: 1.25rem; line-height: 1; }
.country-hero__icon { font-size: 2rem; color: var(--accent); margin-bottom: 1.25rem; line-height: 1; }
.country-hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  font-variation-settings: 'opsz' 72;
}
.country-hero__title em {
  font-style: normal;
  color: var(--accent);
  font-variation-settings: 'opsz' 72, 'WONK' 1;
}
.country-hero__body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-2);
  max-width: 560px;
  line-height: 1.85;
}

.country-overview { background: var(--bg); }
.country-overview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.country-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2rem;
}
.stat-box { background: var(--bg-raised); padding: 1.75rem; }
.stat-box__value {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.3rem;
  font-variation-settings: 'opsz' 36;
}
.stat-box__label {
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
}

.country-services { background: var(--bg-subtle); text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.svc-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: 0 16px 35px rgba(0,0,0,0.25); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__icon {
  width: 44px; height: 44px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.svc-card__title {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.65rem;
  font-variation-settings: 'opsz' 18;
}
.svc-card__body { font-size: 0.875rem; font-weight: 300; color: var(--fg-2); line-height: 1.75; }
.svc-card__badge {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--f-ui);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.country-why { background: var(--bg); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why__list { display: flex; flex-direction: column; gap: 1.5rem; }
.why__item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why__item-num {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 1.75rem;
  font-variation-settings: 'opsz' 9;
}
.why__item-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.3rem;
  font-variation-settings: 'opsz' 18;
}
.why__item-text { font-size: 0.875rem; font-weight: 300; color: var(--fg-2); line-height: 1.75; }
.why__visual {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3rem;
  text-align: center;
}
.why__logo-box { margin-bottom: 1.5rem; }
.why__logo-box img { width: 80%; max-width: 320px; height: auto; display: block; margin: 0 auto; }
[data-theme="dark"]  .why__logo-box .logo-light { display: none; }
[data-theme="dark"]  .why__logo-box .logo-dark  { display: block; margin: 0 auto; }
[data-theme="light"] .why__logo-box .logo-dark  { display: none; }
[data-theme="light"] .why__logo-box .logo-light { display: block; margin: 0 auto; }
.why__visual-quote {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-style: normal;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.6;
  font-variation-settings: 'opsz' 18;
}
.coming-soon-notice {
  background: var(--accent-bg);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 2px;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.coming-soon-notice i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }
.coming-soon-notice span { font-size: 0.875rem; font-weight: 300; color: var(--fg-2); }
.coming-soon-notice strong { color: var(--accent); font-weight: 500; }

/*=============== CAROUSEL ===============*/
.carousel {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg);
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s var(--ease);
  display: flex;
  flex-direction: column;
}
.carousel__slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide orb */
.carousel__orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.carousel__orb::before {
  content: '';
  position: absolute;
  width: 750px; height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0.05) 40%, transparent 70%);
  top: -80px; right: -150px;
  animation: orb-drift 8s ease-in-out infinite;
}
.carousel__orb::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.09) 0%, transparent 65%);
  top: 40%; right: 8%;
  animation: orb-drift 6s ease-in-out infinite reverse;
}

/* Slide content wrapper */
.carousel__slide-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 0;
}

/* Per-element stagger animation */
.carousel__slide .c-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.carousel__slide--active .c-anim { opacity: 1; transform: none; }
.carousel__slide--active .c-anim:nth-child(1) { transition-delay: 0.08s; }
.carousel__slide--active .c-anim:nth-child(2) { transition-delay: 0.2s; }
.carousel__slide--active .c-anim:nth-child(3) { transition-delay: 0.34s; }
.carousel__slide--active .c-anim:nth-child(4) { transition-delay: 0.48s; }
.carousel__slide--active .c-anim:nth-child(5) { transition-delay: 0.6s; }

/* Slide 1 — Brand */
.cs1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cs1__logo { height: 440px; width: auto; margin-top: -200px; margin-bottom: -100px; }
[data-theme="dark"]  .cs1__logo.logo-light { display: none; }
[data-theme="dark"]  .cs1__logo.logo-dark  { display: block; }
[data-theme="light"] .cs1__logo.logo-dark  { display: none; }
[data-theme="light"] .cs1__logo.logo-light { display: block; }
.cs1__headline {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 0;
}
.cs1__headline em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}
.cs1__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-2);
  max-width: 460px;
  line-height: 1.82;
  margin-bottom: 1.5rem;
}
.cs1__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 0; }
.cs1__countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  width: 360px;
}
.cs1__country {
  background: var(--bg-subtle);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.25s;
}
.cs1__country:hover { background: var(--bg-raised); }
.cs1__country:hover .cs1__country-arrow { transform: translateX(3px); color: var(--accent); }
.cs1__country-icon { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }
.cs1__country-label {
  font-family: var(--f-ui);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 0.1rem;
}
.cs1__country-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
}
.cs1__country-arrow {
  margin-left: auto;
  color: var(--fg-4);
  font-size: 0.65rem;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

/* Slide 2 — PorchTalk */
.cs2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  width: 100%;
}
.cs2__left {}
.cs2__label {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.cs2__label::before { content: ''; width: 2rem; height: 1px; background: var(--accent); }
.cs2__headline {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.cs2__headline em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.cs2__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.82;
  max-width: 420px;
  margin-bottom: 2.25rem;
}
.cs2__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Carousel nav bar */
.carousel__nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem var(--pad);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.carousel__indicators { display: flex; gap: 0.5rem; align-items: center; }
.carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-hi);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.carousel__dot--active { background: var(--accent); transform: scale(1.35); }
.carousel__progress {
  width: 72px; height: 2px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}
.carousel__progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
}
.carousel__arrow {
  width: 34px; height: 34px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3);
  font-size: 0.7rem;
  transition: all 0.25s;
  opacity: 0;
  transition: opacity 0.3s, border-color 0.25s, color 0.25s;
}
.carousel:hover .carousel__arrow { opacity: 1; }
.carousel__arrow:hover { border-color: var(--accent); color: var(--accent); }

/*=============== RESPONSIVE ===============*/
@media (max-width: 1024px) {
  /* Legacy hero (kept for safety) */
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left { padding-left: var(--pad); }
  .hero__countries { left: var(--pad); }

  /* Carousel — tablet */
  .cs2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .cs2__right { display: none; }
  .cs1__countries { width: 100%; grid-template-columns: 1fr 1fr; }
  .carousel__arrow { opacity: 1; }

  /* Sections */
  .about__inner, .contact__grid, .porchtalk__inner,
  .country-overview__grid, .why__grid { grid-template-columns: 1fr; gap: 3rem; }

  .about__name-split { grid-template-columns: 1fr 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values__grid { grid-template-columns: repeat(3, 1fr); }
  .porchtalk__right { display: none; }
  .why__visual { display: none; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links, .nav__countries { display: none; }
  .nav__hamburger { display: flex; }

  /* Carousel — mobile */
  .carousel { min-height: 100svh; }
  .carousel__slide-inner { padding-bottom: 5.5rem; }
  .cs1__logo { width: 70vw; height: auto; margin-top: -32vw; margin-bottom: -15vw; }
  .cs1__sub { max-width: 100%; }
  .cs1__actions { flex-direction: column; }
  .cs1__actions .btn { width: 100%; justify-content: center; }
  .cs1__countries { grid-template-columns: 1fr; width: 100%; max-width: 320px; }
  .cs2__label::before { display: none; }
  .cs2 { text-align: center; }
  .cs2__left { display: flex; flex-direction: column; align-items: center; }
  .cs2__sub { max-width: 100%; }
  .cs2__headline { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .carousel__nav { padding: 1rem var(--pad); gap: 0.75rem; }
  .carousel__progress { width: 48px; }

  /* Legacy hero */
  .hero__countries {
    position: static;
    width: auto;
    margin-top: 2rem;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  /* Sections */
  .service-item { grid-template-columns: 50px 1fr; }
  .service-item__arrow { display: none; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .operate__grid, .services-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .country-stats { grid-template-columns: 1fr 1fr; }

  /* Country pages */
  .country-hero__content { padding: 0; }
  .country-hero__title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .why__list { gap: 1.5rem; }
  .about__name-split { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Carousel — small mobile */
  .cs1__headline { font-size: clamp(2.4rem, 10vw, 3rem); }
  .cs1__sub { font-size: 0.9rem; }
  .cs1__countries { max-width: 100%; }
  .carousel__arrow { display: none; }

  /* Sections */
  .values__grid { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(2.6rem, 11vw, 3.2rem); }
  .country-stats { grid-template-columns: 1fr 1fr; }
  .stat-box__value { font-size: 1.4rem; }

  /* Tighter section padding on small screens */
  .section { padding: 4rem 0; }
  .contact__info-title { font-size: clamp(2rem, 8vw, 2.8rem); }
}
