﻿/* ============================================
   ANKARA YAPI LAB THEME - MAIN STYLESHEET
   Cleaned & Refactored Version
   ============================================ */

/* ============================================
   ROOT / CSS VARIABLES
   ============================================ */
:root {
  --navy: #1f284c;
  --orange: #4658a0;
  --ink: #1f284c;
  --muted: #5b6794;
  --line: #d6dcee;
  --surface: #e7eaf3;
  --white: #ffffff;
  --steel: #939fcc;
  --max: 1180px;
  --header: 82px;
  --header-stack: 126px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1;
  overflow-x: hidden;
  display: block;
}

main {
  margin: 0 !important;
  padding: 0 !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
}

/* Admin bar adjustment */
html,
html[style] {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body,
body.admin-bar,
body.logged-in {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.admin-bar 
.ayl-header__banner {
  margin-top: 0 !important;
}

body > .site-main,
body > header {
  margin-top: 0 !important;
}
.ayl-header {
  top: 0;
}

.admin-bar .ayl-header {
  top: 0 !important;
  margin-top: -32px !important;
}

#wpadminbar {
  display: none !important;
}

@media screen and (max-width: 782px) {
  .admin-bar .ayl-header {
    margin-top: -46px !important;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
}

h1 {
  font-size: 70px;
  line-height: 1.08;
  letter-spacing: -0.08em;
  max-width: 980px;
}

h2 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -0.06em;
  max-width: 850px;
}

h3 {
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

h4 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h5 {
  font-size: 24px;
  line-height: 1.24;
  letter-spacing: -0.03em;
}

h6 {
  font-size: 20px;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

/* Eyebrow component */
.eyebrow {
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow--light {
  color: #d5dcf8;
}

.hero-slider__panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide.is-active > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: heroSlideFadeUp 0.7s ease forwards;
}

.hero-slide.is-active > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-slide.is-active > *:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-slide.is-active > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-slide.is-active > *:nth-child(4) {
  animation-delay: 0.32s;
}

@keyframes heroSlideFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Text link */
.text-link {
  color: var(--orange);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
  white-space: nowrap;
}

/* ============================================
   BUTTONS & CTAS
   ============================================ */
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  background: #111111;
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.button--secondary {
  background: transparent;
  border-color: rgba(31, 39, 75, 0.18);
  color: var(--navy);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

/* Site Nav CTA - separate from .button to prevent conflicts */
.site-nav__cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 154px;
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  background: #111111;
  border: 1px solid #111111;
  color: #ffffff !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav__cta:hover {
  transform: translateY(-2px);
  background: #2a2a2a;
  border-color: #2a2a2a;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: none;
}

.site-header > div,
.site-header__inner {
  width: 100%;
  max-width: 100% !important;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 2.8vw, 2.2rem);
}

.site-header__brand img {
  width: min(190px, 44vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 1.75rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.site-header__toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
}

.site-header__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

/* Mobile navigation */
@media (max-width: 900px) {

  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .site-header__toggle {
    display: block;
    justify-self: end;
    z-index: 1001;
  }

  /* SIDEBAR MENU */
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;

    background: var(--white);
    padding: 2rem 1.5rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    transform: translateX(-100%);
    transition: transform 0.3s ease;

    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
  }

}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 5rem);
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(31, 39, 75, 0.94),
    rgba(31, 39, 75, 0.62) 47%,
    rgba(31, 39, 75, 0.18)
  );
}

.hero__content {
  position: relative;
  width: min(850px, 100%);
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  margin: 0.45rem 0 1.2rem;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero__proof {
  position: absolute;
  left: clamp(1.25rem, 6vw, 5rem);
  right: clamp(1.25rem, 6vw, 5rem);
  bottom: 1.2rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero__proof span {
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 0.65rem;
  min-width: 190px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Home Hero */
.home-hero {
  position: relative;
  width: 100%;
  padding: 0;
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
}

.home-hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  align-content: end;
  min-height: calc(100svh - var(--header));
  padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 4vw, 4rem) clamp(2rem, 3vw, 2.5rem);
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  width: min(620px, 100%);
  margin-top: auto;
  align-self: end;
  padding-left: clamp(0rem, 6vw, 6rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.home-hero__lead {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.home-hero__actions,
.home-hero__stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-hero__actions .button--primary {
  min-width: 190px;
  background: var(--white);
  color: #111111;
  border-color: var(--white);
}

.home-hero__stats article {
  min-width: 140px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.home-hero__stats strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
}

.home-hero__stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.home-hero__media > img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.home-hero__grid > .home-hero__media {
  display: block;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.72) 0%,
      rgba(10, 10, 10, 0.3) 32%,
      rgba(8, 8, 8, 0.08) 58%,
      rgba(8, 8, 8, 0.24) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.46) 100%);
}

.home-hero .eyebrow,
.home-hero h1,
.home-hero p,
.home-hero a {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 11.5ch;
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

/* ============================================
   SECTIONS & LAYOUT
   ============================================ */
.section,
.page-hero,
.single-post {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section__header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section__header--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section__header p,
.page-hero p,
.process-copy p {
  max-width: 720px;
  color: var(--muted);
  font-weight: 500;
}

/* Section shell variants */
.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-shell--muted {
  background: var(--surface);
  width: 100%;
  padding-inline: 1rem;
}

.section-shell--muted .section-intro,
.section-shell--dark .process-band,
.section-shell--accent .cta-panel {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section-shell--dark {
  width: 100%;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
  padding-inline: 1rem;
}

.section-shell--accent {
  width: 100%;
  padding-inline: 1rem;
}

/* Section shell typography - scoped to prevent conflicts */
.section-shell h2,
.section-shell h3,
.section-shell h4 {
  color: var(--navy);
}

.section-shell--dark h2,
.section-shell--dark h3,
.section-shell--dark h4 {
  color: var(--white);
}

.section-shell--dark p {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid article {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.intro-grid span {
  color: var(--orange);
  font-weight: 800;
}

.intro-grid h3 {
  margin: 0.8rem 0;
}

.intro-grid p {
  color: var(--muted);
}

/* Post grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.post-card {
  display: grid;
  gap: 1rem;
}

.post-card__image {
  min-height: 230px;
  padding: 1rem;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__image span {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.3rem;
}

.post-card p {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.post-card h3 {
  margin-bottom: 0.55rem;
}

.post-card span {
  color: var(--muted);
}

/* Featured post grid */
.post-grid--featured {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1.25rem;
}

.post-grid--featured .post-card {
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 24px;
  background: var(--white);
}

.post-grid--featured .post-card__image {
  min-height: 190px;
  border-radius: 18px;
}

.post-grid--featured .post-card h3 {
  margin-bottom: 0.75rem;
}

/* ============================================
   SERVICE LIST
   ============================================ */
.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1.2fr minmax(180px, 0.65fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-row > div {
  grid-column: 1 / 3;
}

.service-row p,
.service-row span {
  color: var(--muted);
  margin: 0;
}

.service-row span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-row:hover h3,
.service-row:hover h2 {
  color: var(--orange);
}

.service-row__link {
  grid-column: 3;
  grid-row: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  align-self: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-row__link:hover {
  color: var(--navy);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.section--process {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.process-copy {
  position: sticky;
  top: calc(var(--header) + 2rem);
  align-self: start;
}

.process-copy h2 {
  margin: 0.5rem 0 1rem;
}

.process-steps {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.process-steps div {
  background: var(--surface);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.4rem 1rem;
}

.process-steps span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.process-steps strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.process-steps p {
  color: var(--muted);
  margin: 0;
}

/* ============================================
   MEDIA SECTION
   ============================================ */
.section--media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section--media > .media-placeholder {
  background: none;
  border: none;
  padding: 0;
  min-height: auto;
}

.section--media .media-placeholder span {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.3rem;
}

.section--media .media-placeholder p {
  color: var(--muted);
  max-width: 380px;
}

.section--media .media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.6s ease;
}

.section--media .media-placeholder img:hover {
  transform: scale(1.04);
}

/* Media placeholder standalone */
.media-placeholder {
  min-height: 260px;
}

.media-placeholder span {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.3rem;
}

.media-placeholder p {
  color: var(--muted);
  max-width: 380px;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.section--values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 0;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section--values article {
  background: var(--surface);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.section--values p {
  color: var(--muted);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: clamp(4rem, 8vw, 7rem) auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #1F284C 0%, #4658A0 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.cta-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.cta-band__content {
  color: #fff;
  max-width: 680px;
}

.cta-band__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-band__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.8rem;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 1.6rem;
}

.cta-band__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Visual */
.cta-band__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}

.cta-band__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cta-band__visual:hover img {
  transform: scale(1.05);
}

/* CTA Panel */
.cta-panel {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--surface), var(--white));
  border: 1px solid rgba(70, 88, 160, 0.12);
}

.cta-panel h2 {
  color: var(--navy);
}

.cta-panel__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.page-hero h1 {
  margin: 0.5rem 0 1rem;
  color: var(--navy);
}

.page-hero p:not(.eyebrow) {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--muted);
}

/* About hero image */
.about-hero-image {
  width: min(100%, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-hero-image__frame {
  overflow: hidden;
  min-height: clamp(260px, 34vw, 420px);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(31, 40, 76, 0.14);
}

.about-hero-image__frame img {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-hero-image__frame img:hover {
  transform: scale(1.04);
}

/* About side card */
.about-side-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6f8fd);
  box-shadow: 0 18px 60px rgba(31, 40, 76, 0.08);
}

.about-side-card span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-side-card h3 {
  color: var(--navy);
}

.about-side-card p {
  color: var(--muted);
  margin: 0;
}

/* ============================================
   CONTACT PAGE (Classic)
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-page {
  padding-top: 0;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.25rem);
  align-items: start;
}

.contact-page__form-panel,
.contact-page__side {
  display: grid;
  gap: 1.25rem;
}

.contact-page__panel-head {
  display: grid;
  gap: 0.8rem;
}

.contact-page__panel-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 12ch;
}

.contact-page__panel-head p {
  color: var(--muted);
  max-width: 62ch;
}

.contact-page__kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Contact info */
.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-info h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.contact-info p,
.contact-info a {
  color: rgba(255, 255, 255, 0.86);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form--card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(31, 40, 76, 0.08);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 800;
}

.contact-form textarea {
  resize: vertical;
}

/* Form notes */
.form-note {
  padding: 1rem;
  font-weight: 700;
  border-radius: 6px;
}

.form-note--success {
  background: #e9f8ef;
  color: #176436;
}

.form-note--error {
  background: #fff1ee;
  color: #9f341c;
}

/* Map */
.map-strip {
  width: 100%;
  height: 420px;
  margin-bottom: 0;
}

.map-strip iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-card {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(31, 40, 76, 0.08);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* Contact detail icons */
.contact-detail-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-detail-icons__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8faff);
  box-shadow: 0 12px 40px rgba(31, 40, 76, 0.06);
}

.contact-detail-icons__item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-size: 1rem;
}

.contact-detail-icons__item p,
.contact-detail-icons__item a {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   CONTACT MODERN (Alternative)
   ============================================ */
.contact-modern {
  background: #f5f7fc;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.contact-modern__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-modern__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-modern__header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.contact-modern__header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.contact-modern__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.form-modern {
  display: grid;
  gap: 1rem;
}

.form-modern__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-modern input,
.form-modern textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.95rem;
  background: #f9fafb;
}

.contact-modern .form-modern input,
.contact-modern .form-modern textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.95rem;
  background: #f9fafb;
}

.contact-modern__map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

.contact-modern__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-modern__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-modern__card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-modern__card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.contact-modern__card p {
  color: var(--muted);
  margin: 0;
}

/* ============================================
   CONTACT BENTO
   ============================================ */
.contact-bento {
  padding: 5rem 1rem;
}

.contact-bento__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
}

.contact-bento__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.contact-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.5s;
}

.contact-bento__item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.contact-bento__item h4,
.contact-bento__item h3,
.contact-bento__item p {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
}

.contact-bento__item--large {
  grid-row: span 2;
}

.contact-bento__item--large h3 {
  font-size: 1.6rem;
}

/* ============================================
   CONTACT TRUST
   ============================================ */
.contact-trust {
  background: #1F284C;
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.contact-trust__container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-trust h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-trust p {
  opacity: 0.8;
  margin-bottom: 3rem;
}

.contact-trust__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.contact-trust__stats strong {
  font-size: 2rem;
  display: block;
  color: #fff;
}

.contact-trust__stats span {
  opacity: 0.7;
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-post {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.single-post__header {
  padding: clamp(4rem, 9vw, 8rem) 0 2rem;
}

.single-post__header h1 {
  margin: 0.5rem 0 1rem;
}

.single-post__header p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.single-post__image {
  margin-bottom: 2rem;
}

.single-post__image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.single-post__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.single-post__content {
  max-width: 840px;
}

.single-post__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  margin: 2rem 0 1rem;
}

.single-post__content p,
.single-post__content li {
  color: #333a4d;
  font-size: 1.03rem;
}

.single-post__content a {
  color: var(--orange);
  font-weight: 700;
}

.single-post__sidebar {
  position: relative;
}

.single-post__sidebar-card {
  position: sticky;
  top: calc(var(--header-stack) + 1.5rem);
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f7f9fe);
  box-shadow: 0 18px 50px rgba(31, 40, 76, 0.08);
}

.single-post__sidebar-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-post__sidebar-card h3 {
  font-size: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.single-post__sidebar-list {
  display: grid;
  gap: 0.85rem;
}

.single-post__sidebar-item {
  border-top: 1px solid rgba(70, 88, 160, 0.12);
  padding-top: 0.85rem;
}

.single-post__sidebar-link {
  display: grid;
  gap: 0.35rem;
}

.single-post__sidebar-date {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.single-post__sidebar-link strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.single-post__sidebar-link:hover strong {
  color: var(--orange);
}

.pagination {
  margin-top: 3rem;
}

/* ============================================
   SERVICES EXPLORER
   ============================================ */
.services-explorer {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  padding: 1.4rem;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: #fff;
}

.services-explorer__nav {
  display: grid;
  gap: 0.85rem;
}

.services-explorer__tab {
  width: 100%;
  padding: 1rem 1.1rem;
  text-align: left;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 18px;
  background: #f6f8fd;
  color: var(--navy);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.services-explorer__tab.is-active {
  border-color: var(--orange);
  background: var(--surface);
  transform: translateX(4px);
}

.services-explorer__tab span,
.services-explorer__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-explorer__tab strong {
  font-size: 1rem;
  color: var(--navy);
}

.services-explorer__panel {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--orange) 100%);
  color: rgba(255, 255, 255, 0.86);
}

.services-explorer__panel h3 {
  color: #fff;
}

.services-explorer__panel p {
  color: rgba(255, 255, 255, 0.9);
}

.services-explorer__meta span {
  display: inline-flex;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.services-explorer__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   PROCESS BAND
   ============================================ */
.process-band {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.process-band h2 {
  color: var(--white);
}

.process-band__steps {
  display: grid;
  gap: 1rem;
}

.process-band__steps article {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.process-band__steps article h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.process-band__steps span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
}

/* ============================================
   SECTION INTRO & HEADING
   ============================================ */
.section-intro,
.section-heading {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-heading {
  margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #11172f;
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem) 1.5rem;
}

.site-footer__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.site-footer img {
  width: 220px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__bottom {
  width: min(var(--max), 100%);
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ============================================
   MOBILE NAV (AYL)
   ============================================ */
.ayl-nav {
  transition: transform 0.3s ease-out;
}

.ayl-nav.is-open {
  transform: translateX(0);
}

.ayl-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ayl-nav__list a {
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ayl-nav__list a:hover,
.ayl-nav__list .current-menu-item > a,
.ayl-nav__list .current_page_item > a {
  color: #4658a0;
  background: rgba(70, 88, 160, 0.08);
  border-color: rgba(70, 88, 160, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

@media (min-width: 1024px) {
  .ayl-nav > a {
    display: none;
  }

  .ayl-nav__list {
    align-items: center;
    flex-direction: row;
    gap: 1.75rem;
    justify-content: center;
    width: 100%;
  }

  .ayl-nav__list a {
    font-size: 0.95rem;
    font-weight: 500;
  }
}

.ayl-nav__list a {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.45rem 0 !important;
  position: relative;
  transition: color .24s ease !important;
}

.ayl-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #4658A0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}

.ayl-nav__list a:hover::after,
.ayl-nav__list .current-menu-item > a::after,
.ayl-nav__list .current_page_item > a::after {
  transform: scaleX(1);
}

.ayl-nav__list a:hover,
.ayl-nav__list .current-menu-item > a,
.ayl-nav__list .current_page_item > a {
  color: #4658A0 !important;
}

/* ============================================
   MOTION & ANIMATIONS
   ============================================ */
body.motion-ready [data-motion="reveal"] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

body.motion-ready [data-motion="reveal"].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ============================================
   RESPONSIVE - 900px
   ============================================ */
@media (max-width: 900px) {
  :root {
    --header-stack: 116px;
  }

  h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -0.07em;
  }

  h2 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -0.06em;
  }

  h3 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.04em;
  }

  h4 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
  }

  h5 {
    font-size: 20px;
    line-height: 1.24;
    letter-spacing: -0.03em;
  }

  h6 {
    font-size: 18px;
    line-height: 1.24;
    letter-spacing: -0.02em;
  }

  /* Grid to single column */
  .home-hero__grid,
  .section-intro,
  .section-heading,
  .process-band,
  .cta-panel,
  .services-explorer {
    grid-template-columns: 1fr;
  }

  .home-hero__media {
    min-height: 100%;
  }

  .home-hero__media > img {
    min-height: 100%;
  }

  .home-hero__copy {
    padding-left: 0;
    width: min(520px, 100%);
    padding-bottom: 1.25rem;
  }

  .home-hero__lead {
    max-width: 28rem;
  }

  .hero {
    min-height: calc(92svh - var(--header));
    align-items: end;
    padding-bottom: 8rem;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(31, 39, 75, 0.35),
      rgba(31, 39, 75, 0.96)
    );
  }

  .hero__proof {
    display: none;
  }

  .intro-grid,
  .post-grid,
  .section--values,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .post-grid--featured .post-card {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    width: min(100%, calc(100% - 1.5rem));
  }

  .section__header--split,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .section--process,
  .section--media,
  .contact-layout,
  .contact-page__grid,
  .single-post__body {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .map-strip {
    height: 340px;
  }

  .contact-detail-icons {
    grid-template-columns: 1fr;
  }

  .single-post__sidebar-card {
    position: static;
  }

  /* CTA Band responsive */
  .cta-band__grid {
    grid-template-columns: 1fr;
  }

  .cta-band__visual {
    min-height: 180px;
  }

  /* Contact modern responsive */
  .contact-modern__grid {
    grid-template-columns: 1fr;
  }

  .contact-modern__info {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact bento responsive */
  .contact-bento__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* ============================================
   RESPONSIVE - 560px
   ============================================ */
@media (max-width: 560px) {
  :root {
    --header: 74px;
    --header-stack: 108px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.07em;
  }

  h2 {
    font-size: 30px;
    line-height: 1.14;
    letter-spacing: -0.06em;
  }

  h3 {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.03em;
  }

  h4 {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  h5 {
    font-size: 18px;
    line-height: 1.24;
    letter-spacing: 0;
  }

  h6 {
    font-size: 16px;
    line-height: 1.24;
    letter-spacing: 0;
  }

  p {
    letter-spacing: 0;
  }

  .site-header {
    padding-inline: 0;
  }

  .site-header__brand img {
    width: 190px;
  }

  .hero__actions {
    width: 100%;
  }

  .media-placeholder {
    min-height: 260px;
  }

  .home-hero__stats article {
    min-width: 100%;
  }

  .home-hero__grid {
    padding: 1.2rem 1rem 1.6rem;
    min-height: calc(86svh - var(--header));
  }

  .home-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 9vw, 3.1rem);
  }

  .about-hero-image__frame,
  .about-hero-image__frame img {
    min-height: 220px;
    border-radius: 24px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 320px;
  }

  .contact-detail-icons__item {
    grid-template-columns: 48px 1fr;
    padding: 1rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  /* Contact modern mobile */
  .form-modern__grid {
    grid-template-columns: 1fr;
  }

  .contact-modern__info {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   RESPONSIVE - 560px
   ============================================ */
@media (max-width: 560px) {
  :root {
    --header: 74px;
    --header-stack: 108px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.07em;
  }

  h2 {
    font-size: 30px;
    line-height: 1.14;
    letter-spacing: -0.06em;
  }

  h3 {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.03em;
  }

  h4 {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  h5 {
    font-size: 18px;
    line-height: 1.24;
    letter-spacing: 0;
  }

  h6 {
    font-size: 16px;
    line-height: 1.24;
    letter-spacing: 0;
  }

  p {
    letter-spacing: 0;
  }

  .site-header {
    padding-inline: 0;
  }

  .site-header__brand img {
    width: 190px;
  }

  .hero__actions {
    width: 100%;
  }

  .media-placeholder {
    min-height: 260px;
  }

  .home-hero__stats article {
    min-width: 100%;
  }

  .home-hero__grid {
    padding: 1.2rem 1rem 1.6rem;
    min-height: calc(86svh - var(--header));
  }

  .home-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 9vw, 3.1rem);
  }

  .about-hero-image__frame,
  .about-hero-image__frame img {
    min-height: 220px;
    border-radius: 24px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 320px;
  }

  .contact-detail-icons__item {
    grid-template-columns: 48px 1fr;
    padding: 1rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  /* Contact modern mobile */
  .form-modern__grid {
    grid-template-columns: 1fr;
  }

  .contact-modern__info {
    grid-template-columns: 1fr;
  }

  /* Contact trust mobile */
  .contact-trust__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Service detail mobile */
  .service-content__wrapper {
    grid-template-columns: 1fr;
  }

  .service-hero__title {
    font-size: 2rem;
  }

  .service-related__grid {
    grid-template-columns: 1fr;
  }

  .service-cta__actions {
    flex-direction: column;
  }

  .service-cta__button {
    width: 100%;
  }
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

/* Service Hero */
.service-hero {
  position: relative;
  min-height: 60vh;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--navy) 0%, #2a3d5c 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  overflow: hidden;
}

.service-hero__container {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.service-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.service-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.service-hero__breadcrumb a:hover {
  color: var(--orange);
}

.service-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.service-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.06em;
  margin: 0 0 1.5rem;
  color: var(--white);
}

.service-hero__excerpt {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.service-hero__image {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.service-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-hero__image:hover .service-hero__img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .service-hero {
    grid-template-columns: 1fr;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
  }

  .service-hero__image {
    min-height: 300px;
  }
}

/* Service Content */
.service-content {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  width: 100%;
}

.service-content__wrapper {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.service-content__main {
  max-width: 900px;
}

.service-body {
  color: var(--ink);
  line-height: 1.9;
  font-size: 1.05rem;
}

.service-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}

.service-body h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin: 2rem 0 0.8rem;
  color: var(--navy);
}

.service-body p {
  color: #555;
  margin-bottom: 1.5rem;
}

.service-body ul,
.service-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: #555;
}

.service-body li {
  margin-bottom: 0.8rem;
  line-height: 1.9;
}

.service-body a {
  color: var(--orange);
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: underline;
}

.service-body a:hover {
  color: #3a4f8f;
}

.service-body strong {
  color: var(--navy);
  font-weight: 700;
}

.service-body blockquote {
  border-left: 4px solid var(--orange);
  padding: 1.5rem 0 1.5rem 1.5rem;
  margin: 2rem 0;
  background: rgba(70, 88, 160, 0.05);
  font-style: italic;
  color: var(--muted);
}

/* Service Sidebar */
.service-content__sidebar {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.service-sidebar__card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(31, 40, 76, 0.06);
}

.service-sidebar__card h3,
.service-sidebar__card h4 {
  font-size: 1.1rem;
  margin: 0 0 1.2rem;
  color: var(--navy);
}

.service-sidebar__card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.2rem;
  line-height: 1.7;
}

.service-sidebar__card--cta {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3d5c 100%);
  border: none;
  color: var(--white);
  text-align: center;
}

.service-sidebar__card--cta h3,
.service-sidebar__card--cta h4 {
  color: var(--white);
}

.service-sidebar__card--cta p {
  color: rgba(255, 255, 255, 0.85);
}

.service-sidebar__card--dark {
  background: var(--navy);
  border: none;
}

.service-sidebar__card--dark h3,
.service-sidebar__card--dark h4 {
  color: var(--white);
}

.service-sidebar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
}

.service-sidebar__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}

.service-sidebar__button {
  display: inline-block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  margin-top: 1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.service-sidebar__button:hover {
  transform: translateY(-2px);
  background: #4650a0;
  text-decoration: none;
}

/* Service Info List */
.service-info__list {
  display: grid;
  gap: 1.2rem;
}

.service-info__item {
  display: grid;
  gap: 0.35rem;
}

.service-info__item dt {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.service-info__item dd {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}

/* Related Services */
.service-related {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  background: var(--surface);
  width: 100%;
}

.service-related__container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.service-related__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.service-related__header h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin: 0 0 0.8rem;
  color: var(--navy);
}

.service-related__header p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

.service-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.service-related__card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(70, 88, 160, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-related__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 60px rgba(31, 40, 76, 0.12);
}

.service-related__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
}

.service-related__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-related__card:hover .service-related__img {
  transform: scale(1.08);
}

.service-related__content {
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.service-related__content h3 {
  font-size: 1.1rem;
  margin: 0 0 0.8rem;
  color: var(--navy);
  line-height: 1.4;
}

.service-related__content p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.service-related__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-related__link:hover {
  gap: 0.75rem;
  color: #3a4f8f;
}

.service-related__link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .service-related__grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.service-cta {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--navy) 0%, #2a3d5c 100%);
  color: var(--white);
}

.service-cta__container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.service-cta__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.service-cta__content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.7;
}

.service-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.service-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.service-cta__button--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.service-cta__button--primary:hover {
  transform: translateY(-2px);
  background: #4650a0;
  border-color: #4650a0;
}

.service-cta__button--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-cta__button--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .service-cta__container {
    grid-template-columns: 1fr;
  }

  .service-cta__actions {
    justify-content: stretch;
  }

  .service-cta__button {
    flex: 1;
  }
}

/* GÖRSEL */
.cta-band__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}

.cta-band__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.cta-band__visual:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-band__grid {
    grid-template-columns: 1fr;
  }

  .cta-band__visual {
    min-height: 180px;
  }
}

.page-hero {
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.page-hero h1 {
  margin: 0.5rem 0 1rem;
  color: var(--navy);
}
.page-hero p:not(.eyebrow) {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.about-hero-image {
  width: min(100%, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about-hero-image__frame {
  overflow: hidden;
  min-height: clamp(260px, 34vw, 420px);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(31, 40, 76, 0.14);
}
.about-hero-image__frame img {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 34vw, 420px);
  object-fit: cover;
}
.about-side-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6f8fd);
  box-shadow: 0 18px 60px rgba(31, 40, 76, 0.08);
}
.about-side-card span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-side-card h3 {
  color: var(--navy);
}
.about-side-card p {
  color: var(--muted);
  margin: 0;
}

.section--values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 0;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.section--values article {
  background: var(--surface);
  padding: clamp(1.4rem, 4vw, 3rem);
}
.section--values p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-page {
  padding-top: 0;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.25rem);
  align-items: start;
}
.contact-page__form-panel,
.contact-page__side {
  display: grid;
  gap: 1.25rem;
}
.contact-page__panel-head {
  display: grid;
  gap: 0.8rem;
}
.contact-page__panel-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 12ch;
}
.contact-page__panel-head p {
  color: var(--muted);
  max-width: 62ch;
}
.contact-page__kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.contact-info h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.contact-info p,
.contact-info a {
  color: rgba(255, 255, 255, 0.86);
}
.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.social-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form--card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(31, 40, 76, 0.08);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 800;
}
.contact-modern .form-modern input,
.contact-modern .form-modern textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.95rem;
  background: #f9fafb;
}
.contact-form textarea {
  resize: vertical;
}
.form-note {
  padding: 1rem;
  font-weight: 700;
  border-radius: 6px;
}
.form-note--success {
  background: #e9f8ef;
  color: #176436;
}
.form-note--error {
  background: #fff1ee;
  color: #9f341c;
}
.map-strip {
  width: 100%;
  height: 420px;
  margin-bottom: 0;
}
.map-strip iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-card {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(31, 40, 76, 0.08);
}
.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
.contact-detail-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-detail-icons__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8faff);
  box-shadow: 0 12px 40px rgba(31, 40, 76, 0.06);
}
.contact-detail-icons__item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-size: 1rem;
}
.contact-detail-icons__item p,
.contact-detail-icons__item a {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
}

.single-post {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.single-post__header {
  padding: clamp(4rem, 9vw, 8rem) 0 2rem;
}
.single-post__header h1 {
  margin: 0.5rem 0 1rem;
}
.single-post__header p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}
.single-post__image {
  margin-bottom: 2rem;
}
.single-post__image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
.single-post__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.single-post__content {
  max-width: 840px;
}
.single-post__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  margin: 2rem 0 1rem;
}
.single-post__content p,
.single-post__content li {
  color: #333a4d;
  font-size: 1.03rem;
}
.single-post__content a {
  color: var(--orange);
  font-weight: 700;
}
.single-post__sidebar {
  position: relative;
}
.single-post__sidebar-card {
  position: sticky;
  top: calc(var(--header-stack) + 1.5rem);
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f7f9fe);
  box-shadow: 0 18px 50px rgba(31, 40, 76, 0.08);
}
.single-post__sidebar-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.single-post__sidebar-card h3 {
  font-size: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.single-post__sidebar-list {
  display: grid;
  gap: 0.85rem;
}
.single-post__sidebar-item {
  border-top: 1px solid rgba(70, 88, 160, 0.12);
  padding-top: 0.85rem;
}
.single-post__sidebar-link {
  display: grid;
  gap: 0.35rem;
}
.single-post__sidebar-date {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.single-post__sidebar-link strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}
.single-post__sidebar-link:hover strong {
  color: var(--orange);
}
.pagination {
  margin-top: 3rem;
}

.site-footer {
  background: #11172f;
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem) 1.5rem;
}
.site-footer__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.site-footer img {
  width: 220px;
  margin-bottom: 1rem;
}
.site-footer h2 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a {
  display: block;
  margin: 0.45rem 0;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__bottom {
  width: min(var(--max), 100%);
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-shell--muted {
  background: var(--surface);
  width: 100%;
  padding-inline: 1rem;
}
.section-shell--muted .section-intro,
.section-shell--dark .process-band,
.section-shell--accent .cta-panel {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section-shell--dark {
  width: 100%;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
  padding-inline: 1rem;
}

.section-shell--accent {
  width: 100%;
  padding-inline: 1rem;
}

.home-hero {
  position: relative;
  width: 100%;
  padding: 0;
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
}

.home-hero__grid,
.section-intro,
.section-heading,
.process-band,
.cta-panel,
.services-explorer {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.home-hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  align-content: end;
  min-height: calc(100svh - var(--header));
  padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 4vw, 4rem)
    clamp(2rem, 3vw, 2.5rem);
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  width: min(620px, 100%);
  margin-top: auto;
  align-self: end;
  padding-left: clamp(0rem, 6vw, 6rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.home-hero__lead {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.home-hero__actions,
.home-hero__stats,
.services-explorer__actions,
.cta-panel__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-hero__actions .button--secondary,
.home-hero__stats,
.home-hero__grid > .home-hero__media[data-motion="reveal"] {
  display: none !important;
}

.home-hero__actions .button--primary {
  min-width: 190px;
  background: var(--white);
  color: #111111;
  border-color: var(--white);
}

.home-hero__stats article {
  min-width: 140px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.home-hero__stats strong,
.process-band__steps span {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
}

.home-hero__stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.home-hero__media > img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.home-hero__grid > .home-hero__media {
  display: block;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 7, 0.72) 0%,
      rgba(10, 10, 10, 0.3) 32%,
      rgba(8, 8, 8, 0.08) 58%,
      rgba(8, 8, 8, 0.24) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.46) 100%);
}

.home-hero .eyebrow,
.home-hero h1,
.home-hero p,
.home-hero a {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 11.5ch;
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.section-intro,
.section-heading,
.process-band,
.cta-panel,
.services-explorer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-heading {
  margin-bottom: 2rem;
}

.services-explorer {
  padding: 1.4rem;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 28px;
  background: #fff;
}

.services-explorer__nav {
  display: grid;
  gap: 0.85rem;
}

.services-explorer__tab {
  width: 100%;
  padding: 1rem 1.1rem;
  text-align: left;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 18px;
  background: #f6f8fd;
  color: var(--navy);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.services-explorer__tab.is-active {
  border-color: var(--orange);
  background: var(--surface);
  transform: translateX(4px);
}

.services-explorer__tab span,
.services-explorer__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-explorer__tab strong {
  font-size: 1rem;
}

.services-explorer__panel {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--orange) 100%);
  color: rgba(255, 255, 255, 0.86);
}

.services-explorer__panel h3,
.process-band h2,
.cta-panel h2 {
  color: #fff;
}

.section-shell--dark p,
.section-shell--dark h3,
.section-shell--dark .process-band__steps span,
.services-explorer__panel p,
.services-explorer__panel h3,
.services-explorer__panel .services-explorer__meta span {
  color: rgba(255, 255, 255, 0.9);
}

.section-shell p,
.section-shell--muted p,
.section-shell--accent p,
.services-explorer__tab strong,
.services-explorer__tab span {
  color: inherit;
}

.services-explorer__meta span {
  display: inline-flex;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-band__steps {
  display: grid;
  gap: 1rem;
}

.process-band__steps article {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.process-band__steps article h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.eyebrow--light {
  color: #d5dcf8;
}

.post-grid--featured {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1.25rem;
}

.post-grid--featured .post-card {
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(70, 88, 160, 0.12);
  border-radius: 24px;
  background: var(--white);
}

.post-grid--featured .post-card__image {
  min-height: 190px;
  border-radius: 18px;
}

.post-grid--featured .post-card h3 {
  margin-bottom: 0.75rem;
}

.cta-panel {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--surface), var(--white));
  border: 1px solid rgba(70, 88, 160, 0.12);
}

body.motion-ready [data-motion="reveal"] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

body.motion-ready [data-motion="reveal"].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 900px) {
  :root {
    --header-stack: 116px;
  }
  h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -0.07em;
  }
  h2 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -0.06em;
  }
  h3 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.04em;
  }
  h4 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
  }
  h5 {
    font-size: 20px;
    line-height: 1.24;
    letter-spacing: -0.03em;
  }
  h6 {
    font-size: 18px;
    line-height: 1.24;
    letter-spacing: -0.02em;
  }

  .home-hero__grid,
  .section-intro,
  .section-heading,
  .process-band,
  .cta-panel,
  .services-explorer {
    grid-template-columns: 1fr;
  }

  .home-hero__media {
    min-height: 100%;
  }

  .home-hero__media > img {
    min-height: 100%;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
  }
  .site-header__toggle {
    display: block;
    justify-self: end;
  }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header) - 0.2rem);
    display: none;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 55px rgba(31, 39, 75, 0.14);
    align-items: stretch;
    flex-direction: column;
    justify-self: stretch;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .home-hero__copy {
    padding-left: 0;
    width: min(520px, 100%);
    padding-bottom: 1.25rem;
  }
  .home-hero__lead {
    max-width: 28rem;
  }
  .hero {
    min-height: calc(92svh - var(--header));
    align-items: end;
    padding-bottom: 8rem;
  }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(31, 39, 75, 0.35),
      rgba(31, 39, 75, 0.96)
    );
  }
  .hero__proof {
    display: none;
  }
  .intro-grid,
  .post-grid,
  .section--values,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .post-grid--featured .post-card {
    grid-template-columns: 1fr;
  }
  .about-hero-image {
    width: min(100%, calc(100% - 1.5rem));
  }
.section__header--split,
.site-footer__bottom {
  align-items: flex-start;
  flex-direction: column;
}
  .service-row {
    grid-template-columns: 1fr;
  }
  .section--process,
  .section--media,
  .contact-layout,
  .contact-page__grid,
  .single-post__body {
    grid-template-columns: 1fr;
  }
  .process-copy {
    position: static;
  }
  .map-strip {
    height: 340px;
  }
  .contact-detail-icons {
    grid-template-columns: 1fr;
  }
  .single-post__sidebar-card {
    position: static;
  }
}

@media (max-width: 560px) {
  :root {
    --header: 74px;
    --header-stack: 108px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.07em;
  }
  h2 {
    font-size: 30px;
    line-height: 1.14;
    letter-spacing: -0.06em;
  }
  h3 {
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.03em;
  }
  h4 {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
  }
  h5 {
    font-size: 18px;
    line-height: 1.24;
    letter-spacing: 0;
  }
  h6 {
    font-size: 16px;
    line-height: 1.24;
    letter-spacing: 0;
  }
  p {
    letter-spacing: 0;
  }
  .site-header {
    padding-inline: 0;
  }
  .site-header__brand img {
    width: 190px;
  }
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
  .hero__actions {
    width: 100%;
  }
  .media-placeholder {
    min-height: 260px;
  }
  .home-hero__stats article {
    min-width: 100%;
  }
  .home-hero__grid {
    padding: 1.2rem 1rem 1.6rem;
    min-height: calc(86svh - var(--header));
  }
  .home-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 9vw, 3.1rem);
  }
  .hero-slider__panel {
    min-height: 560px;
  }
  .about-hero-image__frame,
  .about-hero-image__frame img {
    min-height: 220px;
    border-radius: 24px;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-map-card,
  .contact-map-card iframe {
    min-height: 320px;
  }
  .contact-detail-icons__item {
    grid-template-columns: 48px 1fr;
    padding: 1rem;
  }
  .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

.ayl-nav.is-open {
  transform: translateX(0);
}

.ayl-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ayl-nav__list a {
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ayl-nav__list a:hover,
.ayl-nav__list .current-menu-item > a,
.ayl-nav__list .current_page_item > a {
  color: #4658a0;
  background: rgba(70, 88, 160, 0.08);
  border-color: rgba(70, 88, 160, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

@media (min-width: 1024px) {
  .ayl-nav > a {
    display: none;
  }

  .ayl-nav__list {
    align-items: center;
    flex-direction: row;
    gap: 1.75rem;
    justify-content: center;
    width: 100%;
  }

  .ayl-nav__list a {
    font-size: 0.95rem;
    font-weight: 500;
  }
}
.section--media .media-placeholder {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  min-height: auto !important;
}

.section--media .media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; /* köşeleri kaldır */
  box-shadow: none;
}

.section--media img {
  transition: transform 0.6s ease;
}

.section--media .media-placeholder img:hover,
.about-hero-image__frame img:hover {
  transform: scale(1.04);
}
/* CONTACT MODERN */

.contact-modern {
  background: #f5f7fc;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.contact-modern__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 1rem;
}

/* HEADER */
.contact-modern__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-modern__header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.contact-modern__header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* GRID */
.contact-modern__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

/* FORM */
.form-modern {
  display: grid;
  gap: 1rem;
}

.form-modern__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-modern input,
.form-modern textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.95rem;
  background: #f9fafb;
}

/* MAP */
.contact-modern__map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

.contact-modern__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* INFO */
.contact-modern__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-modern__card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.contact-modern__card strong {
  display: block;
  margin-bottom: .5rem;
}

.contact-modern__card p {
  color: var(--muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .contact-modern__grid {
    grid-template-columns: 1fr;
  }

  .contact-modern__info {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 560px) {

  .form-modern__grid {
    grid-template-columns: 1fr;
  }

  .contact-modern__info {
    grid-template-columns: 1fr;
  }

}

.contact-bento {
  padding: 5rem 1rem;
}

.contact-bento__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
}

.contact-bento__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.contact-bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: .5s;
}

.contact-bento__item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.contact-bento__item h4,
.contact-bento__item h3,
.contact-bento__item p {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
}

.contact-bento__item--large {
  grid-row: span 2;
}

.contact-bento__item--large h3 {
  font-size: 1.6rem;
}

@media(max-width:900px){
  .contact-bento__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.contact-trust {
  background: #1F284C;
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.contact-trust__container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-trust h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-trust p {
  opacity: .8;
  margin-bottom: 3rem;
}

.contact-trust__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.contact-trust__stats strong {
  font-size: 2rem;
  display: block;
}

.contact-trust__stats span {
  opacity: .7;
}

@media(max-width:600px){
  .contact-trust__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.about-showcase {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 234, 243, 0.7)),
    linear-gradient(135deg, rgba(70, 88, 160, 0.04), rgba(229, 97, 56, 0.04));
}

.about-intro__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  border: 1px solid rgba(31, 40, 76, 0.08);
  border-radius: 34px;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 234, 243, 0.82));
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.06);
}

.about-intro__copy {
  padding-right: clamp(0rem, 2vw, 1.5rem);
}

.about-intro__copy h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  color: #101828;
}

.about-intro__copy p:last-child {
  margin: 1rem 0 0;
  max-width: 640px;
  color: rgba(31, 40, 76, 0.78);
  line-height: 1.85;
}

.about-intro__stats {
  display: grid;
  gap: 1rem;
}

.about-intro__stat {
  border-radius: 24px;
  padding: 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 40, 76, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.about-intro__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.about-intro__stat span {
  color: #e56138;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-intro__stat h3 {
  margin: 0.55rem 0 0;
  color: #101828;
}

.about-intro__stat p {
  margin: 0.55rem 0 0;
  color: rgba(31, 40, 76, 0.72);
  line-height: 1.75;
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(147, 159, 204, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(229, 97, 56, 0.14), transparent 30%);
  pointer-events: none;
}

.about-showcase__inner {
  position: relative;
  z-index: 1;
}

.about-showcase__header,
.about-showcase__grid,
.about-values__panel,
.faq-section__header,
.faq-section__list,
.about-blog .section-heading,
.about-blog .blog-grid {
  position: relative;
  z-index: 1;
}

.about-showcase__header {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-showcase__header h2,
.about-values__intro h2,
.faq-section__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  color: #101828;
}

.about-showcase__header p:last-child,
.faq-section__header p:last-child {
  margin-top: 1rem;
  max-width: 640px;
  color: rgba(31, 40, 76, 0.74);
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-feature-card {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 40, 76, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 234, 243, 0.78));
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.about-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
  border-color: rgba(70, 88, 160, 0.18);
}

.about-feature-card--wide {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(31, 40, 76, 0.96), rgba(70, 88, 160, 0.88));
  color: #fff;
}

.about-feature-card--accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 184, 166, 0.24));
}

.about-feature-card--text {
  min-height: 100%;
  display: flex;
  align-items: stretch;
}

.about-feature-card--text .about-feature-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.about-feature-card__media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.about-feature-card--wide .about-feature-card__media {
  min-height: 100%;
}

.about-feature-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.02), rgba(16, 24, 40, 0.24));
}

.about-feature-card--wide .about-feature-card__media::after {
  background:
    linear-gradient(90deg, rgba(7, 12, 30, 0.08), rgba(7, 12, 30, 0.36)),
    linear-gradient(180deg, rgba(7, 12, 30, 0), rgba(7, 12, 30, 0.16));
}

.about-feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.about-feature-card:hover .about-feature-card__media img {
  transform: scale(1.06);
}

.about-feature-card__body {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.about-feature-card__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(31, 40, 76, 0.08);
  color: #4658a0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-feature-card--wide .about-feature-card__kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.about-feature-card__body h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.08;
  color: inherit;
}

.about-feature-card__body p {
  margin: 1rem 0 0;
  color: rgba(16, 24, 40, 0.78);
  line-height: 1.82;
}

.about-feature-card--wide .about-feature-card__body p {
  color: rgba(255, 255, 255, 0.82);
}

.about-feature-card__list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about-feature-card__list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.84);
}

.about-feature-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #e56138;
  transform: translateY(-50%);
}

.about-values__panel {
  border-radius: 36px;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(31, 40, 76, 0.98), rgba(70, 88, 160, 0.92));
  color: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.about-values__intro {
  max-width: 720px;
}

.about-values__intro .eyebrow,
.about-values__intro h2 {
  color: #fff;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-value-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition:
    transform 0.24s ease,
    background-color 0.24s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.about-value-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #fff;
}

.about-value-card p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.faq-section__header {
  margin-bottom: 1.5rem;
}

.faq-section__list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(31, 40, 76, 0.08);
  background: linear-gradient(180deg, #ffffff, rgba(231, 234, 243, 0.72));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 1.35rem 4.5rem 1.35rem 1.5rem;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.35;
  color: #101828;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #4658a0;
  transform: translateY(-50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}

.faq-item__answer {
  padding: 0 1.5rem 1.4rem;
}

.faq-item p {
  margin: 0;
  color: rgba(31, 40, 76, 0.78);
  line-height: 1.8;
}

.about-blog {
  position: relative;
}

.about-blog-band {
  background: #f5f7fc;
}

.about-blog__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .about-blog__header {
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
  }
}

.about-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .about-intro__panel {
    grid-template-columns: 1fr;
  }

  .about-feature-card,
  .about-feature-card--wide {
    grid-column: span 12;
  }

  .about-feature-card--wide {
    grid-template-columns: 1fr;
  }

  .about-values__grid,
  .about-blog__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-showcase__grid {
    gap: 1rem;
  }

  .about-feature-card {
    border-radius: 24px;
  }

  .about-feature-card__body,
  .about-value-card,
  .faq-item__answer {
    padding: 0 1.25rem 1.2rem;
  }

  .faq-item summary {
    padding: 1.2rem 4rem 1.2rem 1.25rem;
  }

  .about-blog__header {
    margin-bottom: 2rem;
  }
}

.about-redesign {
  background:
    radial-gradient(circle at top left, rgba(147, 159, 204, 0.16), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(229, 97, 56, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 28%, #ffffff 100%);
}

.about-redesign .section {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.about-section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-section-heading h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
}

.about-section-heading p {
  margin: 1rem 0 0;
  color: rgba(31, 40, 76, 0.74);
  line-height: 1.9;
  font-size: 1.02rem;
}

.about-section-heading--light h2,
.about-section-heading--light p {
  color: #fff;
}

.about-hero-v2 {
  padding: clamp(3rem, 5vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
}

.about-hero-v2__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-hero-v2__copy h1 {
  margin: 0;
  color: #101828;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.about-hero-v2__copy p {
  margin: 1.3rem 0 0;
  max-width: 620px;
  color: rgba(31, 40, 76, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.9;
}

.about-hero-v2__actions,
.about-cta-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.about-hero-v2__visual {
  position: relative;
}

.about-hero-v2__glass {
  overflow: hidden;
  border-radius: 36px;
  padding: clamp(0.8rem, 2vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(31, 40, 76, 0.14);
}

.about-hero-v2__glass img,
.about-who__visual img,
.about-bento__card--image img,
.about-process-v2__visual img,
.about-cta-v2__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-hero-v2__glass:hover img,
.about-who__visual:hover img,
.about-bento__card--image:hover img,
.about-process-v2__visual:hover img,
.about-cta-v2__visual:hover img {
  transform: scale(1.05);
}

.about-who__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-who__content h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.about-who__content p {
  margin: 1rem 0 0;
  color: rgba(31, 40, 76, 0.76);
  line-height: 1.9;
}

.about-who__visual,
.about-process-v2__visual,
.about-cta-v2__visual {
  overflow: hidden;
  border-radius: 32px;
  min-height: 420px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.about-mission-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at top left, rgba(147, 159, 204, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(231, 234, 243, 0.86), rgba(255, 255, 255, 0.96));
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-bento__card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 1.55rem;
  border: 1px solid rgba(31, 40, 76, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-bento__card:hover,
.about-service-tile:hover,
.about-why__card:hover,
.about-process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.about-bento__card--navy {
  grid-column: span 5;
  min-height: 320px;
  color: #fff;
  background: linear-gradient(135deg, rgba(31, 40, 76, 1), rgba(70, 88, 160, 0.92));
}

.about-bento__card--light {
  grid-column: span 4;
  min-height: 320px;
}

.about-bento__card--image {
  grid-column: span 3;
  padding: 0;
  min-height: 320px;
}

.about-bento__card--soft {
  grid-column: span 6;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, rgba(242, 184, 166, 0.22));
}

.about-bento__card h3,
.about-service-tile h3,
.about-why__card h3,
.about-process-step h3,
.about-cta-v2__content h2 {
  margin: 0;
  line-height: 1.08;
}

.about-bento__card p,
.about-service-tile p,
.about-why__card p,
.about-process-step p,
.about-cta-v2__content p {
  margin: 0.9rem 0 0;
  line-height: 1.8;
}

.about-bento__card--navy p {
  color: rgba(255, 255, 255, 0.8);
}

.about-bento__card--soft strong {
  font-size: 1.35rem;
  color: #101828;
}

.about-bento__icon,
.about-service-tile__icon,
.about-why__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(70, 88, 160, 0.1);
  margin-bottom: 1rem;
  position: relative;
}

.about-bento__card--navy .about-bento__icon {
  background: rgba(255, 255, 255, 0.12);
}

.about-bento__icon span,
.about-service-tile__icon span,
.about-why__icon::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 2px solid #4658a0;
  display: block;
}

.about-bento__card--navy .about-bento__icon span {
  border-color: #fff;
}

.about-services-v2__grid,
.about-why__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-service-tile,
.about-why__card {
  grid-column: span 3;
  border-radius: 28px;
  padding: 1.5rem;
  border: 1px solid rgba(31, 40, 76, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-numbers-band {
  background: linear-gradient(135deg, #1f284c, #4658a0);
}

.about-numbers-band__inner {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.about-numbers-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-number-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.about-number-card strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.about-number-card span {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.about-process-v2__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.about-process-v2__steps {
  display: grid;
  gap: 1rem;
}

.about-process-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 26px;
  border: 1px solid rgba(31, 40, 76, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-process-step span {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: #1f284c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.about-cta-v2__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(1.4rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, rgba(31, 40, 76, 1), rgba(70, 88, 160, 0.94));
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.about-cta-v2__content {
  align-self: center;
  color: #fff;
  padding: clamp(0.5rem, 1vw, 0.8rem);
}

.about-cta-v2__content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.about-cta-v2__panel .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  will-change: transform;
}

@media (max-width: 1100px) {
  .about-hero-v2__shell,
  .about-who__grid,
  .about-process-v2__grid,
  .about-cta-v2__panel,
  .about-bento__card--wide {
    grid-template-columns: 1fr;
  }

  .about-bento__card--navy,
  .about-bento__card--light,
  .about-bento__card--image,
  .about-bento__card--soft,
  .about-service-tile,
  .about-why__card {
    grid-column: span 12;
  }

  .about-numbers-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .about-redesign .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .about-hero-v2__copy h1 {
    max-width: none;
  }

  .about-who__visual,
  .about-process-v2__visual,
  .about-cta-v2__visual {
    min-height: 280px;
  }

  .about-numbers-band__grid {
    grid-template-columns: 1fr;
  }

  .about-process-step {
    grid-template-columns: 1fr;
  }
}

body.motion-ready [data-motion="reveal"] {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.motion-ready [data-motion="reveal"].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

body.motion-gsap [data-motion="reveal"] {
    transition: none !important;
}

@media (prefers-reduced-motion: no-preference) {
    .group:hover .button-arrow-shift,
    .button-arrow-shift:hover {
        transform: translateX(3px);
    }

    .premium-surface,
    .premium-card,
    .premium-cta {
        transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }

    .premium-surface:hover,
    .premium-card:hover,
    .premium-cta:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(31, 40, 76, 0.12);
    }
}

body.motion-ready [data-motion="reveal"].is-leaving {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  filter: blur(8px);
  transition-duration: 0.45s;
  transition-delay: 0ms;
}

.hero-slider [data-motion="reveal"],
.page-hero [data-motion="reveal"],
.single-post__header [data-motion="reveal"] {
  transform-origin: left center;
}

@media (max-width: 767px) {
  body.motion-ready [data-motion="reveal"] {
    transform: translate3d(0, 20px, 0) scale(0.99);
    filter: blur(8px);
  }
}

.ayl-header {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  padding-inline: 0 !important;
  top: 0 !important;
}

.ayl-header > .ayl-header__banner,
.ayl-header > .ayl-header__bar {
  width: 100%;
}

.ayl-header > .ayl-header__bar {
  position: relative;
}

html,
body,
#content,
.site-main,
.ayl-header,
.site-footer {
  width: 100% !important;
  max-width: none !important;
}

body.ayl-menu-open {
  overflow: hidden;
}

.ayl-nav {
  display: flex;
}

@media (max-width: 1023px) {
  .ayl-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 70;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.1rem 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    transform: translateX(-108%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    backdrop-filter: blur(12px);
  }

  .ayl-nav.is-open {
    transform: translateX(0);
  }

  .ayl-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .ayl-nav__list li {
    width: 100%;
  }

  .ayl-nav__list a {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 1rem;
    border-radius: 16px;
  }

  .ayl-nav > a {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (min-width: 1024px) {
  .ayl-nav {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }
}

@keyframes contactPulseDot {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

.contact-pulse-dot {
  animation: contactPulseDot 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .contact-pulse-dot {
    animation: none;
  }
}

.ayl-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.8rem 1rem 0.8rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.24);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
  backdrop-filter: blur(12px);
}

.ayl-whatsapp-float:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 1);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.28);
}

.ayl-whatsapp-float img {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}

.ayl-whatsapp-float span {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

@media (max-width: 640px) {
  .ayl-whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-width: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 999px;
    justify-content: center;
  }

  .ayl-whatsapp-float span {
    display: none;
  }
}
