/* =============================================
   PRESTIGE EMLAK — Ana Stil Dosyası
   ============================================= */

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

:root {
  --orange:   #ff6b1a;
  --orange-2: #ff8c42;
  --black:    #0a0a0a;
  --black-2:  #111111;
  --black-3:  #1a1a1a;
  --white:    #ffffff;
  --gray:     #888888;
  --gray-2:   #555555;
  --border:   rgba(255, 107, 26, 0.2);
  --border-2: rgba(255, 255, 255, 0.06);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-2);
  transition: all 0.3s;
}
nav.scrolled {
  height: 60px;
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo span { color: var(--orange); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 24px;
  background: var(--orange); color: var(--black);
  text-decoration: none; border-radius: 2px;
  transition: all 0.3s; white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-2); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--white); text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-close {
  position: absolute; top: 28px; right: 5%;
  font-size: 32px; color: var(--white);
  cursor: pointer; background: none; border: none;
  font-family: 'Syne', sans-serif; transition: color 0.3s;
}
.mobile-close:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 5% 120px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  will-change: transform;
}
.hero-orb-1 {
  top: -20%; right: -5%;
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  background: radial-gradient(circle, rgba(255,107,26,0.16) 0%, transparent 65%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: -20%; left: -8%;
  width: clamp(150px, 28vw, 420px);
  height: clamp(150px, 28vw, 420px);
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 65%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-content { max-width: 720px; position: relative; z-index: 2; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,107,26,0.12);
  border: 1px solid rgba(255,107,26,0.3);
  border-radius: 100px; padding: 9px 20px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-2); margin-bottom: 40px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.1s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.2vw, 76px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.line { display: block; overflow: clip; overflow-clip-margin: 4px; }
.line-inner {
  display: block; opacity: 0; transform: translateY(110%);
}
.line-inner.orange { color: var(--orange); }
.line:nth-child(1) .line-inner { animation: slideFromBottom 0.9s 0.3s cubic-bezier(.16,1,.3,1) forwards; }
.line:nth-child(2) .line-inner { animation: slideFromBottom 0.9s 0.5s cubic-bezier(.16,1,.3,1) forwards; }
.line:nth-child(3) .line-inner { animation: slideFromBottom 0.9s 0.7s cubic-bezier(.16,1,.3,1) forwards; }

.hero-desc {
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.85;
  max-width: 460px; margin-bottom: 52px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.9s forwards;
}
.hero-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp 0.8s 1.1s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--black);
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 2px;
  text-decoration: none; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,26,0.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em;
  padding: 15px 30px; border-radius: 2px;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.6s forwards; z-index: 2;
}
.scroll-hint span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--orange), transparent); animation: scrollAnim 2s ease-in-out infinite; }

/* ===== STATS ROW (hero altında) ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--black-2);
}
.stat-item {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--border-2);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,107,26,0.05); }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px; font-weight: 700;
  color: var(--orange); display: block; line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray);
}

/* ===== SEARCH ===== */
.search-section {
  padding: 40px 5%;
  background: var(--black-2);
  border-bottom: 1px solid var(--border-2);
}
.search-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.search-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 1px; }

.search-inner {
  display: grid;
  grid-template-columns: 1fr 160px 160px 160px auto;
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  background: var(--black-3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.search-inner input,
.search-inner select {
  background: transparent; border: none;
  border-right: 1px solid var(--border);
  padding: 18px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; color: var(--white);
  outline: none; transition: background 0.2s;
}
.search-inner input:focus,
.search-inner select:focus { background: rgba(255,107,26,0.05); }
.search-inner input::placeholder { color: var(--gray-2); }
.search-inner select option { background: var(--black-3); color: var(--white); }
.search-inner button {
  background: var(--orange); border: none;
  padding: 18px 32px;
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); cursor: pointer; transition: background 0.3s; white-space: nowrap;
}
.search-inner button:hover { background: var(--orange-2); }

/* ===== MARQUEE ===== */
.marquee { overflow: hidden; padding: 18px 0; background: var(--orange); }
.marquee-track { display: flex; width: max-content; animation: marquee 18s linear infinite; }
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--black); white-space: nowrap;
  padding: 0 36px;
  display: flex; align-items: center; gap: 36px;
}
.marquee-dot { width: 5px; height: 5px; background: rgba(0,0,0,0.3); border-radius: 50%; }

/* ===== SECTIONS ===== */
.section { padding: 90px 5%; }

.section-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange);
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); border-radius: 1px; }

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.section-title span { color: var(--orange); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px;
}
.section-link {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; transition: gap 0.3s;
}
.section-link:hover { gap: 14px; }

/* ===== LISTINGS ===== */
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.listing-card {
  background: var(--black-3);
  border: 1px solid var(--border-2);
  border-radius: 6px; overflow: hidden;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  opacity: 0; transform: translateY(30px);
}
.listing-card.visible { opacity: 1; transform: translateY(0); }
.listing-card:hover {
  border-color: rgba(255,107,26,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,26,0.15);
}
.listing-card:first-child { grid-row: span 2; }

.card-img { position: relative; overflow: hidden; height: 220px; }
.listing-card:first-child .card-img { height: 100%; min-height: 300px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.listing-card:hover .card-img img { transform: scale(1.07); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 60%); }

.card-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
}
.badge-satilik { background: var(--orange); color: var(--black); }
.badge-kiralik { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

.card-body { padding: 22px; }
.card-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 5px; }
.card-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.25; margin-bottom: 6px; }
.card-loc { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; }

.card-specs {
  display: flex; gap: 14px;
  padding: 12px 0; margin: 12px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.spec { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.spec strong { color: var(--white); font-weight: 600; }

.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--orange); }
.card-price small { font-family: 'Outfit', sans-serif; font-size: 11px; color: var(--gray); font-weight: 400; }
.card-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,107,26,0.12);
  border: 1px solid rgba(255,107,26,0.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--orange); transition: all 0.3s;
}
.card-btn:hover { background: var(--orange); color: var(--black); }

/* ===== FEATURES ===== */
.features-section {
  padding: 90px 5%;
  background: var(--black-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }

.feature-card {
  padding: 32px 24px;
  background: var(--black-3);
  border: 1px solid var(--border-2);
  border-radius: 6px; transition: all 0.3s;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.feature-card:hover { border-color: rgba(255,107,26,0.3); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 34px; margin-bottom: 18px; display: block; }
.feature-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===== CTA ===== */
.cta-wrap { padding: 0 5% 80px; }
.cta-section {
  padding: 72px 60px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2), transparent);
}
.cta-glow {
  position: absolute; right: 200px; top: 50%; transform: translateY(-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(24px, 3vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-desc { font-size: 14px; color: var(--gray); line-height: 1.8; }
.cta-right { text-align: center; min-width: 200px; }
.cta-phone { font-family: 'Syne', sans-serif; font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; color: var(--orange); text-decoration: none; display: block; margin-bottom: 6px; transition: color 0.3s; }
.cta-phone:hover { color: var(--orange-2); }
.cta-sub { font-size: 11px; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #000;
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700;
  padding: 10px 22px; border-radius: 100px;
  text-decoration: none; transition: all 0.3s;
}
.whatsapp-btn:hover { background: #20b858; transform: scale(1.04); }

/* ===== FOOTER ===== */
footer { background: var(--black-2); border-top: 1px solid var(--border-2); padding: 70px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo-text { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); display: block; margin-bottom: 14px; }
.footer-logo-text span { color: var(--orange); }
.footer-tagline { font-size: 13px; color: var(--gray); line-height: 1.8; max-width: 240px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; transition: all 0.3s;
}
.social-btn:hover { border-color: var(--orange); background: rgba(255,107,26,0.1); }
.footer-col-title { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 22px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-2); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--gray-2);
}
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ===== ANİMASYONLAR ===== */
@keyframes fadeSlideUp   { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@keyframes slideFromBottom { from { opacity:0; transform: translateY(100%); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn        { from { opacity:0; } to { opacity:1; } }
@keyframes orbFloat      { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-20px); } }
@keyframes marquee       { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse         { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }
@keyframes scrollAnim    { 0% { transform:scaleY(0); transform-origin:top; opacity:1; } 50% { transform:scaleY(1); transform-origin:top; } 100% { transform:scaleY(1); transform-origin:bottom; opacity:0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid       { grid-template-columns: repeat(2, 1fr); }
  .listings-grid       { grid-template-columns: repeat(2, 1fr); }
  .listing-card:first-child { grid-row: auto; }
  .listing-card:first-child .card-img { height: 220px; min-height: 0; }
  .search-inner        { grid-template-columns: 1fr 1fr 1fr auto; }
  .search-inner input  { grid-column: 1 / -1; border-bottom: 1px solid var(--border); border-right: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger           { display: flex; }

  .hero                { padding: 110px 5% 90px; }
  .hero-title          { font-size: clamp(28px, 7.5vw, 48px); letter-spacing: -0.01em; }
  .hero-desc           { max-width: 100%; font-size: 14px; margin-bottom: 36px; }
  .hero-actions        { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .stats-row           { grid-template-columns: repeat(2, 1fr); }

  .search-inner        { grid-template-columns: 1fr; }
  .search-inner input,
  .search-inner select { border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .search-inner button { padding: 16px; }

  .listings-grid       { grid-template-columns: 1fr; }
  .features-grid       { grid-template-columns: 1fr 1fr; }

  .cta-wrap            { padding: 0 4% 60px; }
  .cta-section         { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
  .cta-right           { text-align: left; }
  .cta-glow            { display: none; }

  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section             { padding: 64px 5%; }
  .features-section    { padding: 64px 5%; }
  .section-head        { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
  nav                  { padding: 0 4%; }
  .hero-title          { font-size: clamp(26px, 8vw, 38px); }
  .features-grid       { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; gap: 8px; text-align: center; }
  .stats-row           { grid-template-columns: repeat(2, 1fr); }
  .stat-num            { font-size: 28px; }
  .cta-section         { padding: 30px 18px; }
}
