/* ============================================================
   313 Oto Çekici — style.css
   Mobile-first, SEO-optimized, performance-focused
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #112236;
  --navy-light:#1a3454;
  --accent:    #f5a623;
  --accent-dk: #d9891a;
  --wa-green:  #25d366;
  --wa-dk:     #1da851;
  --white:     #ffffff;
  --gray-100:  #f4f6f9;
  --gray-200:  #e2e8f0;
  --gray-500:  #8898aa;
  --gray-700:  #4a5568;
  --text:      #1a202c;

  --font-head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);

  --container: 1200px;
  --header-h:  72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  padding-bottom: 68px; /* space for mobile CTA bar */
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Sections ---- */
.section {
  padding: 72px 0;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--gray-700);
  font-size: 1.05rem;
}

.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.75); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  padding: 12px 22px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Phone button (header) */
.btn-phone {
  background: var(--accent);
  color: var(--navy);
}
.btn-phone:hover { background: var(--accent-dk); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }

/* WhatsApp button (header) */
.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--wa-dk); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* Hero phone */
.btn-hero-phone {
  background: var(--accent);
  color: var(--navy);
  font-size: 1.15rem;
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(245,166,35,0.35);
}
.btn-hero-phone:hover { background: var(--accent-dk); box-shadow: 0 8px 32px rgba(245,166,35,0.5); }

/* Hero WhatsApp */
.btn-hero-wa {
  background: var(--wa-green);
  color: var(--white);
  font-size: 1.15rem;
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.btn-hero-wa:hover { background: var(--wa-dk); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* XL variant */
.btn-xl {
  font-size: 1.2rem;
  padding: 18px 32px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.logo-text strong {
  color: var(--accent);
}

/* Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--accent); }

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.mobile-menu.open {
  max-height: 320px;
  padding: 12px 0 20px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, color 0.2s;
}

.mobile-menu nav a:hover {
  background: rgba(245,166,35,0.1);
  color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.93) 0%,
    rgba(13,27,42,0.78) 60%,
    rgba(13,27,42,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(245,166,35,0.7); }
  50%       { transform: scale(1.2); opacity: 0.85; box-shadow: 0 0 0 6px rgba(245,166,35,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  max-width: 750px;
  margin-bottom: 20px;
  animation: fadeInUp 0.65s ease 0.1s both;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeInUp 0.65s ease 0.2s both;
}

.hero-desc strong {
  color: var(--accent);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.65s ease 0.3s both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: scrollHint 1.8s ease infinite;
}

@keyframes scrollHint {
  0%   { opacity: 1; top: 5px; }
  80%  { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 5px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  padding: 28px 0;
  border-top: 2px solid var(--accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.trust-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--navy-light);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.04);
}

.service-body {
  padding: 22px 24px 24px;
}

.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.service-cta:hover {
  background: var(--accent);
  color: var(--navy);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: background 0.2s, border-color 0.2s;
}

.why-card:hover {
  background: rgba(245,166,35,0.07);
  border-color: rgba(245,166,35,0.25);
}

.why-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 10px;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ============================================================
   AREAS
   ============================================================ */
.areas {
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.area-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.area-img-wrap {
  position: relative;
  height: 180px;
  background: var(--navy-mid);
  overflow: hidden;
}

.area-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.area-card:hover .area-img-wrap img {
  transform: scale(1.04);
}

.area-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.area-card:hover .area-overlay {
  opacity: 1;
}

.area-cta-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--accent);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.area-cta-btn:hover { background: var(--accent-dk); }

.area-body {
  padding: 18px 20px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.area-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.area-body p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.55;
}

/* ============================================================
   SEO CONTENT
   ============================================================ */
.seo-content {
  background: var(--gray-100);
}

.seo-inner {
  max-width: 820px;
  margin: 0 auto;
}

.seo-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.2;
}

.seo-body p {
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.seo-body p strong {
  color: var(--navy);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-item[open] .faq-question { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(37,211,102,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wa-green);
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 36px;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #08131f;
  padding: 52px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4,
.footer-bolge h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer-links ul li,
.footer-bolge ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bolge ul li {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.footer-phone,
.footer-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  width: fit-content;
  transition: opacity 0.2s;
}
.footer-phone:hover,
.footer-wa:hover { opacity: 0.85; }

.footer-phone {
  background: var(--accent);
  color: var(--navy);
}

.footer-wa {
  background: var(--wa-green);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   MOBILE BOTTOM CTA BAR
   ============================================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  height: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}

.mobile-cta-btn:active { opacity: 0.85; }

.mobile-cta-phone {
  background: var(--accent);
  color: var(--navy);
}

.mobile-cta-wa {
  background: var(--wa-green);
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — Tablet (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — Desktop (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  body {
    padding-bottom: 0; /* no mobile bar */
  }

  .mobile-cta-bar {
    display: none;
  }

  .hamburger {
    display: none;
  }

  .header-nav,
  .header-cta {
    display: flex;
  }

  .header-cta {
    margin-left: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .section {
    padding: 96px 0;
  }
}

/* ============================================================
   RESPONSIVE — Large Desktop (≥ 1280px)
   ============================================================ */
@media (min-width: 1280px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Show 7 area cards nicely: 4+3 */
  .areas-grid .area-card:nth-child(5) {
    grid-column: 1 / 2;
  }
}

/* ============================================================
   Accessibility: reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header,
  .mobile-cta-bar,
  .hero-cta,
  .final-cta { display: none; }
}
