:root {
  --teal: #007a87;
  --teal-dark: #00606b;
  --ink: #1a2b30;
  --muted: #5c6f75;
  --line: #d9e6e9;
  --bg: #f7fbfc;
  --white: #ffffff;
  --soft: #e8f6f8;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }

/* Nav */
.site-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 251, 252, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.92); }
.nav-inner {
  min-height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.brand span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.brand img {
  width: 44px; height: 44px; border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,151,167,.22);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 12px; border-radius: 999px;
  color: var(--muted); font-weight: 600; font-size: .95rem;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--teal-dark); background: var(--soft); }
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item-dropdown-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.nav-item-dropdown-row > a {
  padding: 8px 8px 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
}
.nav-submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 10px;
  place-items: center;
  flex-shrink: 0;
}
.nav-submenu-caret {
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: .6;
  transition: transform .2s ease;
}
.nav-item-dropdown.is-open .nav-submenu-caret {
  transform: rotate(180deg);
}
/* Masaüstü: ok dekoratif (hover ile açılır) */
@media (min-width: 961px) {
  .nav-item-dropdown.has-submenu .nav-submenu-toggle {
    display: grid;
    pointer-events: none;
    width: 22px;
    height: 32px;
  }
  .nav-item-dropdown.has-submenu .nav-submenu-caret {
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 5px;
  }
}
.nav-item-dropdown .nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 60, 70, .12);
  z-index: 50;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 961px) {
  .nav-item-dropdown:hover > .nav-dropdown,
  .nav-item-dropdown:focus-within > .nav-dropdown {
    display: flex;
  }
}
.nav-item-dropdown.is-open > .nav-dropdown {
  display: flex;
}
.nav-item-dropdown .nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
  font-weight: 600;
  font-size: .92rem;
}
.nav-item-dropdown .nav-dropdown a:hover {
  background: var(--soft);
  color: var(--teal-dark);
}

.page-content {
  line-height: 1.7;
}
.page-content h2,
.page-content h3 {
  font-family: var(--display);
  margin: 1.4em 0 .6em;
  line-height: 1.25;
}
.page-content p { margin: 0 0 1em; }
.page-content ul,
.page-content ol { margin: 0 0 1em; padding-left: 1.25em; }
.page-content a { color: var(--teal-dark); text-decoration: underline; }

/* Mobil hızlı iletişim barı — hafif, ekstra JS/CDN yok */
.mobile-contact-bar {
  display: none;
}
@media (max-width: 960px) {
  .mobile-contact-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 45;
    gap: 0;
    background: #0f2a2e;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  }
  .mobile-contact-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    color: #fff !important;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    min-height: 52px;
  }
  .mobile-contact-bar__call { background: var(--teal); }
  .mobile-contact-bar__wa { background: #128c7e; }
  .mobile-contact-bar__btn .icon-svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
  .nav-links {
    align-items: stretch;
  }
  .nav-links > a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
  .nav-item-dropdown {
    display: block;
    width: 100%;
  }
  .nav-item-dropdown-row {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 4px;
  }
  .nav-item-dropdown-row > a {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
  }
  .nav-submenu-toggle {
    display: grid;
  }
  .nav-item-dropdown .nav-dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    background: var(--soft);
    margin: 4px 0 8px;
    display: none;
    min-width: 0;
    width: 100%;
  }
  .nav-item-dropdown.is-open > .nav-dropdown {
    display: flex;
  }
  .nav-item-dropdown .nav-dropdown a {
    width: 100%;
    text-align: left;
  }
}
.nav-links a.btn-primary,
.nav-links a.btn.btn-primary {
  color: #fff !important;
  background: var(--teal) !important;
  box-shadow: 0 8px 18px rgba(0,151,167,.28);
  padding: 10px 18px;
}
.nav-links a.btn-primary:hover {
  background: var(--teal-dark) !important;
  color: #fff !important;
}
.nav-toggle {
  display: none; border: 0; background: none; font-size: 1.35rem; cursor: pointer; color: var(--ink);
  width: 44px; height: 44px; place-items: center; border-radius: 10px;
}
.nav-burger,
.nav-burger::before,
.nav-burger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}
.nav-burger::before,
.nav-burger::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-burger::before { top: -7px; }
.nav-burger::after { top: 7px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: var(--ink);
  padding: 8px 12px;
  z-index: 100;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; top: 12px; }

.icon-chevron-left,
.icon-chevron-right {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.icon-chevron-left { transform: rotate(135deg); }
.icon-chevron-right { transform: rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; transition: transform .2s, background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 10px 24px rgba(0,151,167,.28);
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline {
  background: transparent; color: var(--teal-dark);
  border: 1.5px solid rgba(0,151,167,.35);
}
.btn-dark { background: var(--ink); color: #fff; }

/* Hero */
.hero {
  padding: 56px 0 88px;
  background:
    radial-gradient(700px 320px at 90% 0%, rgba(0,151,167,.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow {
  display: inline-block;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-brand {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 0 0 16px;
  color: var(--ink);
}
.hero-title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 28ch;
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero stacked cards � iskambil / fan style */
.hero-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  max-height: 440px;
  perspective: 1400px;
  padding: 8px 48px 28px 4px;
  margin-bottom: 48px;
  contain: layout;
}
.hero-card {
  position: absolute;
  inset: 8px 48px 28px 4px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #fff 0%, #f4f8f9 100%);
  border: 3px solid #fff;
  outline: 1px solid rgba(0, 105, 120, .12);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 14px 28px rgba(6, 37, 43, .16),
    0 4px 10px rgba(6, 37, 43, .08);
  transition: transform .55s cubic-bezier(.22,.68,0,1.1), opacity .45s ease, box-shadow .45s ease;
  opacity: 0;
  pointer-events: none;
  transform-origin: 50% 85%;
  cursor: zoom-in;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
  pointer-events: none;
}
.hero-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-card.is-active {
  z-index: 5;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  pointer-events: auto;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 28px 50px rgba(6, 37, 43, .22),
    0 8px 16px rgba(6, 37, 43, .1);
}
.hero-card.is-active:hover {
  transform: translate3d(0, -4px, 0) rotate(-1deg) scale(1.02);
}
.hero-card.is-next {
  z-index: 4;
  opacity: .98;
  transform: translate3d(34px, 22px, -40px) rotate(7deg) scale(.93);
}
.hero-card.is-after {
  z-index: 3;
  opacity: .9;
  transform: translate3d(62px, 40px, -80px) rotate(13deg) scale(.87);
}
.hero-card.is-deck {
  z-index: 2;
  opacity: .72;
  transform: translate3d(86px, 56px, -120px) rotate(18deg) scale(.82);
}
.hero-card.is-prev {
  z-index: 1;
  opacity: 0;
  transform: translate3d(-40px, 16px, -20px) rotate(-10deg) scale(.9);
  pointer-events: none;
}
.hero-stack-nav {
  position: absolute;
  left: 12px;
  right: auto;
  bottom: -40px;
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero-stack-nav button {
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.96); color: var(--ink);
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
  cursor: pointer; display: grid; place-items: center;
}
.hero-stack-nav button:hover {
  background: var(--teal);
  color: #fff;
}

/* Zoom lightbox */
.zoom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 37, 43, .78);
  backdrop-filter: blur(8px);
}
.zoom-lightbox.is-open { display: flex; }
.zoom-lightbox img {
  max-width: min(1120px, 96vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 4px solid #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  object-fit: contain;
  background: #fff;
  animation: zoomIn .28s ease;
}
.zoom-lightbox-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border: 0; border-radius: 50%;
  background: #fff; color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: none; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.section { padding: 80px 0; }
.section-head { max-width: 560px; margin-bottom: 40px; }
.section-head .eyebrow {
  color: var(--teal-dark); font-weight: 700; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -.02em;
  margin: 8px 0 12px;
  line-height: 1.15;
}
.section-head p { margin: 0; color: var(--muted); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  padding: 24px 22px;
  background: rgba(255, 255, 255, .38);
  border: 1px solid rgba(0, 151, 167, .14);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  box-shadow: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  height: 100%;
}
.feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .55);
  border-color: rgba(0,151,167,.28);
}
.feature i,
.feature .icon-svg {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(0, 151, 167, .1); color: var(--teal-dark);
  margin-bottom: 16px; font-size: 1.1rem;
  padding: 11px;
  box-sizing: border-box;
}
.feature h3 {
  margin: 0 0 8px; font-size: 1.1rem; letter-spacing: -.01em;
}
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Slider */
.slider-wrap {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 22px;
  overflow: visible;
  box-shadow: none;
}
.slider-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0b3036;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(26,43,48,.08);
}
.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}
.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}
.slider-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 28px 24px 20px;
  background: linear-gradient(180deg, transparent, rgba(6,37,43,.72));
  color: #fff;
}
.slider-caption strong { display: block; font-size: 1.15rem; margin-bottom: 2px; }
.slider-caption span { opacity: .85; font-size: .92rem; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }
.slider-dots {
  display: flex; justify-content: center; align-items: center; gap: 4px;
  padding: 10px 8px 2px;
  background: transparent;
}
.slider-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.slider-dots button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8aa3a9;
  transition: width .2s, background .2s;
}
.slider-dots button.is-active::after {
  width: 28px;
  background: var(--teal-dark);
}
.slider-dots button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.slider-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding: 2px 2px 10px;
  scrollbar-width: thin;
}
.slider-thumbs::-webkit-scrollbar { height: 6px; }
.slider-thumbs::-webkit-scrollbar-thumb {
  background: rgba(0,151,167,.35);
  border-radius: 999px;
}
.slider-thumbs button {
  flex: 0 0 128px;
  width: 128px;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: transparent;
  aspect-ratio: 16/10;
  opacity: .7;
  transition: opacity .2s, border-color .2s;
  scroll-snap-align: start;
}
.slider-thumbs button.is-active,
.slider-thumbs button:hover {
  opacity: 1;
  border-color: var(--teal);
}
.slider-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Gallery grid (ekranlar sayfas?) */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  margin: 0;
}
.shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26,43,48,.1);
}
.shot .shot-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8eef0;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.shot figcaption { padding: 14px 16px; }
.shot strong { display: block; margin-bottom: 2px; font-size: .98rem; }
.shot span { color: var(--muted); font-size: .88rem; }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
}
.price.is-featured {
  border-color: var(--teal);
  box-shadow: 0 16px 40px rgba(0,151,167,.14);
  position: relative;
}
.price .badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--teal); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 5px 9px; border-radius: 999px;
}
.price h3 { margin: 0 0 6px; font-size: 1.25rem; }
.price .desc { color: var(--muted); margin: 0 0 18px; min-height: 40px; font-size: .95rem; }
.price .amount {
  font-family: var(--display);
  font-size: 2.2rem; letter-spacing: -.02em; margin-bottom: 4px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
}
.price .amount .kdv-note {
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
  line-height: 1.2;
}
.price .period { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.price ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.price li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: .95rem;
}
.price li::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  position: absolute; left: 0; top: 14px;
}

/* FAQ / forms */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 0 0 14px; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.panel label { display: block; font-weight: 600; font-size: .9rem; margin: 12px 0 6px; }
.panel input, .panel textarea, .panel select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fbfdfe;
}
.panel input:focus, .panel textarea:focus, .panel select:focus {
  outline: 2px solid rgba(0,151,167,.2);
  border-color: var(--teal);
}
.panel textarea { min-height: 110px; resize: vertical; }
.alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 12px; font-weight: 600; }
.alert-ok { background: #e8f5e9; color: #1b5e20; }
.alert-err { background: #ffebee; color: #b71c1c; }
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.contact-list i {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--soft); color: var(--teal-dark);
}

.cta {
  margin-top: 20px;
  padding: 36px 40px;
  border-radius: 22px;
  background: linear-gradient(120deg, #0d3b42, var(--teal));
  color: #fff;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px;
}
.cta h2 {
  font-family: var(--display);
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.cta p { margin: 0; color: rgba(255,255,255,.92); max-width: 40ch; }
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid #111111;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
}
.cta-btn:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}
.cta-btn .icon-svg {
  color: #ffffff;
  flex-shrink: 0;
}
.cta-btn-ghost {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.cta-btn-ghost:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}
.cta-btn-ghost:hover .icon-svg {
  color: #111111;
}
.cta-btn-ghost .icon-svg {
  color: #ffffff;
}

.page-hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #fff, var(--bg));
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.page-hero p { margin: 0; color: var(--muted); max-width: 48ch; }

.site-footer {
  margin-top: 20px;
  padding: 56px 0 0;
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(94,234,212,.12), transparent 55%),
    linear-gradient(180deg, #0a3036 0%, #06252b 100%);
  color: rgba(232,247,248,.78);
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand span { color: #fff; }
.site-footer .brand img { box-shadow: none; }
.site-footer h4,
.site-footer .footer-heading {
  margin: 0 0 14px;
  color: #fff;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 10px; }
.site-footer .footer-links a:hover { color: #5eead4; }
.site-footer .footer-contact li {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 12px;
}
.site-footer .footer-contact a {
  display: flex; gap: 10px; align-items: center;
  color: inherit;
}
.site-footer .footer-contact a:hover { color: #5eead4; }
.site-footer .footer-contact i,
.site-footer .footer-contact .icon-svg {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #5eead4;
  flex-shrink: 0;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff;
  transition: background .2s, transform .2s;
}
.footer-social a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}

.reveal { opacity: 0; transform: translateY(16px); transition: .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.section:not(.hero):not(.section-above-fold) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

@media (max-width: 960px) {
  .hero-grid, .features, .pricing, .split, .footer-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .gallery { grid-template-columns: 1fr 1fr; }
  .slider-thumbs button { flex-basis: 110px; width: 110px; }
  .nav-toggle { display: grid; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 76px;
    background: #fff; flex-direction: column; padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .cta { padding: 28px; }
  .hero-stack {
    max-height: 260px;
    padding: 8px 36px 24px 4px;
    margin-bottom: 52px;
  }
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; }
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 80, 90, .1);
}
.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e0f7fa, #f0fdfa);
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 2rem;
  opacity: .55;
}
.blog-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card-body time {
  font-size: .82rem;
  color: var(--muted);
}
.blog-card-body h2,
.blog-card-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.35;
}
.blog-card-body h2 a,
.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover {
  color: var(--teal-dark);
}
.blog-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  flex: 1;
}
.blog-more {
  margin-top: 6px;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-more:hover { gap: 12px; }
.blog-article { padding-top: 40px; }
.blog-article-head .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  text-decoration: none;
}
.blog-article-head h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}
.blog-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 24px;
}
.blog-cover {
  margin: 0 0 28px;
  border-radius: 18px;
  overflow: hidden;
}
.blog-cover img {
  width: 100%;
  display: block;
}
.blog-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #234;
}
.blog-content h2,
.blog-content h3 {
  font-family: var(--display);
  margin: 1.4em 0 .6em;
}
.blog-content p { margin: 0 0 1em; }
.blog-content ul,
.blog-content ol { margin: 0 0 1em; padding-left: 1.3em; }
.blog-content a { color: var(--teal-dark); }
.blog-content blockquote {
  margin: 1.2em 0;
  padding: 12px 18px;
  border-left: 4px solid var(--teal);
  background: var(--soft);
  color: #345;
}
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Homepage SEO block */
.home-seo {
  padding-top: 8px;
  padding-bottom: 48px;
}
.home-seo-title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--ink);
}
.home-seo-content {
  color: #456;
  font-size: .98rem;
  line-height: 1.75;
  position: relative;
}
.home-seo-content p { margin: 0 0 1em; }
.home-seo-content p:last-child { margin-bottom: 0; }
.home-seo-content ul,
.home-seo-content ol { margin: 0 0 1em; padding-left: 1.25em; }
.home-seo-content a { color: var(--teal-dark); }
.home-seo-content.is-collapsed {
  max-height: 7.2em;
  overflow: hidden;
}
.home-seo-content.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.2em;
  background: linear-gradient(to bottom, rgba(248, 251, 252, 0), var(--bg, #f7fbfc));
  pointer-events: none;
}
.home-seo-toggle {
  margin-top: 12px;
  border: 0;
  background: none;
  padding: 0;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.home-seo-toggle:hover { text-decoration: underline; }

.icon-svg {
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.btn .icon-svg,
.blog-more .icon-svg { width: 1em; height: 1em; }
.footer-social .icon-svg,
.footer-contact .icon-svg,
.contact-list .icon-svg { width: 1.15rem; height: 1.15rem; }
.blog-card-placeholder .icon-svg { width: 2rem; height: 2rem; opacity: .7; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
