/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
}
body {
  font-family: 'Figtree', 'Inter', sans-serif;
  background: #f4f6f9;
  color: #1c212b;
  line-height: 1.5;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === SCROLL REVEAL (Nexsas-style) === */
[data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}
[data-reveal="left"] { transform: translate3d(-36px, 0, 0); }
[data-reveal="right"] { transform: translate3d(36px, 0, 0); }
[data-reveal="up"] { transform: translate3d(0, -36px, 0); }
[data-reveal="left"].is-revealed,
[data-reveal="right"].is-revealed,
[data-reveal="up"].is-revealed,
[data-reveal="down"].is-revealed {
  transform: translate3d(0, 0, 0);
}
@media (max-width: 768px) {
  /* Yatay reveal mobil overflow yaratmasın */
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translate3d(0, 36px, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.container { width: min(1200px, 92%); margin: 0 auto; }
.text-orange { color: #ff6b1a; }
.text-muted-light { color: #a8bcd3; }
.underline { text-decoration: underline; text-underline-offset: 4px; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; border: none; border-radius: 100px; padding: 14px 32px; font-family: inherit; font-weight: 600; font-size: 15px; cursor: pointer; transition: .2s; text-align: center; justify-content: center; }
.btn-primary { background: #ff6b1a; color: #fff; }
.btn-primary:hover { background: #e45a0f; transform: translateY(-1px); }
.btn-light { background: #f2f4f7; color: #1c212b; border: 1px solid #ddd; }
.btn-light:hover {
  background: #e6eaef;
  border-color: #c8ced6;
  color: #1c212b;
  transform: translateY(-1px);
}
.btn-outline-dark { background: #eaeff5; color: #1c212b; border: 1px solid #e0e3eb; }
.btn-outline-dark:hover {
  background: #ff6b1a;
  border-color: #ff6b1a;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.55);
  color: #fff;
  transform: translateY(-1px);
}
.btn-full { width: 100%; }
.btn-icon { width: 26px; height: 26px; }

/* === TOPBAR === */
.topbar { background: #000; color: #fff; padding: 8px 0; font-size: 14px; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 10px; max-width: 1200px; margin: 0 auto; }
.topbar-icon { width: 24px; height: 24px; flex-shrink: 0; }
.topbar-text { color: #fff; }
.topbar-text a { color: #fa5d0e; font-weight: 700; }

/* === HEADER === */
.header { background: #fff; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 100; padding: 16px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 52px; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; letter-spacing: -0.2px; line-height: 1; }
.nav a { color: #1c212b; transition: color .2s; cursor: pointer; }
.nav a:hover,
.nav a.is-active { color: #ff6b1a; }
.header-btn { font-size: 14px; padding: 12px 24px; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; line-height: 1; }
.nav-home { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex-shrink: 0; }
.nav-home-icon { width: 24px; height: 24px; display: block; }
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: url("https://www.figma.com/api/mcp/asset/6e0efdf4-d5f9-42f8-80cb-89548f00b9b8") center/cover; margin-left: 2px; }
.nav-dropdown-icon svg { opacity: .6; }
.nav-dropdown:hover .nav-dropdown-icon svg { transform: rotate(180deg); }
.dropdown-mega { position: absolute; top: calc(100% + 36px); left: 50%; transform: translateX(-40%) translateY(8px); background: #fff; border-radius: 10px; box-shadow: 58px 40px 59.4px rgba(0,0,0,.25); padding: 24px; display: grid; grid-template-columns: 280px 280px 280px; gap: 16px; opacity: 0; visibility: hidden; transition: .25s; z-index: 200; }
.nav-dropdown:hover .dropdown-mega { opacity: 1; visibility: visible; transform: translateX(-40%) translateY(0); }
.dropdown-col { display: flex; flex-direction: column; gap: 10px; }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid #f4f4f4; border-radius: 10px; transition: .15s; cursor: pointer; }
.dropdown-item:hover { border-color: #fa5d0e; }
.dropdown-item:hover .dropdown-item-text { color: #fa5d0e; }
.dropdown-item:hover .dropdown-item-arrow circle { fill: #fa5d0e; }
.dropdown-item-icon { width: 53px; height: 52px; background: #f4f4f4; border: 2px solid #f4f4f4; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown-item-text { font-size: 15px; font-weight: 700; color: #010101; letter-spacing: -0.3px; flex: 1; }
.dropdown-item-arrow { flex-shrink: 0; width: 27px; height: 27px; }
.dropdown-item-arrow img { width: 27px; height: 27px; }
.dropdown-promo { position: relative; display: block; width: 257px; height: 329px; border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; background: linear-gradient(155.41deg, #FA5D0E -0.69%, #030202 62.89%); }
.dropdown-promo-overlay { position: absolute; width: 258px; height: 329px; top: 0; left: 0; background: url('assets/img/dropdown-promo-bg.png'); background-size: cover; background-blend-mode: plus-lighter; border-radius: 10px; }
.dropdown-promo-content { position: absolute; inset: 0; transform: translateY(-10%); padding: 24px; display: flex; flex-direction: column; justify-content: center; gap: 10px; height: 100%; }
.dropdown-promo-icon {
  width: 52px;
  height: 52px;
  background: rgba(217, 217, 217, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(76, 34, 12, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.12);
}
.dropdown-promo-icon img { width: 24px; height: 24px; }
.dropdown-promo h4 { font-family: 'Figtree', sans-serif; font-size: 24px; font-weight: 700; color: #fff; line-height: 23px; letter-spacing: -0.02em; }
.dropdown-promo h4 span { font-weight: 300; }
.dropdown-promo-arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  left: 28px;
  bottom: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05) 45%, rgba(0, 0, 0, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    inset 0 -2px 3px rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  overflow: hidden;
}
.dropdown-promo-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.12) 100%);
  pointer-events: none;
}
.dropdown-promo-arrow img { width: 33px; height: 33px; display: block; opacity: 0.5; filter: brightness(1) saturate(0) invert(12%) !important; position: relative; z-index: 1; }
.header-divider { width: 1px; height: 35px; background: #bdbdbd; flex-shrink: 0; }
.header-social { display: flex; gap: 12px; align-items: center; }
.header-social a { display: flex; align-items: center; justify-content: center; width: 25px; height: 25px; cursor: pointer; }
.header-social img { width: 25px; height: 25px; }
.mobile-nav-toggle { display: none; }
.header-social-mobile,
.mobile-menu-btn,
.mobile-menu-panel { display: none; }
.header a,
.header button,
.header summary,
.header label,
.header [role="button"],
.header .dropdown-item,
.header .dropdown-item-icon,
.header .dropdown-item-arrow,
.header .mobile-service-card {
  cursor: pointer !important;
}
.header .nav,
.header .nav *,
.header .mobile-menu-panel,
.header .mobile-menu-panel * {
  cursor: pointer !important;
}
.header,
.header * {
  cursor: pointer !important;
}
.header a,
.header a *,
.header button,
.header button *,
.header label,
.header label *,
.header summary,
.header summary *,
.header [class*="menu"],
.header [class*="menu"] *,
.header [class*="nav"],
.header [class*="nav"] *,
.header .dropdown-item,
.header .dropdown-item *,
.header .mobile-service-card,
.header .mobile-service-card * {
  cursor: pointer !important;
}
.mobile-services-summary {
  list-style: none;
  cursor: pointer;
}
.mobile-services-summary::-webkit-details-marker { display: none; }
.mobile-services[open] .mobile-menu-link-arrow img { transform: rotate(180deg); }
.mobile-services-grid {
  margin-top: 10px;
  margin-left: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mobile-service-card {
  border: 1px solid #eceff5;
  border-radius: 12px;
  background: #f7f9fc;
  min-height: 58px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-service-card img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mobile-service-card span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: #101317;
}

/* === HERO === */
.hero {
  max-width: 1320px;
  width: 100%;
  margin: 32px auto 0;
  padding: 0;
  box-sizing: border-box;
}
.hero-panel { position: relative; border-radius: 30px; overflow: visible; min-height: 560px; }
.hero-image { position: absolute; inset: 0; overflow: hidden; width: 100%; height: 100%; border-radius: 30px; }
.hero-slider { width: 100%; height: 100%; min-height: 560px; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 5s ease-out;
  background-color: #000;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-nav {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eaeff5;
  border: 1px solid #a8bcd3;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-nav-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.hero-nav-btn:hover {
  background: #dde5ef;
  border-color: #8fa3bc;
  transform: translateY(-1px);
}

.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot {
  width: 24px;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: width .25s ease, background-color .25s ease, opacity .25s ease;
}
.hero-dot.is-active {
  width: 40px;
  background: #fa5d0e;
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 64px 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  min-height: 560px;
  justify-content: center;
  border-radius: 30px;
}
.hero-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.hero-overlay.is-ready .hero-anim {
  opacity: 1;
  transform: translateY(0);
}
.hero-overlay.is-ready .hero-label { transition-delay: .05s; }
.hero-overlay.is-ready .hero-title { transition-delay: .14s; }
.hero-overlay.is-ready .hero-btn { transition-delay: .24s, .24s, 0s, 0s; }
.hero-overlay.is-ready .hero-info-boxes { transition-delay: .34s; }
.hero-overlay.is-leaving .hero-anim {
  opacity: 0;
  transform: translateY(-14px);
  transition-duration: .35s;
}
.hero-overlay.is-leaving .hero-label { transition-delay: 0s; }
.hero-overlay.is-leaving .hero-title { transition-delay: .04s; }
.hero-overlay.is-leaving .hero-btn { transition-delay: .08s, .08s, 0s, 0s; }
.hero-overlay.is-leaving .hero-info-boxes { transition-delay: .12s; }
.hero-label {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.46em;
  color: #fff;
  text-align: left;
}
.hero-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.1vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 672px;
}
.hero-title span { color: #fa5d0e; }

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 155px;
  height: 65px;
  padding: 0 10px 0 28px;
  background: #000;
  border: 1px solid #393939;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition:
    opacity .55s ease,
    transform .55s ease,
    background-color .25s ease,
    border-color .25s ease;
}
.hero-btn:hover {
  background: #fa5d0e;
  border-color: #fa5d0e;
}
.hero-btn:hover .hero-btn-circle {
  background: #fff;
  border-color: #fff;
  transform: translateX(3px);
}
.hero-btn:hover .hero-btn-circle img {
  transform: translateX(1px) translateY(-1px);
}
.hero-btn-text {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -1px;
  color: #fff;
}
.hero-btn-circle {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #f4f6f9;
  border: 1px solid #393939;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .28s ease, background-color .25s ease, border-color .25s ease;
}
.hero-btn-circle img {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform .28s ease;
}

.hero-info-boxes {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hero-info-box {
  width: 240px;
  height: 98px;
  border: 1px solid #393939;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  transition:
    border-color .25s ease,
    background-color .25s ease,
    transform .25s ease;
}
.hero-info-box:hover {
  border-color: #fa5d0e;
  background: rgba(250, 93, 14, 0.18);
  transform: translateY(-3px);
}
.hero-info-box:hover .hero-info-icon {
  background: #fa5d0e;
}
.hero-info-box:hover .hero-info-label,
.hero-info-box:hover .hero-info-value {
  color: #fa5d0e;
}
.hero-info-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color .25s ease;
}
.hero-info-icon img,
.hero-info-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.hero-info-label,
.hero-info-value {
  transition: color .25s ease;
}
.hero-info-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hero-info-label {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  color: #fa5d0e;
}
.hero-info-value {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}
.hero-info-desc {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
}

/* === STATS === */
.stats-section {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 0;
  box-sizing: border-box;
}
.stats-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 48px;
  align-items: center;
}
.stat-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 22px;
  align-items: start;
  min-width: 280px;
}
.stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fa5d0e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1;
}
.stat-icon img {
  width: 28px;
  height: 28px;
  display: block;
}
.stat-copy {
  grid-column: 2;
  grid-row: 1;
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.stat-value {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000;
  margin-top: 4px;
}
.stat-label {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  color: #fa5d0e;
  letter-spacing: -0.02em;
  margin-top: 8px;
  line-height: 1.2;
}
.stat-divider {
  width: 1px;
  align-self: stretch;
  min-height: 220px;
  background: #ccd2e3;
}
.stat-text {
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: -1px;
  max-width: 1090px;
}
.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
}
.stat-text p {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(18px, 2.2vw, 36px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.8px;
  color: #a8bcd3;
}
.stat-text .stat-word {
  color: #a8bcd3;
  transition: color .2s ease;
}
.stat-text .stat-word.is-active {
  color: #fa5d0e;
}
.stat-cta {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  height: 65px;
  padding: 0 10px 0 24px;
  gap: 12px;
  box-sizing: border-box;
  justify-self: start;
}
.stat-cta .hero-btn-text {
  white-space: nowrap;
  font-size: 15px;
}
.stat-cta .hero-btn-circle {
  flex-shrink: 0;
}

/* === FEATURES / DISCOVER === */
.features-section {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 0;
  box-sizing: border-box;
}
.discover-panel {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 48px 48px 56px;
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.35fr);
  gap: 40px;
  align-items: center;
  overflow: visible;
}
.discover-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 0;
}
.discover-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.discover-icon img {
  width: 35px;
  height: 35px;
  display: block;
}
.feature-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.75rem, 3vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.8px;
}
.feature-title .text-orange { color: #fa5d0e; }
.feature-desc {
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
  color: #1c212b;
}
.feature-desc .text-orange { color: #fa5d0e; }
.discover-cta {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  height: 56px;
  padding: 0 8px 0 20px;
  margin-top: 4px;
}
.discover-cta .hero-btn-text {
  white-space: nowrap;
  font-size: 14px;
}

.discover-slider {
  position: relative;
  background: #eaeff5;
  border: 1px solid #a8bcd3;
  border-radius: 30px;
  min-height: 520px;
  overflow: visible;
  align-self: stretch;
}
.discover-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 40px 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}
.discover-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.discover-slide-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  min-width: 0;
}
.discover-slide-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: 100%;
}
.feature-card-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  color: #1c212b;
}
.feature-card-title strong { font-weight: 800; }
.feature-card-desc {
  font-size: 15px;
  color: #1c212b;
  line-height: 1.5;
  margin-bottom: 10px;
}
.feature-card-list {
  margin-bottom: 22px;
  padding-left: 20px;
}
.feature-card-list li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.55;
  color: #1c212b;
}
.feature-card-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}
.feature-card-actions .btn {
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}
.discover-slide-bg {
  position: absolute;
  width: 110%;
  max-width: 460px;
  height: auto;
  opacity: 0.12;
  filter: invert(1);
  pointer-events: none;
  user-select: none;
}
.discover-slide-img {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  height: auto;
  object-fit: contain;
  display: block;
}
.discover-nav {
  position: absolute;
  left: 28px;
  bottom: 0;
  transform: translateY(50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  height: max-content;
  margin: 0;
}
.discover-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eaeff5;
  border: 1px solid #a8bcd3;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.discover-nav-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.discover-nav-btn:hover {
  background: #dde5ef;
  border-color: #8fa3bc;
  transform: translateY(-1px);
}
.discover-dots {
  grid-column: 2;
  grid-row: 1;
  position: absolute;
  right: 50px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  height: max-content;
  margin: 0;
  pointer-events: auto;
}
.discover-dot {
  width: 24px;
  height: 7px;
  border-radius: 100px;
  background: #c5d2e4;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .25s ease, background-color .25s ease;
}
.discover-dot.is-active {
  width: 51px;
  background: #000;
}
.dot { width: 24px; height: 7px; border-radius: 100px; background: #eaeff5; }
.dot.active { width: 51px; background: #000; }

/* === PRICING === */
.pricing-section {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 0;
  box-sizing: border-box;
}
.section-title { text-align: center; font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 3.5vw, 64px); font-weight: 600; line-height: 1.1; letter-spacing: -0.8px; }
.section-subtitle { text-align: center; font-size: 20px; color: #1c212b; margin-top: 12px; max-width: 700px; margin-left: auto; margin-right: auto; letter-spacing: -0.6px; }
.pricing-section .section-title {
  font-size: clamp(1.75rem, 3vw, 48px);
}
.pricing-section .section-subtitle {
  font-size: 16px;
  max-width: 640px;
  margin-bottom: 0;
}
.pricing-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 32px;
}
.pricing-cta {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  height: 56px;
  padding: 0 8px 0 20px;
}
.pricing-cta .hero-btn-text {
  white-space: nowrap;
  font-size: 14px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
  padding-top: 16px;
  align-items: center;
}
.price-card { background: #f4f6f9; border: 1px solid #a8bcd3; border-radius: 20px; padding: 32px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.price-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.price-sub { font-size: 15px; margin-bottom: 24px; }
.price-amount { font-family: 'Hanken Grotesk', sans-serif; font-size: clamp(32px, 4vw, 40px); font-weight: 700; letter-spacing: -0.96px; margin-bottom: 24px; }
.price-amount span { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; }
.price-card .btn { width: 100%; padding: 16px; font-size: 16px; margin-bottom: 24px; }
.price-card .btn-primary:hover {
  background: #e45a0f;
  transform: translateY(-1px);
}
.price-card .btn-outline-dark:hover {
  background: #ff6b1a;
  border-color: #ff6b1a;
  color: #fff;
  transform: translateY(-1px);
}
.price-card--popular .btn-primary:hover {
  background: #fff;
  color: #ff6b1a;
}
.price-list { width: 100%; text-align: left; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: none; }
.price-list li { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.price-list li::before { content: ''; width: 12px; height: 9px; background: url("data:image/svg+xml,%3Csvg width='12' height='9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L4.5 8 11 1' stroke='%23ff6b1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center; flex-shrink: 0; }

.price-card--popular { background: linear-gradient(111deg, #170801 10%, #000 114%); color: #fff; position: relative; margin-top: 0; padding-top: 52px; }
.price-card--popular .price-sub { color: #c6c6c9; }
.price-card--popular .price-list li { color: #e0e3eb; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #ff6b1a; color: #fff; font-size: 13px; font-weight: 700; padding: 8px 20px; border-radius: 100px; white-space: nowrap; }

/* === CTA === */
.cta-section {
  padding: 32px 0;
}
.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  color: #fff;
  isolation: isolate;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background: linear-gradient(114.79deg, #170801 -9.96%, #000000 114.29%);
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.75;
}
.cta-banner-overlay {
  display: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  grid-template-areas:
    "content status"
    "btn status";
  gap: 20px 40px;
  align-items: start;
  padding: 56px 168px;
  min-height: 540px;
}
.cta-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 592px;
}
.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fa5d0e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-icon img {
  width: 34px;
  height: 34px;
  display: block;
}
.cta-content h3 {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.cta-content h3 .text-orange { color: #fa5d0e; }
.cta-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
  max-width: 520px;
}
.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  width: 100%;
  max-width: 592px;
  margin-top: 4px;
}
.cta-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 40px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.cta-feature-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 26, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}
.cta-feature-icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 21px;
  max-height: 20px;
}
.cta-btn {
  grid-area: btn;
  width: max-content;
  max-width: 100%;
  height: 55px;
  padding: 0 6px 0 22px;
  margin-top: 0;
  align-self: start;
  background: #fff;
  border-color: #fff;
  color: #000;
}
.cta-btn .hero-btn-text {
  white-space: nowrap;
  font-size: 15px;
  color: #000;
}
.cta-btn .hero-btn-circle {
  background: #000;
  border-color: #000;
}
.cta-btn .hero-btn-circle img {
  filter: invert(1);
}
.cta-btn:hover {
  background: #fa5d0e;
  border-color: #fa5d0e;
}
.cta-btn:hover .hero-btn-text {
  color: #fff;
}
.cta-btn:hover .hero-btn-circle {
  background: #fff;
  border-color: #fff;
}
.cta-btn:hover .hero-btn-circle img {
  filter: none;
}
.cta-status {
  grid-area: status;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-self: end;
  align-self: center;
  width: min(100%, 520px);
}
.cta-status-card {
  padding: 22px 24px 20px;
  border-radius: 18px;
  background: rgba(12, 16, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cta-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 600;
}
.cta-status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #22c55e;
  white-space: nowrap;
}
.cta-status-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  display: block;
}
.cta-status-bar {
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(90deg, #fa5d0e 0%, #ff9a4d 100%);
  margin-bottom: 16px;
}
.cta-status-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cta-status-metric {
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.cta-status-metric small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #fa5d0e;
  font-weight: 600;
  margin-bottom: 4px;
}
.cta-status-metric strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

/* === CONTACT === */
.contact-section {
  border: none;
  border-radius: 0;
  max-width: 1320px;
  width: 100%;
  margin: 32px auto;
  box-sizing: border-box;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; }
.contact-info { padding: 0 5px; display: flex; flex-direction: column; justify-content: space-between; }
.contact-icon-circle { width: 80px; height: 80px; background: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.contact-icon-circle img { width: 28px; height: 28px; display: block; }
.contact-info h2 { font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 600; line-height: 1.2; letter-spacing: -1px; }
.contact-desc { font-size: 16px; color: rgba(28,33,43,.8); margin-top: 16px; line-height: 1.5; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: center; }
.contact-item-icon { width: 48px; height: 48px; border: 1px solid #eaeaea; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon img { width: 20px; height: 20px; }
.contact-item small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; opacity: .7; }
.contact-item strong { display: block; font-size: 16px; font-weight: 700; }
.contact-form { padding: 0 5px; }
.contact-form h3 { font-size: 32px; letter-spacing: -1px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 16px; font-weight: 500; letter-spacing: .6px; margin-bottom: 10px; }
.input { width: 100%; background: #eaeff5; border: 1px solid #c8dbf1; border-radius: 10px; padding: 13px 16px; font: inherit; font-size: 16px; outline: none; transition: border-color .2s; }
.input:focus { border-color: #ff6b1a; }
.textarea { min-height: 122px; resize: vertical; }

/* === BLOG === */
.blog-section {
  position: relative;
  padding: 32px;
  background: #f9f9f9;
  border: 2px solid #a8bcd3;
  border-radius: 30px;
  margin: 32px auto;
  max-width: 1320px;
}
.blog-subtitle {
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 0;
}
.blog-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 8px;
}
.blog-cta {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  height: 56px;
  padding: 0 8px 0 20px;
}
.blog-cta .hero-btn-text {
  white-space: nowrap;
  font-size: 14px;
}
.blog-slider {
  overflow: hidden;
  margin-top: 32px;
}
.blog-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform .4s ease;
  will-change: transform;
}
.blog-card {
  background: #fff;
  border: 1px solid #a8bcd3;
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  height: auto;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}
.blog-image { height: 238px; overflow: hidden; flex-shrink: 0; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
  transition: background-color .25s ease;
}
.blog-body-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: #ff6b1a; }
.blog-body h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  transition: color .25s ease;
}
.blog-body h4 a {
  color: inherit;
  transition: color .25s ease;
}
.blog-body:hover h4 a {
  color: #fa5d0e;
}
.blog-body p { font-size: 16px; line-height: 1.25; color: #1c212b; }
.blog-link {
  font-size: 14px;
  font-weight: 500;
  color: #ff6b1a;
  transition: transform .25s ease;
}
.blog-body:hover {
  background: rgba(250, 93, 14, 0.06);
}
.blog-body:hover h4 {
  color: #fa5d0e;
}
.blog-body:hover .blog-link {
  transform: translateX(4px);
}
.blog-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.blog-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eaeff5;
  border: 1px solid #a8bcd3;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.blog-nav-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.blog-nav-btn:hover:not(:disabled) {
  background: #dde5ef;
  border-color: #8fa3bc;
  transform: translateY(-1px);
}
.blog-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* === FOOTER === */
.footer { background: linear-gradient(141deg, #170801 10%, #000 114%); color: #c6c6c9; padding: 64px 0 24px; border: 2px solid #1c1c1c; }
.footer-brand-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(28,28,28,.4), rgba(250,93,14,.4) 41%, rgba(250,93,14,.4) 62%, rgba(28,28,28,.4)) 1;
}
.footer-logo { height: 52px; width: auto; display: block; }
.footer-desc { font-size: 16px; line-height: 1.4; max-width: 520px; color: #fff; margin: 0; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #333;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.footer-social img {
  width: 20px;
  height: 20px;
  display: block;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 40px;
  padding: 40px 0;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: #eff1f4; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: #c6c6c9;
  line-height: 1.6;
  transition: color .2s ease;
}
.footer-col a:hover { color: #ff6b1a; }
.footer-contact-col { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.footer-contact-card img { flex-shrink: 0; width: 28px; height: 28px; margin-top: 0; filter: brightness(0) invert(1); opacity: .9; }
.footer-contact-card h4,
.footer-contact-item h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.footer-contact-card p,
.footer-contact-item p { font-size: 14px; line-height: 1.4; color: #c6c6c9; margin: 0; }
.footer-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  box-sizing: border-box;
}
.footer-contact-icon img {
  width: 20px;
  height: 20px;
  display: block;
}
.footer-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 0 24px;
}
.footer-divider-line {
  flex: 1;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, rgba(28, 28, 28, 0.4) 0%, rgba(250, 93, 14, 0.4) 100%);
}
.footer-divider-line:last-of-type {
  background: linear-gradient(90deg, rgba(250, 93, 14, 0.4) 0%, rgba(28, 28, 28, 0.4) 100%);
}
.footer-mark {
  width: 40px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 0;
  border-top: none;
  font-size: 14px;
}
.footer-links { display: flex; gap: 8px 24px; flex-wrap: wrap; }
.footer-links a {
  color: #c6c6c9;
  position: relative;
  padding-left: 14px;
}
.footer-links a::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c6c6c9;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-panel, .pricing-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-brand-row,
  .footer-main { grid-template-columns: 1fr; }
  .blog-card { flex: 0 0 calc((100% - 24px) / 2); }
  .cta-banner-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "status"
      "btn";
    gap: 32px;
  }
  .cta-status { justify-self: stretch; width: 100%; max-width: 520px; }
  .features-section {
    position: relative;
    overflow: visible;
    margin-bottom: 40px;
  }
  .discover-panel {
    grid-template-columns: 1fr;
    padding: 28px 0 0;
    gap: 28px;
    position: static;
    overflow: visible;
  }
  .discover-left {
    padding: 0 20px;
  }
  .discover-nav {
    display: none;
  }
  .discover-dots {
    position: absolute;
    grid-column: unset;
    grid-row: unset;
    left: 50%;
    right: auto;
    top: auto;
    bottom: -28px;
    transform: translateX(-50%);
    z-index: 5;
  }
  .discover-icon {
    width: 56px;
    height: 56px;
  }
  .discover-icon img {
    width: 26px;
    height: 26px;
  }
  .feature-desc { font-size: 15px; }
  .discover-slider {
    min-height: 680px;
    overflow: hidden;
    width: 100%;
    border: none;
    border-radius: 0;
  }
  .discover-slide {
    grid-template-columns: 1fr;
    padding: 32px 20px 40px;
    gap: 20px;
    align-items: center;
  }
  .discover-slide-visual {
    order: 0;
    min-height: 300px;
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .discover-slide-copy {
    order: -1;
  }
  .discover-slide-bg {
    width: 85%;
    max-width: 260px;
  }
  .discover-slide-img {
    width: min(100%, 230px);
  }
  .feature-card-desc,
  .feature-card-list li { font-size: 14px; }
  .feature-card-actions {
    flex-wrap: nowrap;
  }
  .feature-card-actions .btn {
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }
  .stats-row {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .stat-block {
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: start;
    min-width: 0;
    width: 100%;
  }
  .stat-icon,
  .stat-divider {
    display: none;
  }
  .stat-copy {
    grid-column: 1;
    margin-top: 0;
    width: auto;
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
    justify-self: start;
  }
  .stat-eyebrow {
    font-size: 20px;
    text-align: left;
  }
  .stat-value {
    font-size: clamp(48px, 12vw, 64px);
    text-align: left;
  }
  .stat-label {
    font-size: clamp(24px, 6vw, 32px);
    text-align: left;
  }
  .stat-text p { font-size: clamp(16px, 4.5vw, 22px); line-height: 1.45; }
  .stat-cta {
    height: 56px;
    padding: 0 8px 0 20px;
  }
  .stat-cta .hero-btn-text {
    font-size: 14px;
  }
  .stat-cta .hero-btn-circle {
    width: 40px;
    height: 40px;
  }
  .price-card--popular { margin-top: 0; }
  .price-card {
    border-radius: 20px;
  }
  .price-card .btn {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-links {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    order: 1;
    gap: 12px;
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: flex-start;
  }
  .footer-bottom > span {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .footer-contact-row {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 12px;
  }
  .footer {
    text-align: center;
  }
  .footer-brand-row {
    justify-items: center;
    text-align: center;
    border-bottom: none;
    border-image: none;
    padding-bottom: 24px;
  }
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    display: none;
  }
  .footer-main {
    justify-items: center;
  }
  .footer-col {
    display: none;
  }
  .footer-contact-col {
    width: 100%;
    align-items: center;
  }
  .footer-contact-card,
  .footer-contact-item {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    max-width: none;
  }
  .footer-divider {
    display: none;
  }
}
@media (max-width: 1180px) {
  .topbar { display: none; }
  .header { padding: 0; border-bottom: 1px solid #e9e9e9; }
  .header-inner {
    min-height: 64px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }
  .logo-img { height: 32px; }
  .nav,
  .header-divider,
  .header-social,
  .header-btn { display: none; }

  .header-social-mobile {
    display: flex;
    justify-self: center;
    gap: 16px;
    align-items: center;
  }
.header-social-mobile a {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .header-social-mobile img { width: 22px; height: 22px; }

  .mobile-menu-btn {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    cursor: pointer;
    color: #1c212b;
  }
  .mobile-menu-icon-open { width: 24px; height: 24px; }
  .mobile-menu-icon-close {
    display: none;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .mobile-menu-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: #fff;
    z-index: 120;
    min-height: calc(100vh - 64px);
    padding: 24px 0 40px;
  }
  .mobile-menu-content {
    width: min(393px, 92%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-home-link {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
  }
  .mobile-home-link img { width: 24px; height: 24px; }
  .mobile-menu-link {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #101317;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .mobile-menu-link-arrow {
    display: inline-flex;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 1px solid #e3e5ed;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-link-arrow img { width: 16px; height: 16px; }
  .mobile-panel-btn {
    margin-top: 18px;
    width: fit-content;
    min-width: 186px;
    height: 45px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
  }
  .mobile-panel-btn .btn-icon {
    width: 28px;
    height: 28px;
  }

  .mobile-nav-toggle:checked ~ .mobile-menu-panel { display: block; }
  .mobile-nav-toggle:checked ~ .header-inner .mobile-menu-icon-open { display: none; }
  .mobile-nav-toggle:checked ~ .header-inner .mobile-menu-icon-close { display: inline-block; }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .hero {
    margin: 0;
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .hero-panel,
  .discover-panel,
  .cta-banner,
  .contact-section,
  .blog-card {
    border-radius: 0;
  }
  .hero-image,
  .hero-overlay {
    border-radius: 0;
  }
  .hero-nav {
    display: none;
  }
  .hero-panel {
    min-height: 520px;
  }
  .stats-section,
  .features-section,
  .pricing-section,
  .cta-section,
  .blog-section {
    padding-left: 0;
    padding-right: 0;
  }
  .stats-section {
    margin: 0;
    max-width: none;
    width: auto;
    padding: 32px 16px;
    background: #fff;
  }
  .features-section {
    margin: 0 0 36px;
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .discover-panel {
    padding: 24px 0 0;
    border: none;
    border-radius: 0;
    position: static;
  }
  .discover-left {
    padding: 0 16px;
  }
  .discover-dots {
    left: 50%;
    right: auto;
    bottom: -24px;
    transform: translateX(-50%);
  }
  .pricing-section {
    margin: 0;
    max-width: none;
    width: auto;
    padding: 40px 16px;
  }
  .cta-section { padding: 0; }
  .cta-banner {
    border-radius: 0;
    min-height: 0;
  }
  .cta-banner-bg {
    object-position: 70% center;
  }
  .cta-banner-inner {
    padding: 40px 16px;
    min-height: 0;
    gap: 28px;
  }
  .cta-icon {
    display: none;
  }
  .cta-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cta-features li {
    font-size: 14px;
  }
  .cta-status-card {
    padding: 40px 50px;
  }
  .cta-status-head {
    flex-wrap: nowrap;
    align-items: center;
    font-size: 14px;
    line-height: 1;
  }
  .cta-status-head > span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }
  .cta-status-live {
    font-size: 11px;
    flex-shrink: 0;
  }
  .cta-status-metrics {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cta-status-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px;
    text-align: center;
  }
  .cta-status-metric small {
    margin-bottom: 0;
  }
  .cta-status-metric strong {
    font-size: 18px;
  }
  .hero-btn.cta-btn {
    width: max-content;
    max-width: 100%;
    height: 56px;
    padding: 0 8px 0 20px;
  }
  .contact-section {
    margin: 0;
    border-radius: 0;
    border: none;
    max-width: 100%;
    padding: 40px 16px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-info {
    display: contents;
  }
  .contact-icon-circle,
  .contact-desc,
  .contact-form h3 {
    display: none;
  }
  .contact-info h2 {
    margin-bottom: 20px;
  }
  .contact-form {
    order: 1;
    margin-top: 24px;
  }
  .contact-form .form-row {
    gap: 0;
  }
  .contact-details {
    order: 2;
    margin-top: 16px;
  }
  .blog-section {
    margin: 0 16px 32px;
    border-radius: 30px;
    border: 2px solid #a8bcd3;
    padding: 40px 16px;
    max-width: none;
  }
  .blog-nav {
    display: none;
  }
  .blog-slider {
    overflow: visible;
  }
  .blog-track {
    flex-direction: column;
    transform: none !important;
    gap: 20px;
  }
  .blog-card {
    flex: 0 0 auto;
    width: 100%;
  }
  .blog-card:nth-child(n + 4) {
    display: none;
  }
  .footer {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .footer .container {
    padding: 0 16px;
  }
  .header .container {
    padding: 0 16px;
  }

  .topbar { display: none; }
  .header { padding: 0; border-bottom: 1px solid #e9e9e9; }
  .header-inner {
    min-height: 64px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }
  .logo-img { height: 32px; }
  .nav,
  .header-divider,
  .header-social,
  .header-btn { display: none; }

  .header-social-mobile {
    display: flex;
    justify-self: center;
    gap: 16px;
    align-items: center;
  }
  .header-social-mobile a {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
  }
  .header-social-mobile img { width: 22px; height: 22px; }

  .mobile-menu-btn {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    cursor: pointer;
    color: #1c212b;
  }
  .mobile-menu-icon-open { width: 24px; height: 24px; }
  .mobile-menu-icon-close {
    display: none;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .mobile-menu-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: #fff;
    z-index: 120;
    min-height: calc(100vh - 64px);
    padding: 24px 0 40px;
  }
  .mobile-menu-content {
    width: min(393px, 92%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-home-link {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    cursor: pointer;
  }
  .mobile-home-link img { width: 24px; height: 24px; }
  .mobile-menu-link {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #101317;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-menu-link-arrow {
    display: inline-flex;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 1px solid #e3e5ed;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-link-arrow img { width: 16px; height: 16px; }
  .mobile-panel-btn {
    margin-top: 18px;
    width: fit-content;
    min-width: 186px;
    height: 45px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
  }
  .mobile-panel-btn .btn-icon {
    width: 28px;
    height: 28px;
  }

  .mobile-nav-toggle:checked ~ .mobile-menu-panel { display: block; }
  .mobile-nav-toggle:checked ~ .header-inner .mobile-menu-icon-open { display: none; }
  .mobile-nav-toggle:checked ~ .header-inner .mobile-menu-icon-close { display: inline-block; }

  .section-title { font-size: 2rem; }
  .hero-panel,
  .hero-slider { min-height: 520px; }
  .hero-overlay {
    padding: 36px 24px 28px;
    gap: 16px;
    min-height: 520px;
    justify-content: flex-end;
  }
  .hero-label {
    font-size: 16px;
    letter-spacing: 0.3em;
  }
  .hero-title {
    font-size: 22px;
    line-height: 1.2;
  }
  .hero-btn {
    width: 140px;
    height: 52px;
    padding: 0 8px 0 20px;
  }
  .hero-btn.stat-cta,
  .hero-btn.discover-cta,
  .hero-btn.pricing-cta,
  .hero-btn.blog-cta {
    width: max-content;
    max-width: 100%;
    height: 56px;
    padding: 0 8px 0 20px;
    justify-self: start;
  }
  .hero-btn-circle {
    width: 38px;
    height: 38px;
  }
  .hero-info-box {
    width: calc(50% - 7px);
    min-width: 150px;
    height: auto;
    min-height: 88px;
    padding: 12px;
  }
  .hero-info-icon {
    width: 48px;
    height: 48px;
  }
  .hero-info-label { font-size: 12px; }
  .hero-info-value { font-size: 16px; }
  .hero-info-desc { font-size: 11px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-section { margin: 0; border-radius: 0; }
}

/* === PAGE BANNER (inner pages) === */
.page-banner {
  max-width: 1320px;
  width: 100%;
  margin: 32px auto;
  padding: 0;
  box-sizing: border-box;
}
.page-banner-panel {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  min-height: 520px;
  color: #fff;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  z-index: 0;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-sizing: border-box;
  background: linear-gradient(114.79deg, #170801 -9.96%, #000000 114.29%);
  border: 1px solid #a8bcd3;
  border-radius: 25px;
  opacity: 0.80;
  pointer-events: none;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 32px;
  align-items: center;
  min-height: 520px;
  padding: 56px 64px;
  border-radius: 25px;
}
.page-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 560px;
}
.page-breadcrumb {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}
.page-banner-title {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}
.page-banner-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
}
.page-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  height: 52px;
  padding: 0 22px;
  border-radius: 100px;
  border: 1px solid rgba(255, 229, 197, 0.2);
  background: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  opacity: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: border-color .2s ease, transform .2s ease;
}
.page-banner-cta img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.page-banner-cta:hover {
  background: none;
  border-color: rgba(255, 229, 197, 0.45);
  transform: translateY(-1px);
}
.page-banner-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.page-banner-emblem {
  width: min(100%, 360px);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(250, 93, 14, 0.25));
}
.page-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 15px;
  border: 1px solid rgba(255, 229, 197, 0.2);
  background-color: rgba(255, 229, 197, 0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  opacity: 0.7;
  min-width: 190px;
}
.page-float-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ff6b1a;
  line-height: 1.2;
}
.page-float-card > div > span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.page-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-float-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.page-float-card--energy {
  top: 8%;
  right: 0;
}
.page-float-card--data {
  left: 5%;
  bottom: 14%;
}

@media (max-width: 1024px) {
  .page-banner-inner {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 28px;
  }
  .page-banner-visual {
    min-height: 300px;
    order: -1;
  }
  .page-banner-emblem {
    width: min(100%, 280px);
  }
}

@media (max-width: 768px) {
  .page-banner {
    margin: 0 0 32px;
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .page-banner-panel,
  .page-banner-bg,
  .page-banner-overlay,
  .page-banner-inner {
    border-radius: 0;
  }
  .page-banner-panel {
    min-height: 0;
  }
  .page-banner-overlay {
    border: none;
  }
  .page-banner-inner {
    padding: 32px 20px;
    min-height: 0;
    gap: 0;
  }
  .page-banner-title {
    font-size: 36px;
  }
  .page-banner-visual {
    display: none;
  }
}

/* === ABOUT / SERVICE DETAIL CONTENT === */
.about-content,
.service-detail-content {
  max-width: 1320px;
  width: 100%;
  margin: 32px auto;
  padding: 0;
  box-sizing: border-box;
}
.about-content-panel,
.service-detail-content-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #fff;
  border: 2px solid #a8bcd3;
  border-radius: 25px;
  overflow: hidden;
  min-height: 420px;
}
.service-detail-content-panel {
  background: #EAEFF5;
}
.about-content-copy,
.service-detail-content-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 48px 52px;
}
.about-content-copy h2,
.service-detail-content-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1c212b;
}
.about-content-copy p,
.service-detail-content-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5b6573;
}
.about-content-media,
.service-detail-content-media {
  position: relative;
  min-height: 320px;
}
.about-content-media img,
.service-detail-content-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === ABOUT FEATURES === */
.about-features {
  max-width: 1320px;
  width: 100%;
  margin: 32px auto;
  padding: 0;
  box-sizing: border-box;
}
.about-features-panel {
  background: linear-gradient(141deg, #170801 10%, #000 114%);
  border: 1px solid #2a1a12;
  border-radius: 25px;
  padding: 48px 40px 40px;
  color: #fff;
}
.about-features-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}
.about-features-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}
.about-features-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  justify-self: end;
}
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.about-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 150px;
  padding: 22px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.about-feature-card--glow {
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(250, 93, 14, 0.28) 0%, rgba(250, 93, 14, 0) 55%),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(250, 93, 14, 0.18);
}
.about-feature-icon {
  box-sizing: border-box;
  width: 52px;
  height: 52px;
  border: 1px solid #423c3a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon img,
.about-feature-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.about-feature-icon img {
  filter: brightness(0) invert(1);
}
.about-feature-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}

@media (max-width: 1024px) {
  .about-content-copy,
  .service-detail-content-copy {
    padding: 40px 32px;
  }
  .about-features-panel {
    padding: 40px 24px 28px;
  }
  .about-features-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  .about-features-head p {
    justify-self: start;
    max-width: none;
  }
  .about-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-content,
  .service-detail-content {
    margin: 0 16px 24px;
    max-width: none;
    width: auto;
  }
  .about-content-panel,
  .service-detail-content-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
    min-height: 0;
  }
  .about-content-copy,
  .service-detail-content-copy {
    padding: 28px 20px;
    gap: 14px;
  }
  .about-content-copy h2,
  .service-detail-content-copy h2 {
    font-size: 26px;
  }
  .about-content-media,
  .service-detail-content-media {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
  .about-features {
    margin: 0 0 24px;
    max-width: none;
    width: 100%;
  }
  .about-features-panel {
    border: none;
    border-radius: 0;
    padding: 28px 16px 20px;
  }
  .about-features-head h2 {
    font-size: 28px;
  }
  .about-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about-feature-card {
    min-height: 130px;
    padding: 16px 14px;
    gap: 12px;
  }
  .about-feature-icon {
    width: 44px;
    height: 44px;
  }
  .about-feature-card p {
    font-size: 13px;
  }
}

/* === CONTACT MAPS === */
.contact-maps {
  width: 100%;
  height: 924px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}
.contact-maps-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .contact-maps {
    height: 360px;
  }
}

/* === FAQ SECTION === */
.faq-section {
  max-width: 1320px;
  width: 100%;
  margin: 32px auto;
  padding: 0;
  box-sizing: border-box;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  width: 100%;
  background: #eaeff5;
  border: 1px solid #a8bcd3;
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  list-style: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 88px;
  padding: 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #1c212b;
  background: #eaeff5;
  border: none;
  border-radius: 10px;
}
.faq-item[open] .faq-question {
  height: auto;
  min-height: 88px;
  border-radius: 10px 10px 0 0;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::marker {
  content: "";
}
.faq-toggle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 9999px;
  transition: transform .25s ease;
}
.faq-toggle img {
  width: 12px;
  height: 8px;
  display: block;
}
.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
}
.faq-answer {
  box-sizing: border-box;
  width: 100%;
  padding: 0 24px 24px;
  background: #eaeff5;
}
.faq-answer p {
  margin: 0;
  padding-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #5b6573;
  font-weight: 400;
}

/* === FAQ CTA === */
.faq-cta {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto 32px;
  padding: 0;
  box-sizing: border-box;
}
.faq-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 160px;
  padding: 36px 48px;
  background: #ff6b1a;
  border-radius: 25px;
  color: #fff;
}
.faq-cta-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.faq-cta-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 52px;
  padding: 0 28px;
  border-radius: 100px;
  background: #fff;
  color: #ff6b1a;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease;
}
.faq-cta-btn:hover {
  background: #fff7f2;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .faq-section {
    margin: 0 16px 24px;
    max-width: none;
    width: auto;
  }
  .faq-item:not([open]) .faq-question {
    height: auto;
    min-height: 72px;
  }
  .faq-question {
    padding: 20px 16px;
    font-size: 16px;
  }
  .faq-answer {
    padding: 0 16px 18px;
  }
  .faq-cta {
    margin: 0 16px 24px;
    max-width: none;
    width: auto;
  }
  .faq-cta-panel {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 28px 20px;
    border-radius: 20px;
  }
  .faq-cta-btn {
    width: 100%;
  }
}

/* === MEMBER TABS === */
.member-tabs {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto 32px;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.member-tabs-bar {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 5px;
  gap: 10px;
  width: 380px;
  height: 56px;
  border: 1px solid #a8bcd3;
  border-radius: 12px;
}
.member-tab {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px 36px;
  width: 178px;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: 'Figtree', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, font-weight .2s ease;
}
.member-tab.is-active {
  width: 178px;
  background: #ff6b1a;
  font-weight: 700;
  color: #fff;
}
.member-tab:last-child {
  width: 182px;
}
.member-tab:last-child.is-active {
  width: 182px;
}

@media (max-width: 768px) {
  .member-tabs {
    margin: 0 16px 24px;
    max-width: none;
    width: auto;
  }
}

/* === MEMBER FORM === */
.member-form-section {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 32px;
  padding: 0;
  box-sizing: border-box;
}
.member-form-panel {
  padding: 40px 48px;
}
.member-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.member-form .form-group {
  margin-bottom: 24px;
}
.member-verify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 10px 16px;
  border: 1px solid #ff6b1a;
  border-radius: 10px;
  background: transparent;
  color: #ff6b1a;
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.member-verify-btn:hover {
  background: rgba(255, 107, 26, 0.08);
  color: #ff6b1a;
}
.member-password {
  position: relative;
}
.member-password .input {
  padding-right: 52px;
}
.member-password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.member-password-toggle img {
  display: block;
  width: 22px;
  height: 22px;
}
.member-password-toggle img[hidden] {
  display: none;
}
.member-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M6 7.4L0 1.4L1.4 0L6 4.6L10.6 0L12 1.4L6 7.4Z' fill='%23B0B0B0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 8px;
  padding-right: 44px;
  cursor: pointer;
}
.member-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 28px;
  font-size: 14px;
  line-height: 1.45;
  color: #1c212b;
  cursor: pointer;
}
.member-check input {
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #eaeff5;
  border: 1px solid #a8bcd3;
  border-radius: 2px;
  cursor: pointer;
}
.member-check input:checked {
  background: #ff6b1a;
  border-color: #ff6b1a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.2L4.2 8.5L11 1.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
}
.member-submit {
  border-radius: 10px;
  min-height: 56px;
  font-size: 16px;
  font-weight: 700;
}
.member-login-hint {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  color: #5b6573;
}
.member-login-hint a {
  color: #ff6b1a;
  font-weight: 700;
}
.member-login-hint a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .member-form-section {
    margin: 0 16px 24px;
    max-width: none;
    width: auto;
  }
  .member-form-panel {
    border-radius: 20px;
    padding: 28px 16px;
  }
  .member-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* === SERVICES GRID === */
.services-grid-section {
  max-width: 1320px;
  width: 100%;
  margin: 32px auto;
  padding: 0;
  box-sizing: border-box;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.9fr);
  align-items: center;
  gap: 12px;
  min-height: 420px;
  padding: 48px 32px 48px 40px;
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
.service-card--dark {
  background: linear-gradient(67.92deg, #010101 4.61%, #ff5a00 286.22%);
  border: 2px solid #262626;
  color: #fff;
}
.service-card--light {
  background: #eaeff5;
  border: 2px solid #a8bcd3;
  color: #1c212b;
}
.service-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 2;
  min-width: 0;
}
.service-card-copy h3 {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.service-card-copy h3 strong {
  font-weight: 800;
}
.service-card-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
}
.service-card--dark .service-card-copy p {
  color: rgba(255, 255, 255, 0.82);
}
.service-card--light .service-card-copy p {
  color: #5b6573;
}
.service-card-copy ul {
  margin: 0 0 8px;
  padding-left: 18px;
}
.service-card-copy li {
  list-style: disc;
  font-size: 14px;
  line-height: 1.55;
}
.service-card--dark .service-card-copy li {
  color: rgba(255, 255, 255, 0.9);
}
.service-card--light .service-card-copy li {
  color: #1c212b;
}
.service-card-copy .btn {
  margin-top: 0;
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}
.service-card--dark .btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.service-card--dark .btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}
.service-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  min-height: 300px;
  justify-self: end;
}
.service-card-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 320px;
  max-width: none;
  object-fit: contain;
  opacity: 1;
  filter: none;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.service-card-img {
  position: relative;
  z-index: 1;
  width: min(100%, 250px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid-section {
    margin: 0 16px 24px;
    max-width: none;
    width: auto;
  }
  .services-grid {
    gap: 16px;
  }
  .service-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 20px;
    border-radius: 30px;
    overflow: hidden;
  }
  .service-card-visual {
    display: none;
  }
  .service-card-copy p {
    max-width: none;
  }
}

/* === SERVICE PLANS === */
.service-plans {
  max-width: 1320px;
  width: 100%;
  margin: 48px auto 56px;
  padding: 0;
  box-sizing: border-box;
}
.service-plans-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 110px;
}
.service-plans-intro {
  max-width: 796px;
}
.service-plans-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000;
}
.service-plans-intro p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
}
.service-plans-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 10px;
}
.service-plans-toggle-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000;
  white-space: nowrap;
}
.service-plans-switch {
  position: relative;
  width: 56px;
  height: 28px;
  padding: 0;
  border: 1px solid #a8bcd3;
  border-radius: 9999px;
  background: #eaeff5;
  cursor: pointer;
  flex-shrink: 0;
}
.service-plans-switch-knob {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: #ff6b1a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}
.service-plans-switch[aria-checked="true"] .service-plans-switch-knob {
  transform: translateX(26px);
}
.service-plans-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 3.05fr);
  align-items: stretch;
  gap: 0 8px;
}
.service-plans-labels {
  display: flex;
  flex-direction: column;
}
.service-plans-labels-spacer {
  flex: 0 0 auto;
  height: 156px;
}
.service-plan-feature {
  display: flex;
  align-items: center;
  min-height: 83px;
  padding: 24px 16px 24px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
  box-sizing: border-box;
}
.service-plans-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}
.service-plan-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #a8bcd3;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.service-plan-card + .service-plan-card {
  margin-left: -1px;
}
.service-plan-card.is-featured {
  position: relative;
  z-index: 1;
  background: #eaeff5;
  /* Üst hücre fazlalığı kadar yukarı çek → orta satırlar hizalı kalır */
  margin-top: -36px;
}
.service-plan-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 24px 24px;
  text-align: center;
  min-height: 156px;
  box-sizing: border-box;
}
.service-plan-card.is-featured .service-plan-head {
  min-height: 192px;
  justify-content: flex-end;
  padding-top: 48px;
  padding-bottom: 24px;
}
.service-plan-eyebrow {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #a3a6b6;
}
.service-plan-title,
.service-plan-amount {
  font-size: 40px;
  font-weight: 600;
  line-height: 32px;
  color: #000;
  white-space: nowrap;
}
.service-plan-amount {
  color: #ff6b1a;
}
.service-plan-amount-period {
  font-size: 14px;
  font-weight: 600;
  color: #ff6b1a;
}
.service-plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 328px;
  height: 45px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.service-plan-cta.is-ghost {
  background: #eaeff5;
  border: 1px solid #a8bcd3;
  color: #000;
  font-weight: 500;
}
.service-plan-card.is-featured .service-plan-cta.is-ghost,
.service-plan-card:not(.is-featured) .service-plan-cta.is-ghost {
  background: #eaeff5;
}
.service-plan-cta.is-primary {
  background: #ff6b1a;
  border: 1px solid #ff6b1a;
  color: #fff;
  font-weight: 700;
}
.service-plan-cta.is-ghost:hover {
  background: #dde5ef;
}
.service-plan-cta.is-primary:hover {
  background: #e45a0f;
  border-color: #e45a0f;
}
.service-plan-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 83px;
  padding: 24px;
  border-top: 1px solid #d5d5d5;
  box-sizing: border-box;
}
.service-plan-card.is-featured .service-plan-cell:last-child {
  min-height: 119px;
  align-items: flex-start;
  padding-top: 28px;
  padding-bottom: 52px;
}
.service-plan-cell-label {
  display: none;
}
.service-plan-cell img {
  width: 27px;
  height: 27px;
  display: block;
  flex-shrink: 0;
}
.service-plans-notes {
  margin-top: 28px;
  text-align: right;
}
.service-plans-notes p {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.service-plans-notes p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .service-plans-intro p {
    font-size: 15px;
    line-height: 22px;
  }
  .service-plan-title,
  .service-plan-amount {
    font-size: 32px;
  }
  .service-plan-feature {
    font-size: 14px;
    padding-left: 8px;
  }
  .service-plans-labels-spacer {
    height: 144px;
  }
  .service-plan-head {
    min-height: 144px;
  }
  .service-plan-card.is-featured {
    margin-top: -32px;
  }
  .service-plan-card.is-featured .service-plan-head {
    min-height: 176px;
    justify-content: flex-end;
    padding-top: 40px;
  }
  .service-plan-card.is-featured .service-plan-cell:last-child {
    min-height: 110px;
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 40px;
  }
}

@media (max-width: 900px) {
  .service-plans {
    margin: 32px 16px 40px;
    max-width: none;
    width: auto;
  }
  .service-plans-head {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .service-plans-toggle {
    padding-top: 0;
    flex-wrap: wrap;
  }
  .service-plans-body {
    grid-template-columns: 1fr;
  }
  .service-plans-labels {
    display: none;
  }
  .service-plans-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-plan-card + .service-plan-card {
    margin-left: 0;
  }
  .service-plan-card.is-featured {
    margin-top: 0;
  }
  .service-plan-head,
  .service-plan-card.is-featured .service-plan-head {
    min-height: 0;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 24px;
  }
  .service-plan-card.is-featured .service-plan-cell:last-child {
    min-height: 83px;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .service-plan-cell {
    justify-content: space-between;
    gap: 16px;
  }
  .service-plan-cell-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    text-align: left;
  }
  .service-plans-notes {
    text-align: left;
  }
}

/* === BLOGS LIST / DETAIL === */
.blogs-list-section,
.blogs-related-section {
  max-width: 1320px;
  width: 100%;
  margin: 32px auto 48px;
  padding: 0;
  box-sizing: border-box;
}
.blogs-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.blogs-list-grid .blog-card {
  flex: none;
  width: 100%;
  min-width: 0;
  height: 100%;
}
.blogs-list-grid .blog-card-media {
  display: block;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-date {
  font-size: 13px;
  font-weight: 500;
  color: #5b6573;
}
.blog-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.blog-card-title a {
  color: inherit;
  transition: color .25s ease;
}
.blog-card:hover .blog-card-title a,
.blog-body:hover .blog-card-title a {
  color: #fa5d0e;
}

.blog-detail-content {
  max-width: 1320px;
  width: 100%;
  margin: 32px auto;
  padding: 0;
  box-sizing: border-box;
}
.blog-detail-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #EAEFF5;
  border: 2px solid #a8bcd3;
  border-radius: 25px;
  overflow: hidden;
  min-height: 420px;
}
.blog-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 48px 52px;
}
.blog-detail-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1c212b;
}
.blog-detail-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5b6573;
}
.blog-detail-media {
  position: relative;
  min-height: 320px;
}
.blog-detail-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blogs-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.blogs-related-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1c212b;
}

@media (max-width: 1024px) {
  .blogs-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-detail-copy {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .blogs-list-section,
  .blogs-related-section,
  .blog-detail-content {
    margin: 0 16px 32px;
    max-width: none;
    width: auto;
  }
  .blogs-list-grid,
  .blogs-list-grid--related {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-detail-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
    min-height: 0;
  }
  .blog-detail-copy {
    padding: 28px 20px;
    gap: 14px;
  }
  .blog-detail-copy h2 {
    font-size: 26px;
  }
  .blog-detail-media {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
  .blogs-related-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
