:root {
  --navy: #092238;
  --navy-2: #123955;
  --emerald: #0f8f6f;
  --emerald-dark: #0a6a55;
  --gold: #c69a3d;
  --ink: #182331;
  --muted: #637083;
  --line: rgba(9, 34, 56, 0.12);
  --soft: #f5f8f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 34, 56, 0.12);
  --radius: 8px;
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(15, 143, 111, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7faf9 44%, #ffffff 100%);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  background:   rgba(0, 0, 0, 0.76);
  box-shadow: 0 18px 50px rgba(9, 34, 56, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background:   rgba(0, 0, 0, 0.76);
  box-shadow: 0 18px 46px rgba(9, 34, 56, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  width: clamp(128px, 15vw, 158px);
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.brand-mark img {
  width: min(142px, calc(100% - 16px));
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: black;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
  overflow-wrap: normal;
  color: rgb(255, 255, 255);
}

.site-nav a:hover {
  color: var(--emerald);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.language-switcher button {
  min-width: 42px;
  min-height: 40px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.active {
  color: var(--white);
  background: var(--emerald);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

.section {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.hero {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 128px max(var(--gutter), calc((100% - var(--container)) / 2)) 72px;
  background:
    linear-gradient(105deg, rgba(9, 34, 56, 0.98) 0%, rgba(9, 34, 56, 0.9) 42%, rgba(9, 34, 56, 0.54) 68%, rgba(9, 34, 56, 0.2) 100%),
    url("assets/virtual-assistant2.jpg") center right / cover;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-section .eyebrow {
  color: #d7b464;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: 6.2rem;
  line-height: 1;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 3.2rem;
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.7;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  box-shadow: 0 16px 38px rgba(15, 143, 111, 0.26);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.btn-secondary {
  color: var(--navy);
  border-color: rgba(198, 154, 61, 0.42);
  background: rgba(255, 255, 255, 0.9);
}

.btn svg,
.feature-card svg,
.industry-item svg,
.story-card svg,
.navigator-option svg,
.carousel-btn svg,
.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.navigator-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(198, 154, 61, 0.14);
}

.navigator-panel h2 {
  color: var(--white);
  font-size: 2rem;
}

.navigator-options {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.navigator-option {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.navigator-option.active,
.navigator-option:hover {
  border-color: rgba(215, 180, 100, 0.7);
  background: rgba(255, 255, 255, 0.18);
}

.navigator-result {
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

.result-label {
  margin-bottom: 8px;
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.navigator-result h3 {
  margin-bottom: 8px;
}

.navigator-result p:last-of-type {
  color: var(--muted);
  line-height: 1.6;
}

.navigator-result a {
  color: var(--emerald-dark);
  font-weight: 800;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.idealism-section {
  width: 100%;
  max-width: none;
  padding-left: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--container)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 34, 56, 0.98), rgba(9, 34, 56, 0.9) 52%, rgba(10, 106, 85, 0.92)),
    var(--navy);
}

.idealism-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.05);
  background-size: 72px 72px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.idealism-shell::before {
  content: "";
  position: absolute;
  inset: 26px auto 26px 48%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(215, 180, 100, 0.62), transparent);
}

.idealism-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(320px, 36vw, 420px);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.idealism-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(9, 34, 56, 0.22)),
    linear-gradient(90deg, rgba(9, 34, 56, 0.06), transparent 42%);
  pointer-events: none;
}

.idealism-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.partner-visual {
  align-self: start;
  min-height: auto;
  height: auto;
  aspect-ratio: 1600 / 1007;
  background: #201f20;
}

.partner-visual img {
  height: 100%;
  object-fit: contain;
}

.idealism-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.idealism-copy {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 30vw, 340px);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.idealism-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
}

.language-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 22px;
  padding: 0 12px;
  border: 1px solid rgba(215, 180, 100, 0.36);
  border-radius: var(--radius);
  color: #f1d28c;
  background: rgba(198, 154, 61, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.idealism-copy h3 {
  max-width: 540px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.08;
}

.idealism-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.75;
}

.collaboration-partners {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.collaboration-partners > span {
  color: #f1d28c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.partner-logo-card {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, border-color 180ms ease;
}

.partner-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 180, 100, 0.62);
}

.partner-logo-card-dark {
  background: rgba(7, 28, 47, 0.84);
}

.partner-logo-card img {
  display: block;
  width: 100%;
  max-width: 156px;
  max-height: 52px;
  object-fit: contain;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  gap: 18px;
}

.feature-card,
.story-card {
  min-height: 320px;
  overflow: hidden;
  padding: 0 22px 24px;
  border: 1px solid rgba(9, 34, 56, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(9, 34, 56, 0.08);
  backdrop-filter: blur(16px);
}

.card-image {
  width: calc(100% + 44px);
  height: 148px;
  margin: 0 -22px 20px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(9, 34, 56, 0.09);
}

.feature-card svg,
.industry-item svg,
.story-card svg {
  color: var(--emerald);
}

.feature-card h3,
.story-card h3 {
  margin: 14px 0 10px;
}

.feature-card p,
.story-card p,
.contact-copy p,
.resource-card p {
  color: var(--muted);
  line-height: 1.7;
}

.ecosystem-section {
  width: 100%;
  max-width: none;
  padding-left: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--container)) / 2));
  background: linear-gradient(180deg, rgba(9, 34, 56, 0.04), rgba(15, 143, 111, 0.06));
}

.ecosystem {
  position: relative;
  width: min(780px, 100%);
  max-height: min(780px, calc(100vw - (var(--gutter) * 2)));
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin: 10px auto 0;
  border: 1px solid rgba(9, 34, 56, 0.11);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 24%, rgba(255, 255, 255, 0.48) 24% 25%, transparent 25%),
    repeating-radial-gradient(circle, rgba(15, 143, 111, 0.12) 0 2px, transparent 2px 116px);
}

.ecosystem-core {
  width: clamp(160px, 24vw, 210px);
  height: clamp(160px, 24vw, 210px);
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.ecosystem-core img {
  width: min(150px, 78%);
  border-radius: var(--radius);
}

.ecosystem-core span {
  margin-top: 6px;
  color: #f8f8f8;
  font-weight: 800;
}

.eco-node {
  position: absolute;
  min-width: clamp(118px, 15vw, 142px);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(9, 34, 56, 0.11);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(9, 34, 56, 0.1);
  font-weight: 800;
  text-align: center;
}

.node-1 { top: 7%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 20%; right: 6%; }
.node-3 { top: 49%; right: 0; }
.node-4 { right: 10%; bottom: 17%; }
.node-5 { bottom: 6%; left: 50%; transform: translateX(-50%); }
.node-6 { bottom: 17%; left: 8%; }
.node-7 { top: 49%; left: 0; }
.node-8 { top: 20%; left: 6%; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}

.industry-item {
  min-height: 224px;
  display: grid;
  grid-template-rows: 104px auto auto;
  align-content: start;
  justify-items: start;
  gap: 12px;
  overflow: hidden;
  padding: 0 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(9, 34, 56, 0.06);
  font-weight: 800;
}

.industry-item img {
  width: calc(100% + 36px);
  height: 104px;
  margin: 0 -18px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(9, 34, 56, 0.09);
}

.industry-item svg {
  margin-top: 6px;
}

.founder-section {
  width: 100%;
  max-width: none;
  padding-left: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--container)) / 2));
  background: var(--navy);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
}

.founder-photo {
  min-height: clamp(460px, 52vw, 620px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 50% 24%, rgba(198, 154, 61, 0.2), transparent 28rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.founder-photo img {
  width: min(92%, 540px);
  max-height: min(610px, 100%);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.28));
}

.founder-copy h2,
.contact-copy h2 {
  color: var(--white);
}

.founder-copy blockquote {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.85;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stats-grid div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  display: block;
  color: #d7b464;
  font-size: 3rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, calc((100% - 36px) / 3));
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.story-card {
  scroll-snap-align: start;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(9, 34, 56, 0.08);
  cursor: pointer;
}

.process-section {
  width: 100%;
  max-width: none;
  padding-left: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--container)) / 2));
  background:
    linear-gradient(180deg, rgba(246, 243, 235, 0.96), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 8% 20%, rgba(198, 154, 61, 0.16), transparent 26rem),
    radial-gradient(circle at 92% 35%, rgba(15, 143, 111, 0.12), transparent 28rem);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 14px;
  align-items: stretch;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
  opacity: 0.42;
}

.timeline-step {
  position: relative;
  z-index: 1;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(9, 34, 56, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    var(--white);
  box-shadow: 0 18px 52px rgba(9, 34, 56, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.timeline-step:hover {
  border-color: rgba(15, 143, 111, 0.28);
  box-shadow: 0 24px 68px rgba(9, 34, 56, 0.14);
  transform: translateY(-4px);
}

.timeline-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.timeline-step strong {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  box-shadow: 0 12px 26px rgba(15, 143, 111, 0.24);
  font-size: 1.1rem;
}

.step-head svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(198, 154, 61, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(198, 154, 61, 0.08);
}

.timeline-step span {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.resources-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.resource-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border: 1px solid rgba(9, 34, 56, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.resource-card h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 2.3rem;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.resource-links article,
.resource-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.resource-links svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
}

.contact-section {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding-left: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--container)) / 2));
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 42px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 128px;
}

.contact-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #d7b464;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-email svg {
  width: 19px;
  height: 19px;
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  padding: 12px 14px;
}

.consult-form textarea {
  resize: vertical;
}

.consult-form select option {
  color: var(--ink);
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: #d7b464;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.success {
  color: #8ff2d2;
}

.form-status.error {
  color: #ffd7a8;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 44px 16px;
  color: rgba(255, 255, 255, 0.7);
  background: #071c2f;
  text-align: center;
}

.site-footer .footer-logo {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.site-footer p {
  margin: 0;
}

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

.developer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: min(100%, 420px);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.developer-credit img {
  display: block;
  width: clamp(118px, 28vw, 176px);
  height: auto;
  max-height: 42px;
  object-fit: contain;
  border-radius: 0;
}

.developer-credit span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 46px rgba(9, 34, 56, 0.24), 0 0 0 8px rgba(37, 211, 102, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(9, 34, 56, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.16);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --section-y: 78px;
  }

  .site-nav {
    position: fixed;
    inset: 86px 16px auto 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(9, 34, 56, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 13px;
    border-radius: var(--radius);
    color: var(--navy);
    background: #eef4f2;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--white);
    background: var(--emerald);
  }

  .nav-toggle {
    display: grid;
    order: 3;
  }

  .language-switcher {
    margin-left: 0;
    order: 2;
  }

  .site-nav {
    order: 4;
  }

  .hero-grid,
  .idealism-shell,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .idealism-shell::before {
    display: none;
  }

  .navigator-panel {
    width: min(100%, 640px);
  }

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

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 12px;
    --section-y: 70px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 8px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .brand-mark {
    width: 136px;
    height: 44px;
  }

  .brand-mark img {
    width: 122px;
  }

  .language-switcher button {
    min-width: 38px;
    min-height: 38px;
  }

  .section {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  }

  .hero {
    width: 100%;
    margin: 0;
    min-height: auto;
    padding: 112px 12px 56px;
    background-position: 62% center;
  }

  h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .resource-card {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .resource-card .btn,
  .consult-form .btn {
    width: 100%;
  }

  .navigator-panel,
  .consult-form {
    padding: 18px;
  }

  .navigator-panel h2 {
    font-size: 1.65rem;
  }

  .navigator-options {
    grid-template-columns: 1fr;
  }

  .idealism-shell {
    padding: 20px;
  }

  .idealism-visual {
    min-height: 280px;
  }

  .feature-grid,
  .idealism-grid,
  .industry-grid,
  .stats-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .idealism-copy {
    min-height: auto;
    padding: 22px;
  }

  .ecosystem {
    aspect-ratio: auto;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.55);
  }

  .ecosystem-core {
    width: 100%;
    height: auto;
    min-height: 140px;
    border-radius: var(--radius);
  }

  .eco-node {
    position: static;
    width: 100%;
    transform: none;
  }

  .founder-photo {
    min-height: 460px;
  }

  .stats-grid strong {
    font-size: 2.35rem;
  }

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

  .carousel-btn {
    display: none;
  }

  .carousel-track {
    grid-auto-columns: minmax(248px, 86%);
  }

  .resource-card h2 {
    font-size: 1.85rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    box-shadow: 0 14px 34px rgba(9, 34, 56, 0.22), 0 0 0 6px rgba(37, 211, 102, 0.12);
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .timeline-step {
    min-height: auto;
  }

  .timeline-step:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .site-header {
    align-items: center;
  }

  .brand-mark {
    width: 118px;
    height: 40px;
  }

  .brand-mark img {
    width: 106px;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 36px;
    font-size: 0.72rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    inset: 76px 10px auto 10px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .hero {
    padding: 100px 12px 48px;
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1.05;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  h2 {
    font-size: 1.85rem;
  }

  .btn {
    min-height: 48px;
    padding: 0 14px;
  }

  .navigator-option {
    align-items: flex-start;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-card {
    min-height: 76px;
  }

  .feature-card,
  .story-card {
    min-height: auto;
    padding-right: 18px;
    padding-left: 18px;
  }

  .card-image {
    width: calc(100% + 36px);
    height: 132px;
    margin-right: -18px;
    margin-left: -18px;
  }

  .industry-item {
    min-height: auto;
  }

  .founder-photo {
    min-height: 380px;
  }

  .resource-card,
  .consult-form {
    padding: 18px;
  }

  .contact-email {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
