/* ============================================
   ÇEKER24 - ANA TASARIM SİSTEMİ
   Sarı/Siyah • Mobil Öncelikli • Yüksek Dönüşüm
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --yellow: #F5C400;
  --yellow-dark: #D4A800;
  --yellow-light: #FFF3B0;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --dark2: #242424;
  --gray: #6B6B6B;
  --gray-light: #E8E8E4;
  --white: #FAFAF8;
  --green: #22C55E;
  --red: #EF4444;
  --wa-green: #25D366;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,.16);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.2);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: .2s ease;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---- BUTTONS ---- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .floating-whatsapp { bottom: 80px; /* Mobil sticky cta'nın üstünde dursun */ right: 16px; width: 50px; height: 50px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover { background: var(--yellow-dark); box-shadow: 0 4px 20px rgba(245,196,0,.4); }

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
}
.btn-whatsapp:hover { background: #1EA952; box-shadow: 0 4px 20px rgba(37,211,102,.4); }

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

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark2); }

.btn-full { width: 100%; }

.btn-lg {
  padding: 18px 36px;
  font-size: 22px;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title span { color: var(--yellow); }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- HEADER / NAV ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--yellow);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.5); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-phone {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

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

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
  border-top: 1px solid rgba(245,196,0,.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ---- HERO ---- */
.hero {
  background: var(--black);
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(245,196,0,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,196,0,.12);
  border: 1px solid rgba(245,196,0,.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-h1 .accent { color: var(--yellow); }

.hero-p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.hero-trust-item .icon { color: var(--yellow); font-size: 15px; }

.hero-visual {
  position: relative;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.arrival-badge {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.arrival-badge .ab-icon { font-size: 28px; }
.arrival-badge .ab-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.arrival-badge .ab-label {
  font-size: 12px;
  font-weight: 600;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- STICKY CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--black);
  border-top: 2px solid var(--yellow);
  padding: 12px 16px;
  display: none;
  gap: 10px;
}
.sticky-cta.show { display: flex; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
  transform: scaleY(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow-dark);
}

/* ---- PRICING ---- */
.pricing-section { background: var(--dark); }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-sub { color: rgba(255,255,255,.5); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 15px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table th {
  background: var(--yellow);
  color: var(--black);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.price-tag {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 900;
}
.about-badge .num { font-size: 36px; line-height: 1; }
.about-badge .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }

.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.about-list-item .check {
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-list-item p { font-size: 14px; color: var(--gray); }
.about-list-item strong { display: block; font-size: 15px; margin-bottom: 2px; color: var(--dark); }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
}
.why-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h4 { font-size: 18px; margin-bottom: 6px; color: var(--white); }
.why-card p { font-size: 13px; color: rgba(255,255,255,.5); }

/* ---- REGIONS ---- */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 40px;
}
.region-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
  cursor: pointer;
}
.region-pill:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}
.region-pill .arrow { opacity: 0; transition: opacity var(--transition); font-size: 12px; }
.region-pill:hover .arrow { opacity: 1; }

/* ---- FAQ ---- */
.faq-list { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
}
.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  background: var(--dark);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.blog-card-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--gray); display: flex; gap: 12px; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--dark2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-stars { color: var(--yellow); font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
}
.review-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); }
.review-date { font-size: 12px; color: rgba(255,255,255,.4); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-card p { font-size: 17px; font-weight: 600; color: var(--white); }
.contact-card small { font-size: 12px; color: rgba(255,255,255,.4); }

/* ---- FORM ---- */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---- MAP ---- */
.map-section { background: var(--black); padding: 60px 0; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(245,196,0,.3);
  height: 360px;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 15px;
  margin-top: 32px;
}

/* ---- FOOTER ---- */
.footer {
  background: #0A0A0A;
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
  border-top: 2px solid var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--white); }
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--yellow); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--black);
  padding: 120px 0 60px;
  border-bottom: 2px solid rgba(245,196,0,.2);
}
.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--yellow); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { opacity: .4; }

/* ---- UTILITY ---- */
.badge { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.badge-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.badge-green { background: #DCFCE7; color: #15803D; }
.badge-red { background: #FEE2E2; color: #991B1B; }
.divider { height: 1px; background: var(--gray-light); margin: 40px 0; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-actions .btn { font-size: 18px; padding: 16px 20px; }
  .sticky-cta.show { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 13px; }
  .pricing-table th, .pricing-table td { padding: 12px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 38px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
