:root {
  --primary: #535ddc;
  --primary-dark: #535ddc;
  --secondary: #f5e9d6;
  --danger: #e80000;
  --ink: #141e23;
  --muted: #6b756f;
  --line: rgba(3, 139, 79, 0.14);
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 80px rgba(7, 34, 19, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(3, 139, 79, 0.10), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(245, 233, 214, 0.75), transparent 20%),
    linear-gradient(180deg, #fffdf8 0%, #fbfaf6 45%, #fffefb 100%);
  overflow-x: hidden;
}

body.is-preloading {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  background-image: radial-gradient(rgba(0, 0, 0, .14) 0.45px, transparent 0.45px);
  background-size: 6px 6px;
  z-index: -1;
}

.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141e23;
  color: #fff;
  z-index: 9999;
  transition: opacity .5s ease, visibility .5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: .12em;
}

.preloader-line {
  width: min(360px, 72vw);
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin: 38px auto 14px;
  overflow: hidden;
}

.preloader-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--primary);
}

.preloader-count {
  font-size: 1.2rem;
  font-weight: 700;
}

.preloader p {
  margin-top: 12px;
  color: rgba(255,255,255,.65);
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
  padding: 60px 0;
  transition: all .35s ease;
}

.main-header.scrolled {
  padding: 12px 0;
}

.header-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  transition: all .35s ease;
}

.main-header.scrolled .header-wrap {
  background: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(8, 31, 20, 0.08);
  border-color: rgba(3, 139, 79, 0.12);
  padding: 0px 40px;
}

.brand {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--ink);
  width: 240px;
}

.brand-dark {
  color: var(--ink);
}

.desktop-nav {
  align-items: center;
  gap: 50px;
  position: relative;
  top: 2px;
}

.desktop-nav a,
.mobile-links a,
.footer-links a {
  color: var(--ink);
  font-weight: 600;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.mobile-links a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.btn {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  border: 0;
}

.btn-main {
  background: linear-gradient(135deg, var(--primary), #535ddc);
  color: #fff;
  box-shadow: 0 16px 34px rgb(83 93 220 / 32%);
  width: 160px;
  text-align: center;
  justify-content: center;
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border: 1px solid rgba(3, 139, 79, 0.16);
}

.btn-soft:hover {
  color: var(--primary);
  border-color: rgba(3, 139, 79, 0.28);
}

.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  border: 1px solid rgb(83 93 220);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

/* ===== APP-LIKE MOBILE MENU ===== */
.mobile-offcanvas {
  width: min(92vw, 390px) !important;
  border-left: 1px solid rgba(83, 93, 220, 0.12);
  background: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: -20px 0 60px rgba(16, 24, 40, 0.14);
}

.mobile-offcanvas .offcanvas-header,
.mobile-offcanvas .offcanvas-body {
  display: none;
}

.mobile-menu-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 16px;
  position: relative;
  overflow: hidden;
}

.mobile-menu-shell::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 93, 220, 0.16) 0%, rgba(83, 93, 220, 0) 70%);
  pointer-events: none;
}

.mobile-menu-shell::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 93, 220, 0.10) 0%, rgba(83, 93, 220, 0) 70%);
  pointer-events: none;
}

.mobile-menu-top,
.mobile-menu-mini,
.mobile-menu-body,
.mobile-menu-bottom {
  position: relative;
  z-index: 2;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.mobile-menu-brandbox {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mobile-menu-brandlogo {
  /* width: 52px; */
  /* height: 52px; */
  /* min-width: 52px; */
  /* border-radius: 16px; */
  /* background: rgba(255,255,255,.75); */
  /* border: 1px solid rgba(83, 93, 220, 0.10); */
  /* box-shadow: 0 16px 40px rgba(18, 28, 58, .08); */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* padding: 10px; */
}

.mobile-menu-brandlogo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: 220px;
  margin-bottom: 10px;
}

.mobile-menu-brandtext {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-menu-brandtext strong {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .06em;
}

.mobile-menu-brandtext span {
  font-size: .78rem;
  line-height: 1.45;
  color: var(--muted);
}

.mobile-close {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 0;
  border-radius: 16px;
  background: rgba(20, 30, 35, 0.95);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(20, 30, 35, 0.16);
  transition: transform .25s ease, background .25s ease;
}

.mobile-close:hover {
  transform: rotate(90deg) scale(1.04);
  background: var(--primary);
}

.mobile-menu-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.mobile-menu-mini span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(83, 93, 220, 0.10);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(18, 28, 58, .05);
}

.mobile-menu-mini i {
  color: var(--primary);
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding-right: 2px;
}

.mobile-menu-body::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu-body::-webkit-scrollbar-thumb {
  background: rgba(83, 93, 220, 0.18);
  border-radius: 999px;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  background: #e3e6ff;
  border: 1px solid rgba(83, 93, 220, 0.10);
  box-shadow: 0 18px 40px rgba(18, 28, 58, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  color: inherit;
  backdrop-filter: blur(14px);
}

.mobile-nav-card:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 93, 220, 0.22);
  box-shadow: 0 22px 46px rgba(18, 28, 58, .12);
  background: #e3e6ff;
}

.mobile-nav-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(83, 93, 220, .11), rgba(83, 93, 220, .20));
  color: var(--primary);
  font-size: 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.mobile-nav-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.mobile-nav-text strong {
  color: var(--ink);
  font-size: .97rem;
  line-height: 1.2;
  font-weight: 700;
}

.mobile-nav-text small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
  margin-top: 4px;
}

.mobile-nav-arrow {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(83, 93, 220, .08);
  color: var(--primary);
  font-size: .95rem;
  transition: transform .28s ease, background .28s ease;
}

.mobile-nav-card:hover .mobile-nav-arrow {
  transform: translate(2px, -2px);
  background: rgba(83, 93, 220, .14);
}

.mobile-menu-bottom {
  padding-top: 16px;
}

.mobile-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, #141e23 0%, #202b30 100%);
  color: #fff;
  box-shadow: 0 22px 50px rgba(20, 30, 35, .22);
}

.mobile-contact-copy {
  display: flex;
  flex-direction: column;
}

.mobile-contact-copy span {
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-bottom: 6px;
}

.mobile-contact-copy strong {
  color: #fff;
  font-size: .95rem;
  line-height: 1.45;
  max-width: 180px;
}

.mobile-contact-btn {
  min-width: 110px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #6b74f0);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(83, 93, 220, .30);
}

.mobile-contact-btn:hover {
  color: #fff;
}

@media (max-width: 420px) {
  .mobile-offcanvas {
    width: 100vw !important;
  }

  .mobile-menu-shell {
    padding: 14px 12px 12px;
  }

  .mobile-nav-card {
    padding: 12px;
    border-radius: 18px;
  }

  .mobile-nav-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 15px;
  }

  .mobile-contact-card {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-contact-copy strong {
    max-width: 100%;
  }

  .mobile-contact-btn {
    width: 100%;
  }
}

.snap-section {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 32px) 0 34px;
}

.hero-section {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-blur-left {
  width: 420px;
  height: 420px;
  background: rgb(83 93 220 / 36%);
  top: -120px;
  left: -140px;
}

.hero-blur-right {
  width: 340px;
  height: 340px;
  background: rgb(83 93 219 / 36%);
  right: -100px;
  bottom: 50px;
}

.eyebrow,
.section-kicker,
.form-kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow,
.section-kicker,
.form-kicker {
  color: var(--primary);
}

.hero-title,
.section-intro h2,
.service-left-card h2 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: .98;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 18px 0 20px;
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  font-weight: 500;
}

.hero-text,
.lead-copy,
.copy-panel p,
.service-left-card p,
.contact-card span,
.contact-card strong,
.contact-form-card,
.process-step p,
.portfolio-copy h3,
.portfolio-copy span {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

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

.stat-card,
.metric-box,
.feature-pill,
.process-step,
.contact-card,
.service-float-card,
.strip-card,
.contact-form-card,
.copy-panel,
.service-left-card {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.68);
  box-shadow: var(--shadow);
}

.stat-card {
  border-radius: var(--radius-md);
  padding: 18px 18px;
  min-height: 118px;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--ink);
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius-xl) + 8px);
  overflow: hidden;
  min-height: 600px;
  box-shadow: 0 38px 90px rgba(2, 31, 18, 0.16);
}

.hero-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card {
  position: absolute;
  z-index: 2;
  width: min(270px, 76%);
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.8);
}

.hero-card strong,
.contact-card strong,
.process-step h3,
.portfolio-copy h3,
.service-float-card h3,
.form-top h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.4;
  margin: 0;
}

.mini-label {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.hero-card-a { top: 32px; right: 28px; }
.hero-card-b { left: 24px; bottom: 118px; }
.hero-card-c { right: 32px; bottom: 34px; }

.floating-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  z-index: 3;
  padding: 10px 16px;
  background: rgba(13, 23, 18, 0.86);
  color: #fff;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
}

.hero-strip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 4;
}

.strip-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
}

.strip-card i {
  font-size: 1.2rem;
  color: var(--primary);
}

.strip-card span {
  white-space: nowrap;
  font-weight: 700;
}

.section-block {
  display: flex;
  align-items: center;
  background: white !important;
}

.section-intro {
  max-width: 860px;
}

.copy-panel,
.service-left-card,
.contact-form-card {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-xl);
}

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

.metric-box {
  border-radius: 20px;
  padding: 18px;
}

.metric-box strong {
  display: block;
  font-size: 1.15rem;
  color: var(--ink);
}

.metric-box span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.accent-soft {
  background: rgba(245, 233, 214, 0.82);
}

.accent-red {
  background: rgba(232, 0, 0, 0.06);
}

.image-panel,
.gallery-card,
.portfolio-card,
.service-visual-wrap {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 10px);
  box-shadow: 0 30px 80px rgba(7, 29, 18, 0.12);
}

.image-panel img,
.gallery-card img,
.portfolio-card img,
.service-bg,
.contact-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel {
  min-height: 620px;
}

.image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.08));
}

.image-chip {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  background: rgba(255,255,255,.88);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.image-chip-a { left: 22px; bottom: 28px; }
.image-chip-b { right: 22px; top: 24px; }

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.feature-pill {
  border-radius: 999px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
}

.feature-pill i {
  color: var(--primary);
  font-size: 1.1rem;
}

.gallery-card {
  display: block;
  min-height: 640px;
}

.gallery-overlay,
.portfolio-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.gallery-overlay {
  padding: 20px 24px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, transparent, rgba(7, 22, 14, .72));
}

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

.process-step {
  border-radius: 24px;
  padding: 24px;
  min-height: 200px;
}

.process-step span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(3, 139, 79, 0.08);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 10px;
}

.tall-card {
  min-height: 650px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 20px;
}

.portfolio-card {
  min-height: 600px;
}

.portfolio-card-large {
  min-height: 640px;
}

.portfolio-card::after,
.service-visual-wrap::after,
.contact-bg-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 35%, rgb(0 0 0 / 78%));
}

.portfolio-copy {
  padding: 26px 24px;
}

.portfolio-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  color: #fff;
  font-size: 1.35rem;
}

.section-services {
  background: linear-gradient(180deg, #09150f 0%, #10231a 100%);
}

.service-left-card {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.service-left-card h2,
.service-left-card p {
  color: #fff;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.service-mini-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.service-mini-grid i {
  color: var(--secondary);
}

.service-visual-wrap {
  min-height: 660px;
}

.service-overlay-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  align-content: end;
}

.service-float-card {
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.service-float-card h3,
.service-float-card p {
  color: #fff;
}

.service-float-card p {
  margin: 8px 0 0;
  font-size: .96rem;
}

.section-contact {
  color: #fff;
  overflow: hidden;
}

.contact-bg-wrap {
  position: absolute;
  inset: 0;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0 0 0 / 72%), rgba(7, 12, 16, .78) 56%), linear-gradient(180deg, rgba(245, 233, 214, .12), transparent);
}

.light-version .section-kicker,
.light-version h2,
.light-text,
.contact-card strong,
.contact-card span,
.contact-card small,
.contact-form-card,
.contact-form-card .form-kicker,
.contact-form-card h3,
.main-footer {
  color: #fff;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.contact-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  opacity: .7;
  margin-bottom: 10px;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
}

.contact-form-card {
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}

.form-top {
  margin-bottom: 20px;
}

.form-top h3 {
  margin-top: 8px;
  font-size: 1.8rem;
}

.form-control {
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.12);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255,255,255,.68);
}

.form-control:focus {
  box-shadow: none;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.16);
  color: #fff;
}

.mini-contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-contact-info a {
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

.main-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  padding: 38px 0 16px;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a,
.footer-copy {
  color: rgba(255,255,255,.75);
}

.progress-rail {
  position: fixed;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  z-index: 40;
  align-items: center;
  gap: 12px;
}

.progress-line {
  width: 1px;
  height: 150px;
  background: rgb(83 93 220 / 23%);
}

.progress-dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgb(83 93 220);
  background: rgba(255,255,255,.6);
  transition: all .25s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(3, 139, 79, 0.12);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
}

@media (max-width: 1399.98px) {
  .hero-title { font-size: clamp(2.4rem, 5vw, 4.8rem); }
  .hero-visual { min-height: 580px; }
  .image-panel { min-height: 540px; }
}

@media (max-width: 1199.98px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card, .portfolio-card-large { min-height: 420px; }
  .contact-cards { grid-template-columns: 1fr; }
  .service-overlay-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
  :root { --header-h: 76px; }
  .snap-section,
  .section-block,
  .hero-section { min-height: auto; }
  .hero-section { padding-bottom: 120px; }
  .hero-strip { position: static; margin-top: 24px; }
  .hero-visual { min-height: 480px; }
  .image-panel,
  .gallery-card,
  .tall-card,
  .service-visual-wrap { min-height: 420px; }
  .process-grid,
  .service-mini-grid,
  .metric-grid { grid-template-columns: 1fr; }
  .main-footer { justify-content: flex-start; }
}

@media (max-width: 767.98px) {
  .main-header { padding: 14px 0; }
  .header-wrap { padding: 8px 12px; }
  .hero-title,
  .section-intro h2,
  .service-left-card h2 { letter-spacing: -0.04em; }
  .hero-card { width: calc(100% - 24px); left: 12px !important; right: 12px !important; }
  .hero-card-a { top: 18px; }
  .hero-card-b { bottom: 118px; }
  .hero-card-c { bottom: 20px; }
  .floating-badge { display: none; }
  .hero-visual {min-height: 360px;border-radius: 0px !important;}
  .service-overlay-grid { padding: 14px; }
  .contact-form-card { margin-top: 4px; }
}

.hero-title{
  font-weight: 400;
}

.hero-metin{
  color: white;
  opacity: 70%;
  margin-bottom: 30px;
}

.hero-copy{
  padding-right: 130px;
  position: relative;
  top: -80px;
}

.desktop-nav a{
  color: white;
  text-transform: uppercase;
  font-weight: 300;
}

.header-actions{
  display: none !important;
}

.topbar{
  background: var(--primary);
  width: 100%;
  height: 50px;
  position: absolute;
  z-index: 11111111111111;
  top: 0;
  display: flex;
  align-items: center;
}

.topbar a{
  color: white;
  font-size: 14px;
  font-weight: 300;
}

.axtea2{
      position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    width: 70%;
}

.prz1{
  position: relative;
  z-index: 1;
}

/* ===== REDESIGNED SECTIONS ===== */
.redesigned-section {
  background: white;
}

.redesigned-section:nth-of-type(even) {
  background: linear-gradient(180deg, #ffffff 0%, #f8f3e9 100%);
}

.ax-overview-list,
.ax-corporate-card {
  display: grid;
  gap: 16px;
}

.ax-overview-item,
.ax-corporate-line,
.ax-mini-panel,
.ax-badge-card,
.ax-reference-note,
.ax-contact-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(3, 139, 79, 0.1);
  box-shadow: 0 20px 40px rgba(14, 42, 31, 0.06);
  backdrop-filter: blur(12px);
}

.ax-overview-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
}

.ax-overview-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e3e6ff;
  color: var(--primary);
  font-size: 1.2rem;
  flex: 0 0 54px;
}

.ax-overview-item strong,
.ax-corporate-line strong,
.ax-mini-panel strong,
.ax-badge-card strong,
.ax-reference-note strong,
.ax-contact-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.ax-overview-item p,
.ax-corporate-line p,
.ax-mini-panel p,
.ax-reference-note p {
  margin: 0;
  color: var(--muted);
}

.ax-overview-visual {
  position: relative;
  min-height: auto;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 20px 0px 80px rgba(18, 46, 34, .16);
}

.ax-overview-visual img,
.ax-map-showcase img,
.ax-industry-media img,
.ax-reference-card img,
.ax-service-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ax-floating-stat {
  position: absolute;
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 18px 50px rgba(16, 34, 25, .14);
  backdrop-filter: blur(12px);
}

.ax-floating-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--ink);
}

.ax-floating-stat span {
  color: var(--muted);
  font-size: .95rem;
}

.stat-a { top: 26px; left: 26px; }
.stat-b { right: 26px; top: 46%; transform: translateY(-50%); }
.stat-c { left: 42px; bottom: 28px; }

.ax-home-marquee {
  margin-top: 34px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(3,139,79,.12);
  background: rgba(255,255,255,.75);
}

.ax-marquee-track {
  display: flex;
  gap: 18px;
  padding: 16px 18px;
  width: max-content;
  animation: axMarquee 28s linear infinite;
}

.ax-marquee-track span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #e3e6ff;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes axMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ax-corporate-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ax-badge-card {
  padding: 18px;
  border-radius: 24px;
}

.ax-badge-card small,
.ax-contact-card small {
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--primary);
  font-weight: 800;
}

.ax-map-showcase {
  position: relative;
  display: block;
  height: 100%;
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(18, 46, 34, .12);
}

.ax-map-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(11, 21, 23, .42);
  color: #fff;
  backdrop-filter: blur(12px);
}

.ax-map-overlay strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 8px;
}

.ax-corporate-card {
  height: 100%;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,243,233,.9));
  border: 1px solid rgba(3,139,79,.12);
}

.ax-corporate-line {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
}

.ax-corporate-line span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  flex: 0 0 46px;
}

.ax-industry-swiper {
  overflow: hidden !important;
}

.ax-industry-card {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(3,139,79,.1);
  box-shadow: 0 24px 60px rgba(14, 42, 31, 0.08);
}

.ax-industry-media {
  height: 240px;
  overflow: hidden;
}

.ax-industry-copy {
  padding: 22px;
}

.ax-industry-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.ax-industry-copy h3,
.ax-service-card h3,
.ax-contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.ax-industry-copy p,
.ax-service-card p {
  color: var(--muted);
  margin: 0;
}

.ax-mini-panel {
  height: 100%;
  padding: 20px;
  border-radius: 24px;
}

.ax-reference-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .6fr;
  gap: 22px;
  align-items: stretch;
}

.ax-reference-stack {
  display: grid;
  gap: 22px;
}

.ax-reference-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  /* min-height: 280px; */
  box-shadow: 0 24px 70px rgba(14, 42, 31, .12);
}

.ax-reference-card::after,
.ax-service-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 15%, rgba(7,17,13,.72) 100%);
}

.ref-large {
  /* min-height: 580px; */
}

.ax-reference-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}

.ax-reference-copy h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 800;
  margin: 10px 0 0;
}

.ax-reference-copy.small h3 {
  font-size: 1.1rem;
}

.ax-reference-side {
  display: grid;
  gap: 22px;
}

.ax-reference-note {
  padding: 24px;
  border-radius: 28px;
}

.ax-reference-stats {
  display: grid;
  gap: 16px;
}

.ax-reference-stats div {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, #0d2217, #173525);
  color: #fff;
  box-shadow: 0 20px 60px rgba(12, 29, 21, .2);
}

.ax-reference-stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.ax-reference-stats span {
  color: rgba(255,255,255,.72);
}

.ax-services-panel {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
}

.ax-services-panel h2,
.ax-services-panel p {
  color: #fff;
}

.section-services.redesigned-section {
  background: linear-gradient(135deg, #071a10 0%, #10311f 70%, #163f2a 100%);
}

.ax-service-showcase {
  position: relative;
  min-height: auto;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}

.ax-service-grid {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ax-service-card {
  padding: 22px;
  border-radius: 24px;
  background: rgb(61 68 161 / 21%);
  backdrop-filter: blur(1px);
  transition: ease .3s;
}

.ax-service-card:hover{
  background: var(--ink);
  transform: scale(1.07);
}

.ax-service-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-block;
}

.ax-contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  grid-template-columns: 1fr 1fr 1fr;
}

.ax-contact-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgb(0 0 0 / 12%);
  border-color: rgba(255,255,255,.12);
}

.ax-contact-card strong,
.ax-contact-card span {
  color: #fff;
}

.ax-contact-card span {
  opacity: .78;
}

.ax-contact-form-card {
  padding: 28px;
  border-radius: 30px;
  /* background: rgba(255,255,255,.92); */
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 24px 80px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
}

.ax-footer-redesign {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  justify-content: center;
}

@media (max-width: 1399px) {
  .ax-reference-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ax-reference-side {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .ax-overview-visual,
  .ax-map-showcase,
  .ax-service-showcase {
    min-height: 460px;
  }

  .ax-corporate-badges,
  .ax-reference-grid,
  .ax-service-grid {
    grid-template-columns: 1fr;
  }

  .ax-reference-side {
    grid-template-columns: 1fr;
  }

  .stat-b {
    top: auto;
    right: 20px;
    bottom: 20px;
    transform: none;
  }
}

@media (max-width: 767px) {
  .ax-overview-visual,
  .ax-map-showcase,
  .ref-large,
  .ax-service-showcase {
    min-height: 750px;
  }

  .ax-overview-visual,
  .ax-map-showcase,
  .ax-reference-card,
  .ax-service-showcase,
  .ax-contact-form-card,
  .ax-services-panel {
    border-radius: 24px;
  }

  .ax-floating-stat {
    min-width: 132px;
    padding: 12px 14px;
  }

  .stat-a { top: 16px; left: 16px; }
  .stat-b { right: 16px; bottom: 16px; }
  .stat-c { left: 16px; bottom: 16px; }

  .ax-service-grid {
    inset: auto 14px 14px 14px;
  }

  .ax-services-panel,
  .ax-contact-form-card {
    padding: 22px;
  }

  .ax-marquee-track span {
    padding: 8px 14px;
    font-size: .85rem;
  }
}

.bg-white{
  background: white !important;
}

.sec-bg{
  background: #e3e6ff !important;
}

.bg-pr{
  background: var(--primary) !important;
}

.text-sec{
  color: #e3e6ff !important;
}

/* ===== BLOG / KEŞFET ALANI ===== */
#services {
  background:
    radial-gradient(circle at top right, rgba(83, 93, 220, 0.10), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%) !important;
}

.ax-blog-wrap {
  width: 100%;
}

.ax-blog-topnote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(83, 93, 220, .10);
  box-shadow: 0 24px 80px rgba(18, 28, 58, .08);
  backdrop-filter: blur(12px);
}

.ax-blog-topnote-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(83, 93, 220, .12), rgba(83, 93, 220, .22));
  color: var(--primary);
  font-size: 1.25rem;
}

.ax-blog-topnote strong {
  display: block;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.ax-blog-topnote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ax-blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.ax-blog-filter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(83, 93, 220, .10);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: 0 12px 30px rgba(18, 28, 58, .05);
}

.ax-blog-filter a:hover,
.ax-blog-filter a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.ax-blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ax-blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(83, 93, 220, .10);
  box-shadow: 0 24px 80px rgba(18, 28, 58, .08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  height: 100%;
}

.ax-blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(83, 93, 220, .22);
  box-shadow: 0 28px 90px rgba(18, 28, 58, .14);
}

.ax-blog-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.ax-blog-media.small {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.ax-blog-media.small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 35%, rgba(15,18,39,.08) 100%);
}

.ax-blog-media.small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.ax-blog-card:hover .ax-blog-media.small img {
  transform: scale(1.06);
}

.ax-blog-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.ax-blog-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(83, 93, 220, .08);
  color: var(--primary);
  margin-bottom: 14px;
}

.ax-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.ax-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  color: var(--muted);
}

.ax-blog-content h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 10px;
  transition: color .3s ease;
}

.ax-blog-card:hover .ax-blog-content h3 {
  color: var(--primary);
}

.ax-blog-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.ax-blog-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--primary);
  font-weight: 700;
  font-size: .95rem;
}

@media (max-width: 1199.98px) {
  .ax-blog-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ax-blog-grid-3 {
    grid-template-columns: 1fr;
  }

  .ax-blog-topnote {
    padding: 18px;
    border-radius: 22px;
  }

  .ax-blog-card {
    border-radius: 22px;
  }

  .ax-blog-content {
    padding: 18px;
  }

  .ax-blog-media.small {
    min-height: 220px;
  }
}

@media screen and (max-width: 768px){
  .topbar{
    display: none !important;
  }

  .header-actions{
    display: block !important;
  }

  .main-header.scrolled .header-wrap {
    padding: 0px 20px !important;
  }

  .hero-copy {
    padding-right: 0px;
    top: 0px;
    text-align: center;
  }

  .hero-metin {
    margin-bottom: 0px;
  }

  .axtea2 {
    width: 100%;
  }

  .ax-overview-visual img, .ax-map-showcase img, .ax-industry-media img, .ax-reference-card img, .ax-service-bg {
    height: 750px;
  }

  .ax-contact-cards {
    grid-template-columns: 1fr;
}

.ax-industry-media img{
  height: 100% !important;
}

.kurumsalpanel img{
  height: 100% !important;
}

.kurumsalpanel{
  min-height: auto !important;
}

.ax-reference-card img{
  height: 100% !important;
}
}