/* Kapıda Kurye - Profesyonel Kurumsal Website */
:root {
  --primary: #e85d04;
  --primary-dark: #c44d03;
  --secondary: #0d1b2a;
  --accent: #ffb703;
  --text: #0f172a;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(13, 27, 42, 0.14);
  --radius: 14px;
  --radius-lg: 24px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: clip;
  width: 100%;
}

* { -webkit-tap-highlight-color: rgba(232, 93, 4, 0.15); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition);
  padding-top: env(safe-area-inset-top, 0);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.logo__img {
  display: block;
  object-fit: contain;
}

/* Header logo – tam görünür, orantılı */
.header .logo {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
}

.header .logo:hover {
  opacity: 0.9;
}

.header .logo__img {
  height: 62px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
}

/* Footer logo */
.footer .logo {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.footer .logo__img {
  height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}

.logo__text {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo__icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: #fff;
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(232, 93, 4, 0.25);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.35);
  color: white;
}

.btn--outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--white {
  background: white;
  color: var(--primary);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}

.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* Hero */
.hero {
  padding: 160px 0 88px;
  background: var(--secondary);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero__bg-photos {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(32px);
  transform: scale(1.15);
  opacity: 0.4;
}

.hero__bg-photo--sign {
  width: 58%;
  height: 75%;
  right: -8%;
  top: 5%;
  background-image: url('/images/mockup-sign.png');
}

.hero__bg-photo--helmet {
  width: 42%;
  height: 55%;
  right: 12%;
  bottom: -5%;
  background-image: url('/images/mockup-helmet.png');
  opacity: 0.28;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13, 27, 42, 0.94) 0%, rgba(13, 27, 42, 0.88) 45%, rgba(13, 27, 42, 0.72) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 93, 4, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255, 183, 3, 0.06) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.15);
}

.hero__title {
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  max-width: 12ch;
}

.hero__title span {
  color: var(--accent);
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}

.brand-name {
  color: var(--primary);
  font-weight: 800;
  text-transform: lowercase;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.hero-panel__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-panel__head .icon-box {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.hero-panel__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: none;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  width: auto;
  height: auto;
}

.hero-panel__logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.hero-panel__head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero__card-list { list-style: none; }

.hero__card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__card-list li:last-child { border-bottom: none; }

/* Sections */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.section__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(232, 93, 4, 0.2);
}

.service-card::before { display: none; }

.service-card__icon { display: none; }

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
}

.service-card__link:hover { gap: 0.55rem; }

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.service-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(232, 93, 4, 0.08);
  color: var(--primary);
  border: 1px solid rgba(232, 93, 4, 0.12);
}

.service-card__tag--corp {
  background: rgba(13, 27, 42, 0.06);
  color: var(--secondary);
  border-color: rgba(13, 27, 42, 0.1);
}

.service-card__tag--urgent {
  background: rgba(220, 38, 38, 0.06);
  color: #b91c1c;
  border-color: rgba(220, 38, 38, 0.12);
}

.services-category {
  margin-bottom: 3.5rem;
}

.services-category:last-child {
  margin-bottom: 0;
}

.services-category__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.services-category__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 27, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-category__icon .icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--secondary);
}

.services-category__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.15rem;
}

.services-category__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.corp-standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.corp-standard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.corp-standard:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
  transform: translateY(-3px);
}

.corp-standard .icon-box {
  margin: 0 auto 1.15rem;
}

.corp-standard__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.45rem;
}

.corp-standard__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.corp-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #1b2838 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
}

.corp-panel__content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.corp-panel__content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.corp-panel__list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.corp-panel__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.corp-panel__list .icon {
  color: var(--accent);
  flex-shrink: 0;
}

.corp-panel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.corp-panel__stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.35rem;
  text-align: center;
}

.corp-panel__stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.corp-panel__stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 80px;
  height: 80px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow);
}

.step__title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.feature-item:hover {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.feature-item .icon-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-item__icon {
  flex-shrink: 0;
}

.feature-item__icon .icon-box {
  margin-bottom: 0;
}

.feature-item__title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.feature-item__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
}

.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta__desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.cta__btn {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

.cta__phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 360px;
  margin: 0.75rem auto 0;
}

.cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.cta__phone:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand .logo { color: white; margin-bottom: 1rem; }

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__title {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer__links { list-style: none; }

.footer__links li { margin-bottom: 0.6rem; }

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--accent); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer__contact-item a { color: rgba(255, 255, 255, 0.7); }
.footer__contact-item a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer__credit {
  width: 100%;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer__credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__credit-link strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.footer__credit-link:hover,
.footer__credit-link:hover strong {
  color: var(--primary);
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 160px 0 60px;
  background: linear-gradient(160deg, var(--secondary) 0%, #1b2838 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .hero__bg-photos,
.page-hero .hero__bg-overlay {
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .hero__bg-photo--sign {
  width: 50%;
  right: -10%;
  top: 0;
  opacity: 0.3;
}

.page-hero .hero__bg-photo--helmet {
  width: 35%;
  left: -5%;
  right: auto;
  bottom: -10%;
  opacity: 0.22;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: white; }

/* Content blocks */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 2rem 0 1rem;
}

.content-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 1.5rem 0 0.75rem;
}

.content-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-block ul {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-muted);
}

.content-block li { margin-bottom: 0.5rem; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(255, 183, 3, 0.1));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.contact-info__text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info__text a { color: var(--primary); font-weight: 600; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  /* 16px: iOS odaklaninca otomatik yakinlastirmayi engeller */
  font-size: 16px;
  transition: border-color var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background: white;
}

.faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item__question:hover { color: var(--primary); }

.faq-item__icon {
  font-size: 1.25rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-item__answer { max-height: 300px; }

.faq-item__answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col__img {
  background: linear-gradient(135deg, var(--secondary), #243447);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: white;
}

.two-col__img h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.two-col__img ul {
  list-style: none;
  margin-top: 1.5rem;
}

.two-col__img li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 0));
  right: max(24px, env(safe-area-inset-right, 0));
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  line-height: 0;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* Courier careers */
.courier-careers {
  background: var(--bg-alt);
}

.courier-careers__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border-radius: 28px;
  overflow: hidden;
  background: var(--secondary);
  box-shadow: 0 24px 70px rgba(13, 27, 42, 0.16);
}

.courier-careers__content {
  position: relative;
  padding: 3.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 93, 4, 0.28), transparent 38%),
    linear-gradient(145deg, #0d1b2a 0%, #15283d 100%);
}

.courier-careers__content::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  left: -100px;
  bottom: -120px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.courier-careers__eyebrow,
.courier-application-form__step {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.courier-careers__content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.courier-careers__content > p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.courier-careers__benefits {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.courier-careers__benefit {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.courier-careers__benefit-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255, 183, 3, 0.1);
}

.courier-careers__benefit strong,
.courier-careers__benefit div > span {
  display: block;
}

.courier-careers__benefit strong {
  color: #fff;
  font-size: 0.93rem;
  margin-bottom: 0.1rem;
}

.courier-careers__benefit div > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.45;
}

.courier-careers__note {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.courier-careers__note .icon {
  color: #4ade80;
  margin-top: 0.15rem;
}

.courier-careers__note p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.courier-application-form {
  min-width: 0;
  padding: 3.5rem;
  background: #fff;
}

.courier-application-form__head {
  margin-bottom: 1.75rem;
}

.courier-application-form__step {
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.courier-application-form__head h3 {
  color: var(--secondary);
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.courier-application-form__head p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.courier-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1rem;
}

.courier-form-grid__full {
  grid-column: 1 / -1;
}

.courier-application-form .form-group {
  margin-bottom: 1rem;
}

.courier-application-form textarea {
  min-height: 96px;
}

.courier-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.25rem 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  cursor: pointer;
}

.courier-consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 16px;
  accent-color: var(--primary);
}

.courier-application-form__submit {
  width: 100%;
}

.form-status,
.courier-application-form__status {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.55;
}

.form-status:empty {
  margin-top: 0;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

.form-status.is-success,
.courier-application-form__status.is-success {
  color: #15803d;
}

.form-status.is-error,
.courier-application-form__status.is-error {
  color: #dc2626;
}

/* API'ye ulaşılamayıp başvuru WhatsApp'a aktarıldığında */
.form-status.is-info {
  color: #075e54;
  background: #e7f8ef;
  border: 1px solid #b7e4c7;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}


/* Body scroll lock when mobile menu open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Stats showcase */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.stat-box {
  background: white;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: none;
}

.stat-box__num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-box__num::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0.5rem auto 0.75rem;
}

.stat-box__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials-summary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.testimonials-summary__item {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.testimonials-summary__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
  transform: translateY(-3px);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #f59e0b;
}

.testimonial-card__stars .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.testimonial-card__stars .icon svg {
  fill: currentColor;
  stroke: none;
}

.testimonial-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(13, 27, 42, 0.06);
  color: var(--secondary);
  white-space: nowrap;
}

.testimonial-card__text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-card__avatar--1 { background: linear-gradient(135deg, #e85d04, #f97316); }
.testimonial-card__avatar--2 { background: linear-gradient(135deg, #0d1b2a, #334155); }
.testimonial-card__avatar--3 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.testimonial-card__avatar--4 { background: linear-gradient(135deg, #059669, #34d399); }
.testimonial-card__avatar--5 { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.testimonial-card__avatar--6 { background: linear-gradient(135deg, #b45309, #fbbf24); }

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--secondary);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.testimonial-card__meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  opacity: 0.85;
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.industry-chip {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.industry-chip:hover {
  border-color: rgba(232, 93, 4, 0.25);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transform: none;
}

.industry-chip__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  background: rgba(232, 93, 4, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
}

.industry-chip:hover .industry-chip__icon {
  background: var(--primary);
  color: #fff;
}

.industry-chip__icon .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.industry-chip__label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }

/* GEO / Service regions */
.geo-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.geo-region {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
}

.geo-region__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.geo-region__cities {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.geo-city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.geo-city-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

.geo-city-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.65rem;
}

.geo-city-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* CTA split */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cta-split__card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-split__card--corp {
  background: linear-gradient(135deg, var(--secondary), #1e3a5f);
}

.cta-split__card--indiv {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cta-split__card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.cta-split__card p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid,
  .two-col,
  .contact-grid { grid-template-columns: 1fr; min-width: 0; }

  .services-grid,
  .services-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .stats-showcase { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-split { grid-template-columns: 1fr; }
  .courier-careers__shell { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__list,
  .header .nav > .btn--primary { display: none; }

  .menu-toggle {
    display: flex;
    z-index: 1003;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .nav.mobile-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav.mobile-open .nav__list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(300px, 85vw);
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    background: #fff;
    padding: calc(5rem + env(safe-area-inset-top, 0)) 1.25rem calc(6rem + env(safe-area-inset-bottom, 0));
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    margin: 0;
    list-style: none;
  }

  .nav.mobile-open .nav__list li {
    padding: 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav.mobile-open .nav__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1.05rem;
    min-height: 48px;
    color: var(--text);
  }

  .nav.mobile-open .nav__link:hover,
  .nav.mobile-open .nav__link.active {
    color: var(--primary);
  }

  .nav.mobile-open .nav__link::after { display: none; }

  .nav.mobile-open .btn--primary {
    display: flex !important;
    position: fixed;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0));
    right: 1.25rem;
    left: auto;
    width: calc(min(300px, 85vw) - 2.5rem);
    margin-top: 0;
    min-height: 48px;
    font-size: 1rem;
    z-index: 1002;
  }

  html { scroll-padding-top: 96px; }

  .header__inner { height: 80px; }

  .header .logo__img {
    height: 50px;
    max-width: 240px;
  }

  .footer .logo__img {
    height: 58px;
    max-width: 220px;
  }

  .container { padding: 0 1rem; max-width: 100%; }

  .hero {
    padding: calc(110px + env(safe-area-inset-top, 0)) 0 48px;
    min-height: auto;
    overflow: hidden;
  }

  .hero__grid {
    gap: 2rem;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .hero__content,
  .hero__visual {
    min-width: 0;
    width: 100%;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    max-width: none;
  }

  .hero__desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: space-between;
  }

  .hero__stat-num { font-size: 1.5rem; }

  .hero__visual { order: -1; }

  .hero-panel {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-panel__logo-img {
    max-width: 100%;
    height: 44px;
  }

  .hero__bg-photo--sign {
    width: 80%;
    right: -20%;
    opacity: 0.25;
  }

  .hero__bg-photo--helmet {
    display: none;
  }

  .corp-standards { grid-template-columns: repeat(2, 1fr); }
  .corp-panel { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .geo-regions { grid-template-columns: 1fr 1fr; }
  .geo-city-grid { grid-template-columns: 1fr; }

  .section { padding: 48px 0; }
  .section__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section__header { margin-bottom: 2.5rem; }

  .page-hero {
    padding: calc(110px + env(safe-area-inset-top, 0)) 0 40px;
    overflow: hidden;
  }
  .page-hero__title { font-size: clamp(1.65rem, 6vw, 2.25rem); }

  .services-grid,
  .services-grid--6,
  .features-grid,
  .steps,
  .geo-regions,
  .industries-grid,
  .testimonials-grid,
  .corp-standards,
  .section,
  .hero {
    min-width: 0;
    max-width: 100%;
  }

  .services-grid,
  .services-grid--6,
  .features-grid,
  .steps { grid-template-columns: 1fr; }

  .service-card { padding: 1.75rem 1.25rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem; }
  .courier-careers__shell { border-radius: 20px; }
  .courier-careers__content,
  .courier-application-form { padding: 2rem 1.25rem; }
  .courier-form-grid { grid-template-columns: 1fr; }
  .courier-form-grid__full { grid-column: auto; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .cta { padding: 48px 0; }
  .cta__phones { gap: 0.75rem; }

  .cta__actions .btn--lg,
  .cta__btn.btn--lg {
    max-width: none;
    width: 100%;
  }
  .cta__phone { font-size: 1rem; }

  .btn--lg {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }

  .whatsapp-float .icon {
    width: 28px;
    height: 28px;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    transform: translateY(100px);
    bottom: max(90px, calc(70px + env(safe-area-inset-bottom)));
    font-size: 0.9rem;
    padding: 0.85rem 1.25rem;
  }

  .toast.show {
    transform: translateY(0);
  }

  .two-col { gap: 2rem; }
  .two-col__img { padding: 2rem 1.5rem; }

  .stats-showcase { grid-template-columns: 1fr 1fr; margin-top: 0; gap: 1rem; }
  .stat-box { padding: 1.25rem 1rem; }
  .stat-box__num { font-size: 1.75rem; }
  .stat-box__label { font-size: 0.8rem; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .industry-chip { padding: 1rem 0.5rem; }
  .industry-chip__icon .icon { width: 1.25rem; height: 1.25rem; }
  .industry-chip__label { font-size: 0.72rem; }

  .cta-split__card { padding: 1.75rem 1.25rem; }
  .cta-split__card h3 { font-size: 1.15rem; }
  .cta-split__card .btn { width: 100%; min-height: 48px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-summary { gap: 1rem; }
  .testimonials-summary__item strong { font-size: 1.15rem; }

  .testimonial-card { padding: 1.5rem; }

  .faq-item__question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .step__num {
    width: 64px;
    height: 64px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .stats-showcase { grid-template-columns: 1fr; }
  .corp-standards { grid-template-columns: 1fr; }
  .header .logo__img {
    height: 42px;
    max-width: min(200px, 55vw);
  }
  .hero__stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero__badge { font-size: 0.78rem; padding: 0.4rem 0.75rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-regions { grid-template-columns: 1fr; }
  .feature-item { flex-direction: column; text-align: center; }
  .feature-item__icon { margin: 0 auto; }
}
