/* ============================================
   GEZGİN İLAÇLAMA — Master Stylesheet
   ============================================ */

:root {
  --bg-dark: #1a0900;
  --bg-mid: #2e1400;
  --bg-soft: #4a1f00;
  --accent: #f97316;
  --accent-bright: #fb923c;
  --accent-soft: rgba(249, 115, 22, 0.14);
  --accent-glow: rgba(249, 115, 22, 0.35);
  --cream: #fff8f3;
  --white: #ffffff;
  --gray-100: #f5f0ec;
  --gray-300: #d9cfc7;
  --gray-500: #8b7d75;
  --gray-700: #4a3d35;
  --text: #1a0900;
  --text-soft: #5b4a40;
  --border: rgba(26, 9, 0, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(26, 9, 0, 0.10);
  --shadow-lg: 0 16px 48px rgba(26, 9, 0, 0.18);
  --shadow-xl: 0 24px 64px rgba(26, 9, 0, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== UTILITIES ========== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}
.section-title span { color: var(--accent); }
.section-desc {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 540px;
  line-height: 1.75;
  margin-top: 14px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--bg-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}
.header-top-bar {
  background: var(--bg-dark);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.top-bar-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.top-bar-links a:hover { color: var(--accent); }
.top-bar-links svg { width: 14px; height: 14px; }
.top-bar-badges {
  display: flex;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-tse {
  background: rgba(249, 115, 22, 0.18);
  color: var(--accent);
  border: 1px solid rgba(249, 115, 22, 0.32);
}
.badge-iso {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.header-main {
  background: var(--bg-dark);
  padding: 14px 0;
}
.header.scrolled .header-main {
  background: rgba(26, 9, 0, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-main span { color: var(--accent); }
.logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
nav.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: var(--accent-soft);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-bottom: 2px;
  opacity: 0.6;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  color: var(--accent);
  background: var(--accent-soft);
  padding-left: 18px;
}
.dropdown-menu .dd-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.header-cta { display: flex; align-items: center; gap: 10px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.32);
  border-radius: var(--radius);
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
}
.phone-link:hover {
  background: var(--accent);
  color: var(--bg-dark);
}
.phone-link svg { width: 16px; height: 16px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--bg-dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition);
}
.mobile-nav a.indent { padding-left: 18px; font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-cta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3d1800 55%, #140600 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 30%, rgba(249, 115, 22, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-trust-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}
.trust-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6.2vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 .highlight {
  color: var(--accent);
  display: block;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero visual panel */
.hero-visual { position: relative; }
.hero-card-main {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.service-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.service-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: all var(--transition);
}
.service-mini-card:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-3px);
}
.service-mini-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: var(--accent);
}
.service-mini-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.hero-cta-box {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-cta-box-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1.3;
}
.hero-cta-box-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--bg-dark);
  margin-top: 4px;
}
.floating-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 50%;
  width: 86px;
  height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.4);
  animation: floatY 3s ease-in-out infinite;
}
.floating-badge .fb-num { font-size: 22px; line-height: 1; }
.floating-badge .fb-label { font-size: 9px; letter-spacing: 0.05em; line-height: 1.2; margin-top: 2px; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========== PAGE BANNER (for internal pages) ========== */
.page-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3d1800 60%, #140600 100%);
  position: relative;
  overflow: hidden;
  padding: 180px 0 80px;
  color: var(--white);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.3); }
.page-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}
.page-banner h1 span { color: var(--accent); }
.page-banner .lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  line-height: 1.7;
}

/* ========== FEATURES STRIP ========== */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 26px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--cream); }
.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-icon-box svg { width: 22px; height: 22px; }
.feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.feature-text span {
  font-size: 12px;
  color: var(--text-soft);
}

/* ========== SECTION BASE ========== */
section.section {
  padding: 100px 0;
}
section.section-cream { background: var(--cream); }
section.section-white { background: var(--white); }
section.section-dark {
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
section.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
section.section-dark .container { position: relative; z-index: 1; }
section.section-dark .section-title { color: var(--white); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 24px;
  flex-wrap: wrap;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
  transition: all var(--transition);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--bg-dark);
  transform: rotate(-3deg);
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.service-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 22px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bg-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.service-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-link:hover {
  gap: 12px;
  color: var(--accent);
}
.service-link:hover svg { transform: translateX(2px); }
.service-card.featured {
  background: linear-gradient(135deg, var(--bg-dark), #3d1800);
  border-color: transparent;
  color: var(--white);
}
.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}
.service-card.featured .service-name { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255, 255, 255, 0.65); }
.service-card.featured .service-link { color: var(--accent); }

/* ========== ABOUT / STATS ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-soft) 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.08) 0%, transparent 40%);
}
.about-img-content {
  position: relative;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  z-index: 1;
}
.about-img-content .big-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.about-img-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.about-img-content p { font-size: 14px; opacity: 0.7; }
.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.about-stat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.about-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--bg-mid);
  line-height: 1;
}
.about-stat-num span { color: var(--accent); }
.about-stat-label {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 600;
  margin-top: 6px;
}
.about-content p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}
.cert-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cert-badge-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.cert-badge-text strong { display: block; font-size: 14px; font-weight: 700; }
.cert-badge-text span { font-size: 11px; color: var(--text-soft); }

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.process-step {
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 28px;
  position: relative;
  transition: background var(--transition);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(249, 115, 22, 0.06); }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 68px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--accent);
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 88px;
  color: var(--accent);
  opacity: 0.18;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.star { color: #f59e0b; }
.star svg { width: 16px; height: 16px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text-soft); }

/* ========== CTA ========== */
.cta-section {
  padding: 60px 0 100px;
  background: var(--cream);
}
.cta-box {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3d1800 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 18px;
}
.cta-box h2 span { color: var(--accent); }
.cta-box p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.cta-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.cta-contact-item strong { color: var(--white); font-weight: 600; }

/* ========== FOOTER ========== */
footer {
  background: var(--bg-dark);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo-link { margin-bottom: 20px; }
.footer-brand .logo-img { height: 56px; }
.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
  line-height: 1.65;
  max-width: 280px;
}
.footer-cert-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-cert {
  padding: 4px 12px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.footer-hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}
.footer-hours strong {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.footer-contact-icon svg { width: 14px; height: 14px; }
.footer-contact-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}
.footer-contact-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  margin-bottom: 2px;
  font-weight: 700;
}
.footer-contact-text a { color: rgba(255, 255, 255, 0.62); transition: color var(--transition); }
.footer-contact-text a:hover { color: var(--accent); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}
.footer-bottom-text a { color: rgba(255, 255, 255, 0.52); transition: color var(--transition); }
.footer-bottom-text a:hover { color: var(--accent); }

/* ========== FLOATING ELEMENTS ========== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: fabPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab svg { width: 20px; height: 20px; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.6); }
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-mid);
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover {
  background: var(--bg-dark);
  color: var(--white);
  transform: translateY(-3px);
}
.scroll-top svg { width: 18px; height: 18px; }

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ========== CONTENT PAGES (rich text) ========== */
.content-page {
  padding: 80px 0 100px;
  background: var(--cream);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.content-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.content-main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  margin: 36px 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  margin: 28px 0 14px;
  letter-spacing: 0;
}
.content-main p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-main ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.content-main ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 18px;
  background: var(--accent-soft);
  border-radius: 50%;
}
.content-main ul li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.content-main strong { color: var(--text); font-weight: 700; }

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 130px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.sidebar-card.dark {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3d1800 100%);
  color: var(--white);
}
.sidebar-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.sidebar-card.dark .sidebar-card-title { color: var(--white); }
.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-services-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.sidebar-services-list a:hover,
.sidebar-services-list a.active {
  background: var(--cream);
  color: var(--accent);
  border-color: var(--border);
}
.sidebar-services-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.sidebar-cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  margin: 6px 0 12px;
  display: block;
}
.sidebar-cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block:first-child { padding-top: 0; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text {
  flex: 1;
}
.contact-info-text h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--accent); }
.contact-info-text .secondary {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 4px;
}

.contact-form-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3d1800 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.contact-form-card > * { position: relative; z-index: 1; }
.contact-form-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1;
}
.contact-form-card h2 span { color: var(--accent); }
.contact-form-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--white);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select option { background: var(--bg-dark); }
.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 30px;
  font-size: 15px;
}

.map-section {
  padding: 0 0 100px;
  background: var(--cream);
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 460px;
  background: var(--white);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  background: var(--white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-question .q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .q-icon {
  background: var(--accent);
  color: var(--bg-dark);
  transform: rotate(45deg);
}
.faq-question .q-icon svg { width: 14px; height: 14px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ========== REGION/AREAS ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.area-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.area-pill svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ========== CERTIFICATES PAGE ========== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: all var(--transition);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.cert-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
}
.cert-card-icon svg { width: 36px; height: 36px; }
.cert-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cert-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { display: none; }
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(1), .feature-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: 1px solid rgba(255, 255, 255, 0.07); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 60px 40px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  nav.main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .header-top-bar { display: none; }
  .hero { padding-top: 100px; padding-bottom: 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-strip-inner { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .process-step:last-child { border-bottom: none; }
  .page-banner { padding: 130px 0 60px; }
  section.section { padding: 70px 0; }
  .cta-box { padding: 48px 28px; }
  .about-grid { gap: 40px; }
  .content-main { padding: 32px 24px; }
  .contact-info-card, .contact-form-card { padding: 28px 22px; }
  .certs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .logo-text { display: none; }
  .logo-img { height: 44px; }
}
@media (max-width: 480px) {
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .hero-stats { gap: 12px; }
  .hero-stat-value { font-size: 32px; }
  .cta-box { padding: 36px 22px; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .whatsapp-fab span:not(.wa-icon) { display: none; }
  .whatsapp-fab { padding: 16px; }
  .scroll-top { bottom: 22px; left: 22px; }
  .whatsapp-fab { bottom: 22px; right: 22px; }
}
