:root {
  --sky-dark: #050a14;
  --sky-navy: #0a1628;
  --sky-blue-deep: #0f2444;
  --sky-blue: #1a56db;
  --sky-blue-bright: #3b82f6;
  --sky-cyan: #06b6d4;
  --sky-gold: #f59e0b;
  --sky-gold-light: #fbbf24;
  --sky-white: #f8fafc;
  --sky-muted: #94a3b8;
  --sky-border: rgba(59,130,246,0.15);
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sky-dark);
  color: var(--sky-white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(5,10,20,0.92);
  border-bottom: 1px solid var(--sky-border);
  transition: all 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #1a56db, #06b6d4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: 0 0 20px rgba(26,86,219,0.4);
}
.logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1.1; }
.logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: var(--sky-muted); letter-spacing: 2px; text-transform: uppercase; }
.logo-text strong { background: linear-gradient(90deg, #60a5fa, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: #cbd5e1; text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--sky-cyan); }
.nav-cta {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, #1a56db, #06b6d4);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(26,86,219,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(26,86,219,0.6); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.mobile-menu {
  display: none;
  background: var(--sky-navy);
  border-top: 1px solid var(--sky-border);
  padding: 1rem 1.5rem;
}
.mobile-menu a { display: block; padding: 0.75rem 0; color: #cbd5e1; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }

/* ── HERO ── */
#anasayfa {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
      linear-gradient(to bottom, rgba(5,10,20,0.3) 0%, rgba(5,10,20,0.6) 60%, rgba(5,10,20,1) 100%),
      url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=90&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,86,219,0.15) 0%, transparent 60%),
  radial-gradient(ellipse at 70% 50%, rgba(6,182,212,0.1) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,86,219,0.2);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: #93c5fd;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero-badge i { color: var(--sky-gold); }
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 750px;
}
.hero-title .grad {
  background: linear-gradient(90deg, #60a5fa 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-sub strong { color: #cbd5e1; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #1a56db, #06b6d4);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 25px rgba(26,86,219,0.4);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(26,86,219,0.7); }
.btn-outline {
  padding: 0.9rem 2rem;
  background: transparent;
  border: 1px solid rgba(59,130,246,0.5);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(59,130,246,0.1); border-color: #60a5fa; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 700px;
}
.stat-card {
  background: rgba(10,22,40,0.7);
  border: 1px solid var(--sky-border);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--sky-cyan); line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: 0.72rem; color: var(--sky-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── SCROLL INDICATOR ── */
.scroll-down {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(148,163,184,0.6); font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── SECTION BASE ── */
section { padding: 6rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(26,86,219,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  color: #93c5fd;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title .accent { background: linear-gradient(90deg, #60a5fa, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { color: var(--sky-muted); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent); margin: 0; }

/* ── ABOUT / INTRO STRIP ── */
#hakkimizda { background: var(--sky-navy); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid rgba(59,130,246,0.2);
  border-radius: 16px;
  pointer-events: none;
}
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(5,10,20,0.9);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(8px);
}
.about-badge i { font-size: 1.5rem; color: var(--sky-gold); }
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1.2rem; }
.about-badge span { font-size: 0.75rem; color: var(--sky-muted); }
.about-text p { color: #94a3b8; line-height: 1.8; margin-bottom: 1.25rem; font-size: 1rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.highlight-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #cbd5e1; }
.highlight-item i { color: var(--sky-cyan); font-size: 0.85rem; }
.branch-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.pill {
  padding: 0.4rem 1rem;
  background: rgba(26,86,219,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  color: #93c5fd;
  display: flex; align-items: center; gap: 6px;
}

/* ── SIMULATORS ── */
#simulatorler { background: var(--sky-dark); }
.sim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sim-card {
  background: var(--sky-navy);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s;
}
.sim-card:hover { transform: translateY(-8px); border-color: rgba(59,130,246,0.5); box-shadow: 0 20px 50px rgba(26,86,219,0.2); }
.sim-img { height: 200px; overflow: hidden; position: relative; }
.sim-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.sim-card:hover .sim-img img { transform: scale(1.05); }
.sim-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.8), transparent); }
.sim-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
}
.sim-body { padding: 1.5rem; }
.sim-body p { color: #64748b; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.sim-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.sim-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #94a3b8; }
.sim-features li i { color: #4ade80; font-size: 0.75rem; }
.sim-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.sim-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.sim-price span { font-size: 0.8rem; font-weight: 400; color: var(--sky-muted); font-family: var(--font-body); }
.btn-book {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-book:hover { opacity: 0.85; transform: translateY(-1px); }
.c-blue { color: #60a5fa; } .bg-blue { background: #1a56db; }
.c-cyan { color: #06b6d4; } .bg-cyan { background: #0891b2; }
.c-violet { color: #a78bfa; } .bg-violet { background: #7c3aed; }

/* ── PROGRAMS ── */
#programlar { background: var(--sky-navy); }
.prog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.prog-card {
  background: var(--sky-blue-deep);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.prog-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--prog-color-from), var(--prog-color-to));
}
.prog-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.prog-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.prog-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.prog-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.prog-subtitle { font-size: 0.78rem; color: var(--sky-muted); }
.prog-desc { color: #64748b; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.prog-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.prog-list li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #94a3b8; }
.prog-list li i { font-size: 0.78rem; }
.prog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.prog-meta { font-size: 0.8rem; color: var(--sky-muted); }
.prog-meta strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-top: 2px; }
.prog-badge-new {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(16,185,129,0.2);
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 50px;
  font-size: 0.7rem;
  color: #4ade80;
  padding: 0.2rem 0.6rem;
  letter-spacing: 1px;
}

/* ── CRM PROMO ── */
#crm-promo {
  background: linear-gradient(135deg, #0a1628 0%, #0f2444 100%);
  border-top: 1px solid var(--sky-border);
  border-bottom: 1px solid var(--sky-border);
}
.crm-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.crm-img { border-radius: 16px; overflow: hidden; }
.crm-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.crm-promise {
  background: rgba(26,86,219,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  display: flex; align-items: flex-start; gap: 12px;
}
.crm-promise i { color: var(--sky-gold); font-size: 1.2rem; margin-top: 2px; }
.crm-promise p { font-size: 0.9rem; color: #93c5fd; line-height: 1.6; }

/* ── TESTIMONIALS ── */
#yorumlar { background: var(--sky-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--sky-navy);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s;
}
.review-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-4px); }
.stars { color: var(--sky-gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: #94a3b8; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; }
.author-role { font-size: 0.76rem; color: var(--sky-muted); margin-top: 1px; }
.reviews-cta { text-align: center; margin-top: 2rem; }
.review-score-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  color: #fbbf24;
  margin-bottom: 2rem;
}

/* ── FAQ ── */
#sss { background: var(--sky-navy); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--sky-blue-deep);
  border: 1px solid var(--sky-border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; color: #e2e8f0;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: #60a5fa; }
.faq-q i { font-size: 0.8rem; transition: transform 0.3s; color: var(--sky-muted); flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); color: var(--sky-cyan); }
.faq-a {
  padding: 0 1.5rem;
  max-height: 0; overflow: hidden;
  transition: all 0.35s ease;
  color: #64748b; font-size: 0.92rem; line-height: 1.75;
}
.faq-a.open { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ── CONTACT ── */
#iletisim { background: var(--sky-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form-box {
  background: var(--sky-navy);
  border: 1px solid var(--sky-border);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #94a3b8; margin-bottom: 0.5rem; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(5,10,20,0.8);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: #e2e8f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.form-group select option { background: #0a1628; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: #3b82f6; flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: #64748b; line-height: 1.5; }
.form-check a { color: #60a5fa; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: var(--sky-navy);
  border: 1px solid var(--sky-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.info-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.info-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.info-card p { font-size: 0.9rem; color: #94a3b8; line-height: 1.5; }
.info-card a { color: #60a5fa; text-decoration: none; }
.social-row { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s;
}
.social-btn:hover { transform: translateY(-3px); opacity: 0.9; }

/* ── LEGAL SECTION ── */
#yasal {
  background: var(--sky-navy);
  padding: 4rem 0;
}
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.legal-card {
  background: var(--sky-blue-deep);
  border: 1px solid var(--sky-border);
  border-radius: 12px;
  padding: 1.75rem;
}
.legal-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; color: #93c5fd; }
.legal-card p { font-size: 0.83rem; color: #475569; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: #020509;
  border-top: 1px solid var(--sky-border);
  padding: 3.5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: #e2e8f0; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p { font-size: 0.85rem; color: #475569; line-height: 1.7; margin-bottom: 0.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; color: #475569; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #60a5fa; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; }
.footer-copy { font-size: 0.8rem; color: #334155; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: #334155; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #60a5fa; }
.google-biz-banner {
  background: linear-gradient(135deg, rgba(26,86,219,0.12), rgba(6,182,212,0.08));
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.google-biz-banner i { font-size: 1.8rem; color: #4ade80; }
.google-biz-banner h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.google-biz-banner p { font-size: 0.82rem; color: #64748b; }
.google-biz-banner a { margin-left: auto; }

/* ── NOTICE ── */
.notice-bar {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem;
  color: #78716c;
  line-height: 1.6;
}
.notice-bar i { color: var(--sky-gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sim-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .crm-inner, .contact-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .sim-grid, .prog-grid, .reviews-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* Glow pulse on CTA */
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 20px rgba(26,86,219,0.4); }
  50% { box-shadow: 0 0 45px rgba(26,86,219,0.75); }
}
.glow-pulse { animation: glowPulse 2.5s ease-in-out infinite; }