/* ============================================================
   Sınav Asistanı — site-v2.css
   Tam yeniden tasarım: modern, temiz, SEO destekli
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  /* Renkler */
  --bg:        #050d18;
  --bg-card:   #0b1729;
  --bg-glass:  rgba(11, 23, 41, 0.82);
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.14);

  --text:      #f0ece4;
  --muted:     #8b9ab5;
  --dim:       #5c6e88;

  --gold:      #e8b76d;
  --gold-lite: #f5d8a0;
  --blue:      #6fb3f5;
  --teal:      #56d9b8;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 48px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(232,183,109,0.12);
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 0% 0%,   rgba(232,183,109,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(111,179,245,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(86,217,184,0.06) 0%, transparent 55%);
  overflow-x: hidden;
}

/* Arka plan grid deseni */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 80%);
  pointer-events: none;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
p   { margin: 0; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

/* ============================================================
   Tipografi
   ============================================================ */
.display {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
  flex-shrink: 0;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(5,13,24,0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

/* Marka */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(232,183,109,0.25);
  box-shadow: 0 0 20px rgba(232,183,109,0.2);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s, background 0.18s;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

/* CTA düğmesi */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0a1520;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lite) 100%);
  box-shadow: 0 4px 24px rgba(232,183,109,0.28), 0 1px 0 rgba(255,255,255,0.15) inset;
  transition: transform 0.18s, box-shadow 0.18s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,183,109,0.38), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-hi);
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 80px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  letter-spacing: -0.045em;
  line-height: 0.93;
  margin: 0 0 24px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.75;
}

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

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* Özellik listesi */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
  box-shadow: 0 0 0 4px rgba(232,183,109,0.1);
}

/* Hero görsel */
.hero-visual {
  display: flex;
  flex-direction: column;
}

.hero-screens {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  grid-template-rows: repeat(2, auto);
  gap: 12px;
}

.screen-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  position: relative;
}

.screen-wrap::before {
  content: "";
  display: block;
  width: 56px;
  height: 7px;
  margin: 10px 10px 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
}

.screen-wrap img {
  display: block;
  width: calc(100% - 20px);
  margin: 0 10px 10px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.screen-span-2 {
  grid-row: span 2;
}

.screen-teal {
  background: linear-gradient(160deg, rgba(86,217,184,0.12), var(--bg-card));
}

.screen-blue {
  background: linear-gradient(160deg, rgba(111,179,245,0.12), var(--bg-card));
}

/* Hero rozet */
.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 14px 18px;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  background: rgba(5,13,24,0.9);
  border: 1px solid rgba(232,183,109,0.25);
  box-shadow: 0 8px 32px rgba(232,183,109,0.12);
  max-width: 280px;
  backdrop-filter: blur(10px);
}

.hero-badge-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-badge-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.35;
}

/* ============================================================
   Hızlı özellik şeridi
   ============================================================ */
.tag-strip {
  padding: 12px 0 48px;
}

.tag-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: border-color 0.18s, color 0.18s;
}

.tag-pill:hover {
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
}

/* ============================================================
   Bölüm genel
   ============================================================ */
.section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-head h2 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.97;
  margin: 0;
}

.section-head p {
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 640px;
}

/* ============================================================
   Neden bölümü — kart grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.why-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.22s, transform 0.22s;
}

.why-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}

.why-num {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.why-card h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

.why-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ============================================================
   Çalışma akışı bölümü
   ============================================================ */
.workflow-section {
  background: linear-gradient(180deg, transparent, rgba(11,23,41,0.4), transparent);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 64px;
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 100px;
}

.workflow-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  margin-top: 16px;
  max-width: 480px;
}

.workflow-steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px 16px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  align-items: start;
  transition: border-color 0.2s, background 0.2s;
}

.workflow-steps li:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hi);
}

.workflow-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(232,183,109,0.2), rgba(111,179,245,0.15));
  border: 1px solid rgba(232,183,109,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
}

.workflow-steps li .step-text strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.workflow-steps li .step-text span {
  font-size: 0.93rem;
  color: var(--muted);
}

.workflow-screens {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wflow-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.wflow-card .wcard-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.wcard-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.wcard-copy h4 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

.wcard-copy p {
  font-size: 0.9rem;
  color: var(--muted);
}

.wflow-card .wcard-img {
  padding: 14px;
}

.wflow-card .wcard-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   Modüller bölümü
   ============================================================ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.module-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, transform 0.22s;
}

.module-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}

.module-img-wrap {
  padding: 16px 16px 0;
}

.module-img-wrap::before {
  content: "";
  display: block;
  width: 56px;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  margin-bottom: 10px;
}

.module-img-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
}

.module-copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-tag {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.module-copy h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

.module-copy p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Öne çıkan modül kartı */
.module-featured {
  grid-column: span 3;
  flex-direction: row;
  align-items: stretch;
}

.module-featured .module-copy {
  flex: 1;
  padding: 32px;
  justify-content: center;
  gap: 12px;
}

.module-featured .module-copy h3 {
  font-size: 1.6rem;
}

.module-featured .module-img-wrap {
  flex: 0 0 260px;
  padding: 20px;
  display: flex;
  align-items: center;
}

.module-featured .module-img-wrap::before {
  display: none;
}

.module-featured .module-img-wrap img {
  border-radius: 18px;
}

/* ============================================================
   Galeri
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  padding: 14px;
  transition: border-color 0.22s, transform 0.22s;
}

.gallery-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}

.gallery-card::before {
  content: "";
  display: block;
  width: 52px;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255,255,255,0.13), rgba(255,255,255,0.02));
  margin-bottom: 10px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.gallery-card figcaption {
  padding: 12px 4px 2px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.gallery-wide {
  grid-column: span 2;
}

/* ============================================================
   SSS
   ============================================================ */
.faq-section {
  background: linear-gradient(180deg, transparent, rgba(11,23,41,0.3), transparent);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: 64px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 100px;
}

.faq-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(232,183,109,0.2);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color 0.18s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-hi);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4.5L6 8.5L10 4.5' stroke='%238b9ab5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  transition: transform 0.22s;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

/* ============================================================
   CTA bölümü
   ============================================================ */
.cta-section {
  padding: 80px 0;
}

.cta-panel {
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  background:
    linear-gradient(135deg, rgba(232,183,109,0.1) 0%, rgba(111,179,245,0.08) 100%),
    var(--bg-card);
  border: 1px solid rgba(232,183,109,0.18);
  box-shadow: 0 0 80px rgba(232,183,109,0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-eyebrow {
  margin-bottom: 16px;
}

.cta-panel h2 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 0.97;
  margin: 0 0 14px;
}

.cta-panel > div p {
  color: var(--muted);
  font-size: 1.04rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  flex-shrink: 0;
}

.cta-actions .btn-primary,
.cta-actions .btn-secondary {
  padding: 14px 28px;
  font-size: 0.95rem;
  text-align: center;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,0.8fr);
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(232,183,109,0.2);
  object-fit: cover;
}

.footer-brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.93rem;
  max-width: 400px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--dim);
  font-size: 0.83rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid,
  .workflow-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 600px;
  }

  .workflow-copy {
    position: static;
  }

  .faq-copy {
    position: static;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .module-featured {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: row;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (max-width: 768px) {
  .site-nav { display: none; }

  .hero { padding: 52px 0 48px; }

  .hero-badge { display: none; }

  .hero-title {
    font-size: clamp(2.6rem, 10vw, 3.8rem);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-featured {
    grid-column: auto;
    flex-direction: column;
  }

  .module-featured .module-img-wrap {
    flex: none;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .cta-panel {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
  }

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

  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .wflow-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .section { padding: 52px 0; }
}
