:root {
  --bg: #f5fbff;
  --surface: #ffffff;
  --surface-tint: rgba(255, 255, 255, 0.72);
  --text: #0f2a47;
  --muted: #4f6782;
  --primary: #ff7a00;
  --secondary: #0379dd;
  --accent: #ffbe0b;
  --line: #dbe6f1;
  --shadow: 0 16px 40px rgba(12, 62, 112, 0.12);
  --radius: 18px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, #d8f0ff 0%, transparent 30%),
    radial-gradient(circle at 85% 0%, #ffe8cc 0%, transparent 35%),
    var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  z-index: -1;
}

.bg-orb-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -70px;
  background: rgba(255, 165, 0, 0.26);
}

.bg-orb-2 {
  width: 340px;
  height: 340px;
  bottom: -130px;
  left: -90px;
  background: rgba(3, 121, 221, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(245, 251, 255, 0.8);
  border-bottom: 1px solid rgba(219, 230, 241, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: auto;
  height: 68px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(15, 42, 71, 0.2));
}

.brand strong {
  display: block;
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand span {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1d4b8f;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(219, 230, 241, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 24px rgba(15, 42, 71, 0.06);
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav .nav-view-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav .nav-home-trigger {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-nav .nav-home-trigger svg {
  width: 19px;
  height: 19px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav .nav-view-trigger:hover,
.site-nav .nav-view-trigger.active {
  background: rgba(3, 121, 221, 0.12);
  color: var(--secondary);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 20px;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(120deg, #ff7a00, #ff9d00);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.35);
}

.btn-secondary {
  color: var(--secondary);
  border: 2px solid rgba(3, 121, 221, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.btn-nav {
  background: #0f2a47;
  color: white !important;
  padding: 10px 16px;
}

.btn-nav.nav-view-trigger:hover,
.btn-nav.nav-view-trigger.active {
  background: #11365b;
  color: white;
}

.hero-intro {
  position: relative;
  max-width: 880px;
  padding-left: 26px;
  margin-bottom: 34px;
}

.hero-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
}

.view-kicker {
  margin-bottom: 10px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0.95;
}

.hero-intro h2 {
  max-width: 19ch;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-intro p:last-child {
  margin-top: 14px;
  max-width: 72ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.6;
  opacity: 0.96;
}

.view-section {
  display: none;
}

.view-section.active {
  display: block;
  animation: viewIn 0.34s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: stretch;
  padding: 38px 0 30px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(3, 121, 221, 0.08), rgba(255, 190, 11, 0.18), rgba(3, 121, 221, 0.08));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.06;
  margin-bottom: 12px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-copy > p {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero-copy {
  padding: 10px 0;
}

.hero-actions {
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.hero-highlights li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

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

.hero-panel article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel article:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 255, 0.88));
}

.hero-panel article:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 241, 0.9));
}

.hero-panel article:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 236, 0.9));
}

.hero-panel article:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 255, 0.9));
}

.hero-panel article::before,
.hero-panel article::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-panel article::before {
  top: -28px;
  right: -18px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(3, 121, 221, 0.08), transparent 62%),
    radial-gradient(circle at 35% 35%, rgba(255, 190, 11, 0.08), transparent 48%);
  opacity: 0.9;
}

.hero-panel article::after {
  right: -16px;
  bottom: -22px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 1px solid rgba(3, 121, 221, 0.08);
  transform: rotate(18deg);
}

.hero-panel h3 {
  font-size: 1.92rem;
  color: var(--secondary);
  margin: 14px 0 8px;
  position: relative;
  z-index: 1;
}

.hero-panel p {
  color: var(--muted);
  position: relative;
  z-index: 1;
  font-weight: 700;
  line-height: 1.45;
}

.stat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.hero-panel small {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(3, 121, 221, 0.08);
  color: #1d4b8f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(3, 121, 221, 0.14), rgba(255, 190, 11, 0.12));
  color: var(--secondary);
  position: relative;
  z-index: 1;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.section {
  padding: 62px 0;
}

.methodology {
  padding-top: 22px;
}

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

.method-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(219, 230, 241, 0.9);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.92));
  box-shadow: 0 14px 32px rgba(15, 42, 71, 0.08);
}

.method-kicker {
  margin-bottom: 10px;
  color: var(--secondary) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.method-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.method-card p:last-child {
  color: var(--muted);
}

.home-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}

.ribbon-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-tint);
  border: 1px solid rgba(219, 230, 241, 0.9);
  box-shadow: 0 10px 30px rgba(15, 42, 71, 0.06);
}

.ribbon-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.ribbon-card p {
  color: var(--muted);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(216, 240, 255, 0.34));
  border-top: 1px solid rgba(219, 230, 241, 0.65);
  border-bottom: 1px solid rgba(219, 230, 241, 0.65);
}

.section-head {
  max-width: 700px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
  line-height: 1.12;
}

.section-head p:last-child {
  color: var(--muted);
  line-height: 1.68;
}

.cards {
  display: grid;
  gap: 14px;
}

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

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

.card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.9)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.program-card {
  display: flex;
  flex-direction: column;
}

.program-card.program-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 255, 0.94)),
    var(--surface);
}

.program-card.program-card-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 241, 0.94)),
    var(--surface);
}

.program-card.program-card-warm {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 236, 0.96)),
    var(--surface);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(3, 121, 221, 0.08);
  color: var(--secondary) !important;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.program-card-primary .card-badge {
  background: rgba(3, 121, 221, 0.09);
}

.program-card-secondary .card-badge {
  background: rgba(34, 139, 94, 0.09);
  color: #1f7a52 !important;
}

.program-card-warm .card-badge {
  background: rgba(255, 122, 0, 0.1);
  color: #d96a00 !important;
}

.card h3 {
  font-size: 1.14rem;
  margin-bottom: 12px;
  line-height: 1.28;
}

.card p {
  color: var(--muted);
}

.card ul {
  margin: 14px 0 0;
  padding-left: 17px;
  display: grid;
  gap: 6px;
  color: var(--text);
}

.program-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(219, 230, 241, 0.9);
}

.program-meta p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.program-meta strong {
  color: var(--text);
}

.card-link {
  margin-top: auto;
  padding-top: 18px;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--secondary);
  font: inherit;
  font-weight: 800;
  padding-inline: 0;
  padding-bottom: 0;
  cursor: pointer;
  border-top: 1px solid rgba(219, 230, 241, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link::after {
  content: "→";
  transition: transform 0.18s ease;
}

.card-link:hover {
  text-decoration: underline;
}

.card-link:hover::after {
  transform: translateX(2px);
}

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

.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  background: linear-gradient(140deg, #0379dd, #0f2a47);
}

.step h3 {
  font-size: 1.04rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step p {
  color: var(--muted);
}

.quote {
  display: grid;
  gap: 12px;
  font-weight: 700;
  line-height: 1.62;
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 255, 0.9)),
    var(--surface);
  box-shadow: 0 18px 34px rgba(15, 42, 71, 0.08);
}

.quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: "Sora", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(3, 121, 221, 0.1);
}

.quote::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.quote-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.quote-tag::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border-radius: 999px;
  border: 1.6px solid currentColor;
  opacity: 0.8;
  flex-shrink: 0;
}

.quote-tag-student {
  background: rgba(3, 121, 221, 0.1);
  color: #1d4b8f;
}

.quote-tag-student::before {
  border-radius: 4px;
}

.quote-tag-parent {
  background: rgba(255, 122, 0, 0.12);
  color: #b85d00;
}

.quote-tag-parent::before {
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.quote cite {
  font-style: normal;
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.9rem;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-pill {
  position: relative;
  padding: 15px 18px 16px;
  border: 1px solid rgba(219, 230, 241, 0.82);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 251, 255, 0.72));
  box-shadow: 0 8px 20px rgba(15, 42, 71, 0.045);
  overflow: hidden;
}

.metric-pill::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.metric-pill strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.metric-pill span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

#hikayeler .metric-pill,
#hikayeler .quote {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

#hikayeler.visible .metric-pill,
#hikayeler.visible .quote {
  animation: storyRise 0.64s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#hikayeler.visible .metric-pill:nth-child(1) {
  animation-delay: 0.06s;
}

#hikayeler.visible .metric-pill:nth-child(2) {
  animation-delay: 0.14s;
}

#hikayeler.visible .metric-pill:nth-child(3) {
  animation-delay: 0.22s;
}

#hikayeler.visible .quote:nth-child(1) {
  animation-delay: 0.18s;
}

#hikayeler.visible .quote:nth-child(2) {
  animation-delay: 0.28s;
}

#hikayeler.visible .quote:nth-child(3) {
  animation-delay: 0.38s;
}

#hikayeler.visible .quote:nth-child(4) {
  animation-delay: 0.48s;
}

@keyframes storyRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.9));
  border: 1px solid rgba(219, 230, 241, 0.95);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 12px 28px rgba(15, 42, 71, 0.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(3, 121, 221, 0.08);
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-list details[open] summary {
  background: rgba(255, 255, 255, 0.58);
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: rgba(255, 122, 0, 0.12);
}

.faq-list p {
  color: var(--muted);
  padding: 0 20px;
  line-height: 1.68;
}

.faq-list p:first-of-type {
  padding-top: 2px;
}

.faq-list p:last-of-type {
  padding-bottom: 20px;
}

.faq-list p + p {
  margin-top: 10px;
}

.post {
  display: grid;
  gap: 10px;
}

.post-featured {
  grid-column: 1 / -1;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 190, 11, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(3, 121, 221, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96));
}

.post-featured h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.post-feature-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  color: #c15b00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-pin-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(3, 121, 221, 0.1);
  color: #1d4b8f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.post-tag {
  color: #ff7a00 !important;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.post-date {
  color: #4f6782;
  font-size: 0.82rem;
  font-weight: 700;
}

.post a {
  font-weight: 800;
  text-decoration: none;
  color: var(--secondary);
}

@media (max-width: 860px) {
  .post-featured {
    grid-column: auto;
    padding: 24px;
  }
}

.cta {
  background: linear-gradient(140deg, #0f2a47, #0f4a84);
  color: #eff7ff;
}

.cta .eyebrow {
  color: #9acfff;
}

.contact-meta {
  margin-top: 14px;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.btn-whatsapp {
  width: fit-content;
  color: #0f2a47;
  background: linear-gradient(120deg, #ffffff, #dff7ea);
  box-shadow: 0 10px 24px rgba(10, 84, 46, 0.18);
}

.contact-inline-note {
  min-height: 1.1em;
  color: rgba(239, 247, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-points article {
  padding: 14px 16px;
  border: 1px solid rgba(154, 207, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-points strong {
  display: block;
  margin-bottom: 5px;
}

.contact-points span {
  color: rgba(239, 247, 255, 0.82);
}

.contact-brief {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(154, 207, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-brief strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.contact-brief-list {
  display: grid;
  gap: 10px;
}

.contact-brief-list span {
  position: relative;
  display: block;
  padding-left: 18px;
  color: rgba(239, 247, 255, 0.84);
  line-height: 1.6;
}

.contact-brief-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9acfff, #ffbe0b);
}

.contact-link {
  color: #9acfff;
  font-weight: 800;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.lead-form {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96));
  color: var(--text);
  border: 1px solid rgba(219, 230, 241, 0.92);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 12px;
  box-shadow: 0 24px 48px rgba(5, 20, 38, 0.2);
  overflow: hidden;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
}

.lead-form-head {
  display: grid;
  gap: 6px;
  padding-bottom: 2px;
}

.lead-form-kicker {
  color: var(--secondary) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
}

.lead-form-head h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.response-note {
  padding: 14px 15px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(3, 121, 221, 0.07), rgba(3, 121, 221, 0.03));
  border: 1px solid rgba(3, 121, 221, 0.14);
}

.response-note strong {
  display: block;
  margin-bottom: 4px;
}

.response-note p {
  color: var(--muted);
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(219, 230, 241, 0.98);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7d92ab;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(3, 121, 221, 0.38);
  box-shadow: 0 0 0 4px rgba(3, 121, 221, 0.1);
  background: #fff;
}

.lead-form .btn-primary {
  width: 100%;
  margin-top: 6px;
  min-height: 48px;
  font-size: 0.98rem;
}

.lead-form small {
  color: var(--muted);
}

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

.form-status {
  min-height: 1.2em;
  font-weight: 700;
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #0c7a43;
}

.form-status.is-error {
  color: #b42318;
}

.site-footer {
  padding: 16px 0;
  background: #09213a;
  color: #f0f6fd;
}

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

.footer-inner a {
  color: #9acfff;
  text-decoration: none;
  font-weight: 700;
}

.footer-brandline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-mail {
  color: #9acfff;
  text-decoration: none;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-kvkk-btn {
  border: 0;
  background: transparent;
  color: #9acfff;
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  opacity: 0.92;
}

.footer-links .footer-kvkk-btn + .footer-kvkk-btn {
  position: relative;
  padding-left: 16px;
}

.footer-links .footer-kvkk-btn + .footer-kvkk-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(154, 207, 255, 0.28);
  transform: translateY(-50%);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 23, 40, 0.5);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 50;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal-card {
  width: min(820px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(219, 230, 241, 0.9);
  box-shadow: 0 24px 80px rgba(9, 23, 40, 0.24);
  padding: 24px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.modal-kicker {
  margin-bottom: 6px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
}

.modal-head h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.modal-close {
  border: 1px solid var(--line);
  background: #f8fbff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.modal-body {
  display: grid;
  gap: 14px;
}

.modal-body h3 {
  font-size: 1.05rem;
  margin-top: 10px;
}

.modal-body p {
  color: var(--muted);
}

.modal-body a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
}

.modal-note {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(3, 121, 221, 0.06);
  border: 1px solid rgba(3, 121, 221, 0.12);
}

.article-page .site-header {
  position: sticky;
}

.article-main {
  padding: 26px 0 54px;
}

.article-hero {
  padding: 28px 0 20px;
}

.article-tag {
  margin-bottom: 12px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  font-weight: 800;
}

.article-hero h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.article-lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.article-preview-badge,
.article-date {
  width: fit-content;
}

.article-meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.article-preview-badge {
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.1);
  color: #b85d00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-date {
  margin-top: 0;
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-author {
  margin: 0;
  color: #4f6782;
  font-size: 0.92rem;
  font-weight: 700;
}

.article-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.5fr);
  gap: 24px;
  align-items: start;
}

.article-body {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(219, 230, 241, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(15, 42, 71, 0.08);
}

.article-body h2 {
  font-size: 1.22rem;
  margin: 24px 0 10px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  color: var(--muted);
}

.article-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.article-note {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.92));
  border: 1px solid rgba(219, 230, 241, 0.9);
  box-shadow: 0 14px 30px rgba(15, 42, 71, 0.07);
}

.article-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.article-note p {
  color: var(--muted);
}

.article-back {
  width: fit-content;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    width: min(310px, 92vw);
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav .nav-view-trigger {
    width: 100%;
    text-align: left;
  }

  .site-nav .nav-home-trigger {
    width: 100%;
    height: auto;
    padding: 10px 14px;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-nav .nav-home-trigger .sr-only {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

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

  .menu-btn {
    display: inline-flex;
  }

  .hero,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .article-content {
    grid-template-columns: 1fr;
  }

  .article-side {
    position: static;
  }

  .hero-panel,
  .methodology-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-intro {
    max-width: none;
    padding-left: 20px;
  }

  .hero-intro h2 {
    max-width: none;
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .home-ribbon,
  .methodology-grid,
  .story-metrics,
  .story-grid,
  .cards-3,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 44px 0;
  }

  .home-ribbon,
  .methodology-grid,
  .story-grid,
  .cards-3,
  .story-metrics,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-intro {
    padding-left: 16px;
  }

  .hero-intro::before {
    width: 4px;
  }

  .view-kicker {
    font-size: 0.74rem;
  }

  .article-main {
    padding: 18px 0 44px;
  }

  .article-hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .hero-intro p:last-child {
    margin-top: 10px;
    font-size: 0.98rem;
  }

  .footer-inner {
    justify-items: start;
  }
}
