

:root {
  /* Kurumsal kimlik - slate (kömür-mavi) tonları */
  --navy: #34495E;
  --navy-dark: #2C3E50;
  --navy-darker: #233240;
  --navy-deep: #1A252F;
  --accent-blue: #5D7A96;
  --accent-blue-light: #8FA5BD;
  --accent-pink: #B88DB8;
  --accent-pink-light: #CAABCC;
  --white: #FFFEFE;
  --off-white: #F4F6FA;
  --gray-100: #EAEEF4;
  --gray-200: #D4DAE4;
  --gray-300: #AEB7C7;
  --gray-400: #7885A0;
  --gray-500: #4A5570;
  --gray-700: #272D40;
  --gray-900: #101425;
  --black: #06070F;

  --primary: var(--navy);
  --primary-dark: var(--navy-dark);
  --text: var(--gray-900);
  --text-muted: var(--gray-500);
  --text-soft: var(--gray-400);
  --border: var(--gray-200);
  --wa-green: #25D366;

  --shadow-xs: 0 1px 2px rgba(10,31,143,0.06);
  --shadow-sm: 0 2px 8px rgba(10,31,143,0.08);
  --shadow-md: 0 10px 32px rgba(10,31,143,0.12);
  --shadow-lg: 0 24px 64px rgba(10,31,143,0.16);

  --font-display: 'Archivo', 'Helvetica Neue', system-ui, sans-serif;
  --font: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-serif: 'IBM Plex Serif', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.wide { max-width: 1480px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }
img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.028em;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.018em;
}
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin-bottom: 14px; color: var(--text-muted); line-height: 1.7; }

/* ========= UTILITY CLASSES ========= */
.mono {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--navy);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--navy);
}

/* ========= TOPBAR ========= */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-left span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-left span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 50%;
}
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar-right a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-right a:hover { color: var(--accent-blue); }

/* ========= HEADER ========= */
.header {
  background: var(--white);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
}
.logo:hover .logo-mark {
  background: var(--navy-dark);
}
.logo-mark svg {
  width: 28px;
  height: 28px;
  fill: white;
  position: relative;
  z-index: 1;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  letter-spacing: -0.025em;
}
.logo-text small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.005em;
  transition: all 0.2s;
  display: block;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a.active { color: var(--navy); }

.header-cta { display: flex; gap: 10px; align-items: center; }
.mobile-toggle {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 11px 16px;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 700;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,0,.2,1);
  border: 1.5px solid transparent;
  text-align: center;
  letter-spacing: -0.005em;
  font-family: var(--font);
  position: relative;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(13,31,229,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-whatsapp { background: var(--wa-green); color: white; border-color: var(--wa-green); }
.btn-whatsapp:hover { background: #1ea952; color: white; border-color: #1ea952; }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gray-100); color: var(--navy-dark); }
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ========= HERO - Swiss Corporate Grid ========= */
.hero-ez {
  padding: 40px 0 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-ez-issue {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-ez-issue strong {
  color: var(--navy);
  font-weight: 700;
}

.hero-ez-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  padding: 60px 0 80px;
  align-items: end;
}

.hero-ez-left h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}
.hero-ez-left h1 .underline-blue {
  display: inline-block;
  position: relative;
  color: var(--navy);
}
.hero-ez-left h1 .slash {
  color: var(--navy);
  font-weight: 400;
  font-family: var(--font-serif);
  font-style: italic;
}

.hero-ez-lead {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-ez-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-ez-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 640px;
}
.hero-ez-trust-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.hero-ez-trust-item .lbl {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Right side container */
.hero-ez-right {
  position: relative;
}
/* ========= HERO RIGHT - TRUST BADGES (üstteki boş alanı doldurur) ========= */
.hero-ez-trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-ez-trust-badge {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-left: 3px solid var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.hero-ez-trust-badge:hover {
  border-left-color: var(--accent-blue);
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
}
.trust-badge-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 2px;
  flex-shrink: 0;
}
.trust-badge-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trust-badge-content strong {
  font-family: var(--font-display, var(--font));
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.trust-badge-content span {
  font-family: var(--font-mono, var(--font));
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  font-weight: 600;
}

/* ========= HERO RIGHT - HIGHLIGHTS CARD ========= */
.hero-ez-highlights {
  background: var(--navy);
  color: var(--white);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-ez-highlights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
  pointer-events: none;
}
.hero-ez-highlights-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-blue-light);
  margin-bottom: 24px;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.hero-ez-highlight-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: var(--white);
  transition: all 0.22s;
  position: relative;
}
.hero-ez-highlight-item:last-of-type { border-bottom: none; }
.hero-ez-highlight-item:hover {
  padding-left: 6px;
  color: var(--white);
}
.hero-ez-highlight-item:hover .hi-arrow { transform: translateX(4px); }
.hero-ez-highlight-item .hi-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--accent-blue-light);
  font-weight: 600;
  opacity: 0.85;
}
.hero-ez-highlight-item .hi-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 3px;
  color: var(--white);
}
.hero-ez-highlight-item .hi-body span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}
.hero-ez-highlight-item .hi-arrow {
  color: var(--accent-blue-light);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.22s;
}
.hero-ez-highlights-footer {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-ez-highlights-footer .hef-lbl {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--accent-blue-light);
  font-weight: 600;
}
.hero-ez-highlights-footer .hef-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.hero-ez-highlights-footer .hef-num:hover { color: var(--accent-blue-light); }

/* ========= SCROLL TICKER ========= */
.ez-ticker {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  border-top: 3px solid var(--accent-blue);
}
.ez-ticker-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickLeft 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ez-ticker-inner span::after {
  content: '◆';
  color: var(--accent-blue);
  margin-left: 60px;
  font-size: 0.7rem;
  vertical-align: middle;
}
@keyframes tickLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========= SECTIONS ========= */
section {
  padding: 100px 0;
  position: relative;
}
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.78); }
.bg-gray { background: var(--gray-100); }
.bg-off { background: var(--off-white); }
.bg-black { background: var(--black); color: var(--white); }

.section-head {
  margin-bottom: 70px;
  max-width: 720px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: none;
  align-items: end;
}
.section-head.split.start { align-items: start; }
.section-head h2 { margin-bottom: 20px; }
.section-head p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.section-head .eyebrow { margin-bottom: 22px; }

.section-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--navy);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ========= SERVICES - Swiss Grid ========= */
.services-ez {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-ez {
  background: var(--white);
  padding: 36px 32px;
  grid-column: span 4;
  transition: all 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.service-ez:hover {
  background: var(--navy);
  color: var(--white);
}
.service-ez:hover h3 { color: var(--white); }
.service-ez:hover p { color: rgba(255,255,255,0.82); }
.service-ez:hover .service-ez-num { color: var(--accent-blue); }
.service-ez:hover .service-ez-arrow { border-color: var(--accent-blue); color: var(--white); }

.service-ez-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.service-ez h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.15;
}
.service-ez p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-ez-arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  align-self: flex-start;
  transition: all 0.2s;
  text-decoration: none;
}
.service-ez:hover .service-ez-arrow { transform: rotate(-45deg); }

/* Featured service - span 6 */
.service-ez.feat {
  grid-column: span 6;
  background: var(--navy);
  color: var(--white);
  min-height: 320px;
}
.service-ez.feat h3 { color: var(--white); font-size: 1.9rem; }
.service-ez.feat p { color: rgba(255,255,255,0.82); font-size: 1rem; }
.service-ez.feat .service-ez-num { color: var(--accent-blue); }
.service-ez.feat .service-ez-arrow { border-color: var(--accent-blue); color: var(--white); }
.service-ez.feat:hover { background: var(--navy-dark); }

/* Span 6 */
.service-ez.half { grid-column: span 6; }

/* ========= ABOUT - Editorial Split ========= */
.about-ez {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-ez-visual {
  position: sticky;
  top: 120px;
  aspect-ratio: 4/5;
  background: var(--navy);
  color: var(--white);
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.about-ez-visual::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 80%; height: 100%;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 60%);
  opacity: 0.3;
  pointer-events: none;
}
.about-ez-visual-top { position: relative; z-index: 1; }
.about-ez-visual-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 40px;
  font-weight: 600;
}
.about-ez-visual-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
}
.about-ez-visual-number em {
  color: var(--accent-blue);
  font-style: normal;
  font-weight: 300;
}
.about-ez-visual-bottom { position: relative; z-index: 1; }
.about-ez-visual-meta {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-ez-visual-meta .m-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
  display: block;
}
.about-ez-visual-meta .m-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.about-ez-content h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
}
.about-ez-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}
.about-ez-content strong { color: var(--navy); font-weight: 600; }

/* ========= STATS ========= */
.stats-ez {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-ez {
  padding: 50px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.stat-ez:last-child { border-right: none; }
.stat-ez .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.stat-ez .num em {
  color: var(--accent-blue);
  font-style: normal;
  font-weight: 400;
}
.stat-ez .lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.stat-ez .num-small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  display: block;
  font-weight: 500;
}

/* ========= FEATURES - Swiss Grid ========= */
.features-ez {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-ez {
  background: var(--white);
  padding: 36px 28px;
  transition: all 0.2s;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.feature-ez:hover { background: var(--off-white); }
.feature-ez .num {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 600;
}
.feature-ez h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.feature-ez p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

/* ========= PROCESS - Horizontal Timeline ========= */
.process-ez {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--border);
}
.process-ez::before {
  content: '';
  position: absolute;
  top: 38px; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  z-index: 0;
}
.process-step-ez {
  padding: 20px 24px 0;
  position: relative;
  z-index: 1;
  border-right: 1px solid var(--border);
}
.process-step-ez:last-child { border-right: none; }
.process-step-ez-marker {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.process-step-ez h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.process-step-ez p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.process-step-ez-num {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--accent-blue);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ========= REGIONS ========= */
.regions-ez {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.region-ez {
  background: var(--white);
  padding: 20px 24px;
  transition: all 0.2s;
  position: relative;
  cursor: default;
}
.region-ez:hover {
  background: var(--navy);
  color: var(--white);
}
.region-ez .r-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  font-weight: 600;
}
.region-ez:hover .r-num { color: var(--accent-blue); }
.region-ez .r-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.region-ez:hover .r-name { color: var(--white); }
.region-ez .r-sub {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 4px;
  display: block;
  font-weight: 500;
}
.region-ez:hover .r-sub { color: rgba(255,255,255,0.7); }
.region-ez.priority {
  background: var(--navy);
  color: var(--white);
}
.region-ez.priority .r-num { color: var(--accent-blue); }
.region-ez.priority .r-name { color: var(--white); }
.region-ez.priority .r-sub { color: rgba(255,255,255,0.7); }
.region-ez.priority:hover { background: var(--navy-dark); }

/* ========= TESTIMONIALS - Editorial ========= */
.testimonials-ez {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial-ez {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.testimonial-ez .stars {
  color: var(--navy);
  letter-spacing: 3px;
  font-size: 1.1rem;
}
.testimonial-ez blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.015em;
  flex-grow: 1;
}
.testimonial-ez cite {
  font-style: normal;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.testimonial-ez cite strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  font-size: 0.98rem;
}
.testimonial-ez cite small {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  font-weight: 500;
}
.testimonial-ez cite .ratenum {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ========= CTA ========= */
.cta-ez {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-ez::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 50%);
  opacity: 0.22;
  pointer-events: none;
}
.cta-ez-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-ez h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 26px;
  line-height: 1.05;
}
.cta-ez h2 em {
  font-style: normal;
  color: var(--accent-blue);
  font-weight: 400;
}
.cta-ez-lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 520px;
}
.cta-ez-phone {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}
.cta-ez-phone .lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 14px;
  display: block;
  font-weight: 600;
}
.cta-ez-phone .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.028em;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.cta-ez-phone .num:hover { color: var(--accent-blue); }
.cta-ez-phone .alt-num {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.cta-ez-phone .wa-btn {
  display: block;
  padding: 14px;
  background: var(--wa-green);
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.cta-ez-phone .wa-btn:hover { background: #1ea952; color: white; }

/* ========= FAQ ========= */
.faq-ez {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--text);
}
.faq-item-ez {
  border-bottom: 1px solid var(--border);
  transition: all 0.25s;
}
.faq-item-ez.open { background: var(--off-white); }
.faq-q-ez {
  padding: 30px 32px 30px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
.faq-q-ez:hover { padding-left: 16px; }
.faq-item-ez.open .faq-q-ez { padding-left: 24px; }
.faq-q-ez .q-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--navy);
  letter-spacing: 0.15em;
  margin-right: 20px;
  font-weight: 600;
  flex-shrink: 0;
}
.faq-q-ez .q-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.015em;
  flex-grow: 1;
}
.faq-toggle-ez {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.3s;
  flex-shrink: 0;
  background: var(--white);
}
.faq-item-ez.open .faq-toggle-ez {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: rotate(45deg);
}
.faq-a-ez {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 24px;
}
.faq-item-ez.open .faq-a-ez {
  max-height: 400px;
  padding-bottom: 28px;
}
.faq-a-ez p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
  padding-right: 80px;
}

/* ========= PAGE HEADER ========= */
.page-header-ez {
  padding: 90px 0 60px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: relative;
}
.page-header-ez h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  max-width: 900px;
  margin-top: 24px;
  line-height: 1.02;
}
.page-header-ez h1 em {
  font-style: normal;
  color: var(--navy);
  font-weight: 400;
  font-family: var(--font-serif);
  font-style: italic;
}
.page-header-ez .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.5;
  margin-top: 24px;
}
.breadcrumb-ez {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.breadcrumb-ez a { color: var(--navy); font-weight: 600; }
.breadcrumb-ez .sep { margin: 0 12px; color: var(--text-soft); }

/* ========= CONTENT ========= */
.content-section { padding: 100px 0; }
.content-ez {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.content-main-ez h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: 2rem;
}
.content-main-ez h2 em {
  font-style: normal;
  color: var(--navy);
  font-weight: 400;
  font-family: var(--font-serif);
  font-style: italic;
}
.content-main-ez h2:first-child { margin-top: 0; }
.content-main-ez p {
  color: var(--text);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 18px;
}
.content-main-ez ul, .content-main-ez ol {
  margin: 18px 0 26px 24px;
  color: var(--text);
}
.content-main-ez li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.content-main-ez li::marker { color: var(--navy); }
.content-main-ez blockquote {
  border-left: 3px solid var(--navy);
  padding: 10px 0 10px 28px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.02em;
}
.content-main-ez strong { color: var(--navy); font-weight: 600; }

.sidebar-ez {
  background: var(--gray-100);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: sticky;
  top: 110px;
  border: 1px solid var(--border);
}
.sidebar-ez:not(:first-of-type) { position: static; }
.sidebar-ez h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-ez h3 em {
  font-style: normal;
  color: var(--navy);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.sidebar-ez ul { list-style: none; }
.sidebar-ez ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-ez ul li:last-child { border: none; }
.sidebar-ez ul a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.93rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.sidebar-ez ul a::after {
  content: '→';
  color: var(--navy);
  opacity: 0;
  transition: all 0.2s;
}
.sidebar-ez ul a:hover { color: var(--navy); padding-left: 4px; }
.sidebar-ez ul a:hover::after { opacity: 1; }

/* ========= CONTACT ========= */
.contact-ez {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-grid-ez {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.contact-card-ez {
  padding: 26px 30px;
  background: var(--white);
  transition: all 0.2s;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
}
.contact-card-ez:hover {
  background: var(--navy);
  color: var(--white);
}
.contact-card-ez:hover .info .label { color: var(--accent-blue); }
.contact-card-ez:hover .info a,
.contact-card-ez:hover .info span.val { color: var(--white); }
.contact-card-ez:hover .contact-card-icon-ez {
  background: var(--accent-blue);
  color: var(--navy);
}
.contact-card-icon-ez {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.contact-card-ez .info .label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
  font-weight: 500;
}
.contact-card-ez .info a,
.contact-card-ez .info span.val {
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
}
.contact-card-ez .info a:hover { color: var(--navy); }

.quote-form-ez {
  background: var(--navy);
  color: var(--white);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.quote-form-ez::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 60%);
  opacity: 0.2;
  pointer-events: none;
}
.quote-form-ez h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
  position: relative;
}
.quote-form-ez h3 em {
  color: var(--accent-blue);
  font-style: normal;
  font-weight: 400;
}
.quote-form-ez > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  position: relative;
  font-size: 0.95rem;
}
.quote-form-ez .form-group {
  margin-bottom: 16px;
  position: relative;
}
.quote-form-ez label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  font-weight: 600;
}
.quote-form-ez input,
.quote-form-ez textarea,
.quote-form-ez select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.quote-form-ez input:focus,
.quote-form-ez textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255,255,255,0.1);
}
.quote-form-ez input::placeholder,
.quote-form-ez textarea::placeholder { color: rgba(255,255,255,0.4); }
.quote-form-ez button {
  width: 100%;
  margin-top: 14px;
  background: var(--accent-blue);
  color: var(--navy-dark);
  border: none;
  font-weight: 700;
  position: relative;
}
.quote-form-ez button:hover { background: var(--white); }

/* ========= GALLERY ========= */
.gallery-filters-ez {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin-bottom: 50px;
  padding: 16px 0;
  border-top: 2px solid var(--text);
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  letter-spacing: -0.005em;
  transition: all 0.2s;
  position: relative;
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--navy);
}
.filter-btn.active::after { transform: scaleX(1); }

.gallery-ez {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 3/4;
  background: var(--gray-100);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}
.gallery-item:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-item:nth-child(5n) { aspect-ratio: 1; }
.gallery-item:hover { transform: translateY(-2px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--accent-blue-light) 100%);
  padding: 30px;
}
.gallery-item.placeholder .ph-ic {
  font-size: 2.6rem;
  margin-bottom: 14px;
  color: var(--navy);
  opacity: 0.7;
}
.gallery-item.placeholder p {
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0;
  text-align: center;
  letter-spacing: -0.015em;
}

/* ========= BLOG ========= */
.blog-grid-ez {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}
.blog-card-ez {
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card-ez-image {
  aspect-ratio: 5/3;
  background: var(--navy);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--accent-blue);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--border);
}
.blog-card-ez:nth-child(3n+2) .blog-card-ez-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-darker) 100%);
}
.blog-card-ez:nth-child(3n+3) .blog-card-ez-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent-pink) 100%);
}
.blog-card-ez:hover .blog-card-ez-image { transform: scale(1.01); }
.blog-card-ez-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-card-ez h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
.blog-card-ez h3 a { color: var(--text); }
.blog-card-ez h3 a:hover { color: var(--navy); }
.blog-card-ez p {
  font-size: 0.94rem;
  margin-bottom: 16px;
  flex-grow: 1;
  color: var(--text-muted);
  line-height: 1.55;
}
.blog-meta-ez {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.blog-meta-ez .read-link {
  color: var(--navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.blog-meta-ez .read-link:hover { gap: 10px; }

/* Post */
.post-hero-ez {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.post-hero-ez h1 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 880px;
}
.post-hero-ez h1 em {
  color: var(--navy);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.post-meta-ez {
  display: flex;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-wrap: wrap;
  font-weight: 500;
}

.post-content-ez {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 32px;
}
.post-content-ez h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 1.95rem;
}
.post-content-ez h2 em {
  color: var(--navy);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.post-content-ez h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.post-content-ez p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.post-content-ez ul, .post-content-ez ol {
  margin: 20px 0 28px 28px;
}
.post-content-ez li {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 1.04rem;
}
.post-content-ez li::marker { color: var(--navy); }
.post-content-ez blockquote {
  border-left: 3px solid var(--navy);
  padding: 10px 0 10px 32px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.02em;
}
.post-content-ez strong { color: var(--navy); font-weight: 600; }

/* ========= FOOTER ========= */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 90px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
}
.footer-grid-ez {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 70px;
}
.footer-brand-ez .logo-text strong { color: white; }
.footer-brand-ez p {
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
  line-height: 1.7;
  font-size: 0.94rem;
  max-width: 400px;
}
.footer-contact-ez {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-contact-ez .label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}
.footer-contact-ez p {
  color: var(--accent-blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.footer h4 {
  color: white;
  margin-bottom: 22px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer h4 em {
  color: var(--navy);
  font-style: normal;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer ul a:hover {
  color: var(--accent-blue);
  padding-left: 4px;
}
.footer-bottom-ez {
  padding: 26px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.footer-bottom-ez a { color: var(--accent-blue); }



/* ========= MOBILE BAR ========= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px;
  z-index: 998;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.mobile-call-bar a {
  flex: 1;
  padding: 13px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
}
.mobile-call-bar .wa { background: var(--wa-green); color: white; }
.mobile-call-bar .ph { background: var(--navy); color: white; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1100px) {
  .hero-ez-main { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-ez-left { max-width: 760px; margin: 0 auto; }
  .hero-ez-right { max-width: 560px; margin: 0 auto; text-align: left; }
  .hero-ez-cta { justify-content: center; }
  .hero-ez-trust { margin-left: auto; margin-right: auto; }
  .eyebrow { justify-content: center; }
  .hero-ez-lead { margin-left: auto; margin-right: auto; }
  .about-ez { grid-template-columns: 1fr; gap: 60px; }
  .about-ez-visual { position: static; max-width: 520px; margin: 0 auto; }
  .section-head.split { grid-template-columns: 1fr; gap: 30px; }
  .service-ez { grid-column: span 6; min-height: 300px; }
  .service-ez.feat { grid-column: span 12; }
  .features-ez { grid-template-columns: repeat(2, 1fr); }
  .process-ez { grid-template-columns: 1fr; }
  .process-ez::before {
    top: 0; bottom: 0; left: 18px; right: auto;
    width: 2px; height: auto;
  }
  .process-step-ez { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 32px 24px 60px; }
  .process-step-ez:last-child { border-bottom: none; }
  .process-step-ez-marker { position: absolute; top: 24px; left: 0; margin: 0; }
  .cta-ez-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .cta-ez-inner > div:first-child > div[style*="display:flex"] { justify-content: center !important; }
  .cta-ez-lead { margin-left: auto; margin-right: auto; }
  .contact-ez { grid-template-columns: 1fr; gap: 50px; }
  .content-ez { grid-template-columns: 1fr; gap: 60px; }
  .sidebar-ez { position: static; }
  .testimonials-ez { grid-template-columns: 1fr; }
  .stats-ez { grid-template-columns: repeat(2, 1fr); }
  .stat-ez { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-ez:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15) !important; }
}

@media (max-width: 900px) {
  .container, .wide, .narrow { padding: 0 20px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .main-nav a {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }
  .main-nav a::after { display: none; }
  .mobile-toggle { display: block; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .header-cta { justify-content: flex-end; }
  .header-cta .btn-primary { display: none; }
  .topbar-left { display: none; }
  .mobile-call-bar { display: flex; }
  section { padding: 70px 0; }
  .hero-ez { padding: 30px 0 0; }
  .hero-ez-main { padding: 40px 0 60px; }
  .hero-ez-issue { font-size: 0.62rem; }
  .services-ez { grid-template-columns: 1fr; }
  .service-ez { grid-column: span 1 !important; min-height: auto; }
  .features-ez { grid-template-columns: 1fr; }
  .footer-grid-ez { grid-template-columns: 1fr 1fr; gap: 40px; }
  .regions-ez { grid-template-columns: repeat(2, 1fr); }
  .faq-q-ez { padding: 22px 16px 22px 0; }
  .faq-q-ez .q-num { display: none; }
  .faq-a-ez p { padding-right: 0; }
  .stats-ez { grid-template-columns: 1fr; }
  .stat-ez { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .hero-ez-trust { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  /* Mobile - tüm CTA butonları ortalanmış */
  .hero-ez-cta,
  .cta-ez-inner > div > div[style*="display:flex"],
  .post-content-ez > div[style*="display:flex"] {
    justify-content: center !important;
    flex-wrap: wrap;
  }
  .hero-ez-cta .btn,
  .cta-ez-inner .btn {
    flex: 1 1 auto;
    min-width: 160px;
    max-width: 100%;
  }
  .section-head { text-align: center; margin-left: auto; margin-right: auto; }
  .section-head .eyebrow { justify-content: center; }
  .section-number { text-align: center; }

  /* Sayfa içi inline buton grupları (alt sayfalar) */
  div[style*="display:flex"][style*="gap:10px"],
  div[style*="display:flex"][style*="gap:12px"],
  div[style*="display:flex"][style*="gap:14px"] {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 600px) {
  .footer-grid-ez { grid-template-columns: 1fr; }
  .quote-form-ez { padding: 32px 24px; }
  .hero-ez-trust { grid-template-columns: 1fr; }
  .contact-card-ez { grid-template-columns: 48px 1fr; gap: 16px; padding: 20px; }
  .contact-card-ez .info a { font-size: 1rem; }
  .hero-ez-highlights { padding: 28px 22px; }
  .hero-ez-highlight-item { gap: 12px; padding: 14px 0; }
  .hero-ez-highlight-item .hi-body strong { font-size: 0.98rem; }
  .hero-ez-highlight-item .hi-body span { font-size: 0.78rem; }
  .hero-ez-highlights-footer .hef-num { font-size: 1.15rem; }
}

/* ========= MOBILE UX FIX v2 (from previous sites) ========= */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-toggle.open-state { background: var(--text) !important; }

@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }
  .header { position: relative; z-index: 999; }
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: white;
    padding: 90px 24px 40px !important;
    z-index: 9998;
    overflow-y: auto;
    box-shadow: none !important;
    border-bottom: none !important;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: block !important;
    visibility: hidden;
  }
  .main-nav.open {
    transform: translateY(0);
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column !important;
    gap: 4px !important;
    align-items: stretch !important;
    padding: 0 !important;
    list-style: none !important;
  }
  .main-nav a {
    padding: 16px 20px !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    font-size: 1.05rem !important;
    display: block !important;
  }
  .main-nav a::after,
  .main-nav a::before { display: none !important; }
  .mobile-nav-close {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
    background: #34495E !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 1.6rem !important;
    cursor: pointer !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    z-index: 10000 !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
    padding: 0 !important;
    text-align: center !important;
  }
  .main-nav.open .mobile-nav-close,
  body.nav-open .mobile-nav-close {
    display: inline-flex !important;
  }
  .mobile-toggle {
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    font-size: 1.4rem !important;
  }
  .header-cta {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
  }
  /* Mobilde header'daki telefon butonu KESİN gizli — topbar'daki kalıyor */
  .header-cta .btn-primary,
  .header-cta a[href^="tel:"],
  .header-cta .btn.btn-sm {
    display: none !important;
  }
  .mobile-call-bar {
    display: flex !important;
    align-items: center !important;
  }
  .mobile-call-bar a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    line-height: 1.2 !important;
    min-height: 48px;
  }
  .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    line-height: 1.2 !important;
  }
  .contact-card-icon-ez {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
  .topbar-right a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
}

/* ============================================================
   ERZINCAN MOBILE HOTFIX v4
   ============================================================ */
@media (max-width: 900px) {
  /* Body padding - mobile call bar footer'ı kapatmasın */
  body { padding-bottom: 76px; }

  /* Topbar right - taşma kontrolü */
  .topbar-right {
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
  }
  .topbar-right a {
    font-size: 0.78rem !important;
    white-space: nowrap;
  }

  /* Header scrolled mobilde kompakt */
  .header.scrolled {
    padding: 10px 0 !important;
  }

  /* Başlık taşmasını engelle */
  h1, h2, h3 {
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  body.nav-open .mobile-nav-close {
    display: inline-flex !important;
  }

  /* Hero EZ grid - mobilde tek kolon, kart yanyana sorunu */
  .hero-ez-main {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .hero-ez-left,
  .hero-ez-right {
    width: 100% !important;
  }

  /* Hero issue bar - mobilde alt alta */
  .hero-ez-issue {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 16px !important;
    font-size: 0.72rem !important;
  }

  /* Hero CTA butonları */
  .hero-ez-cta {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .hero-ez-cta .btn {
    flex: 1 1 auto !important;
    min-width: 140px !important;
  }

  /* Trust items - grid değil flex, wrapping */
  .hero-ez-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 16px !important;
  }
  .hero-ez-trust-item {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }
  .hero-ez-trust-item .num {
    font-size: 1.8rem !important;
  }
  .hero-ez-trust-item .lbl {
    font-size: 0.7rem !important;
  }

  /* Hero right highlights - mobil optimize */
  .hero-ez-highlights {
    padding: 24px 20px !important;
  }
  .hero-ez-highlight-item {
    padding: 14px 0 !important;
    gap: 14px !important;
  }
  .hero-ez-highlight-item .hi-num {
    font-size: 0.9rem !important;
    min-width: 32px !important;
  }
  .hero-ez-highlight-item strong {
    font-size: 0.95rem !important;
  }
  .hero-ez-highlight-item span:not(.hi-arrow):not(.hi-num) {
    font-size: 0.82rem !important;
  }

  /* H1 underline-blue ve slash - mobil friendly */
  .hero-ez-left h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 1.15 !important;
  }

  /* Ticker mobilde yavaşlasın, padding kompakt */
  .ez-ticker {
    padding: 12px 0 !important;
    font-size: 0.78rem !important;
  }
  .ez-ticker span {
    padding: 0 20px !important;
  }

  /* ========= MAHALLELER (regions) MOBİL - tam ortala ========= */
  .regions-ez {
    grid-template-columns: 1fr 1fr !important;
    gap: 1px !important;
  }
  .region-ez {
    padding: 18px 14px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 110px !important;
  }
  .region-ez .r-num {
    margin-bottom: 8px !important;
    text-align: center !important;
  }
  .region-ez .r-name {
    font-size: 1rem !important;
    text-align: center !important;
  }
  .region-ez .r-sub {
    text-align: center !important;
    margin-top: 6px !important;
  }

  /* Trust badges (hero right) mobil - ortalı */
  .hero-ez-trust-badge {
    padding: 14px 16px !important;
    gap: 12px !important;
  }
  .trust-badge-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.2rem !important;
  }
  .trust-badge-content strong {
    font-size: 0.92rem !important;
  }
  .trust-badge-content span {
    font-size: 0.6rem !important;
  }

  /* Testimonial kartları mobil - ortalı içerik */
  .testimonial-ez {
    text-align: center !important;
    padding: 24px 20px !important;
  }
  .testimonial-ez .stars,
  .testimonial-ez blockquote {
    text-align: center !important;
  }
  .testimonial-ez cite {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  /* Highlight items (hero right) mobil ortalı değil - sol hizalama daha doğru */
  .hero-ez-highlight-item {
    text-align: left !important;
  }

  /* Section head mobilde ortalı */
  .section-head,
  .section-head.split,
  .section-head.center {
    text-align: center !important;
  }
  .section-head.split {
    grid-template-columns: 1fr !important;
  }
  .section-head > div {
    text-align: center !important;
  }

  /* Tüm "num+label" bloklarını ortala */
  .stat-ez,
  .process-step-ez,
  .contact-card-ez {
    text-align: center !important;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 380px) {
  .mobile-call-bar {
    padding: 9px 6px !important;
    gap: 6px !important;
  }
  .mobile-call-bar a {
    font-size: 0.78rem !important;
    padding: 11px 4px !important;
    letter-spacing: 0 !important;
  }

  .hero-ez-cta {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero-ez-cta .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero-ez-trust {
    grid-template-columns: 1fr 1fr !important;
  }
  .hero-ez-trust-item:last-child {
    grid-column: 1 / span 2 !important;
  }

  .logo-mark, .logo-ez-mark {
    width: 40px !important;
    height: 40px !important;
  }

  .mobile-toggle {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  .container, .wide, .narrow { padding: 0 14px !important; }

  .hero-ez-issue span { font-size: 0.68rem !important; }

  /* Mahalleler çok küçük ekranda tek kolon */
  .regions-ez {
    grid-template-columns: 1fr !important;
  }
  .region-ez {
    min-height: 90px !important;
    padding: 16px 12px !important;
  }
}
/* ============================================================
   /ERZINCAN MOBILE HOTFIX v4
   ============================================================ */

/* Close button default GİZLİ - tüm sitelerde global güvence */
.mobile-nav-close {
  display: none !important;
}
@media (max-width: 900px) {
  .main-nav.open .mobile-nav-close,
  body.nav-open .mobile-nav-close {
    display: inline-flex !important;
  }
}
