/* ============================================================
   PhoneFix — style.css
   Design: Teknik/endüstriyel ton, lacivert + elektrik sarısı,
   Inter + Space Grotesk, sert grid + köşeli aksanlar
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E42;
  --navy-light: #243D56;
  --electric:   #F5C518;
  --electric-d: #D4A800;
  --white:      #FFFFFF;
  --off-white:  #F6F7F9;
  --gray-100:   #EEF0F3;
  --gray-200:   #D8DCE3;
  --gray-400:   #8F98A8;
  --gray-600:   #4A5568;
  --gray-800:   #1E2533;
  --success:    #22C55E;
  --warning:    #F59E0B;
  --danger:     #EF4444;
  --info:       #3B82F6;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(13,27,42,.08), 0 1px 2px rgba(13,27,42,.06);
  --shadow-md:  0 4px 16px rgba(13,27,42,.10), 0 2px 6px rgba(13,27,42,.06);
  --shadow-lg:  0 12px 40px rgba(13,27,42,.14);

  --transition: .2s cubic-bezier(.4,0,.2,1);
  --nav-h:      72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.text-electric { color: var(--electric); }
.text-muted    { color: var(--gray-400); }
.text-white    { color: var(--white); }
.text-center   { text-align: center; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--gray {
  background: var(--off-white);
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--electric-d);
  margin-bottom: 12px;
}

.section--dark .section-eyebrow {
  color: var(--electric);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.7;
}

.section--dark .section-subtitle {
  color: var(--gray-200);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn--primary {
  background: var(--electric);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--electric-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,197,24,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}

.btn--outline:hover {
  border-color: var(--electric);
  color: var(--electric);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

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

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
}

.btn--ghost:hover {
  background: rgba(255,255,255,.14);
}

.btn--sm {
  font-size: 13px;
  padding: 10px 20px;
}

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

.btn i { font-size: 18px; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--electric);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
}

.navbar__logo span { color: var(--electric); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__menu-toggle {
  display: none;
  color: var(--white);
  font-size: 24px;
  padding: 4px;
}

/* Mobile nav */
.navbar__mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 24px 24px;
  gap: 4px;
}

.navbar__mobile-nav a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__mobile-nav a:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.navbar__mobile-nav .btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.navbar__mobile-nav.open { display: flex; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,197,24,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.25);
  color: var(--electric);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__badge i { font-size: 14px; }

.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero__title em {
  font-style: normal;
  color: var(--electric);
  display: block;
}

.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-num span { color: var(--electric); }

.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__phone-mockup {
  position: relative;
  z-index: 2;
}

.hero__phone-img {
  width: 280px;
  height: 520px;
  background: var(--navy-mid);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero__phone-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__phone-img .placeholder-icon {
  color: rgba(255,255,255,.15);
  font-size: 80px;
}

.hero__floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  white-space: nowrap;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__floating-card--status {
  bottom: 60px;
  left: -60px;
  animation-delay: 0s;
}

.hero__floating-card--eta {
  top: 80px;
  right: -50px;
  animation-delay: 1.5s;
}

.hero__floating-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero__floating-card-icon--green { background: #DCFCE7; color: #16A34A; }
.hero__floating-card-icon--blue  { background: #DBEAFE; color: #1D4ED8; }

.hero__floating-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.hero__floating-card-sub {
  font-size: 11px;
  color: var(--gray-400);
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}

.trust-item i {
  font-size: 16px;
  color: var(--electric);
}

/* ── Services ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--electric);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--electric);
  margin-bottom: 20px;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--electric-d);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 16px;
  transition: gap var(--transition);
}

.service-card:hover .service-card__link { gap: 10px; }

/* ── How It Works ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}

.step-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32px;
}

.step-connector-line {
  width: 40px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--electric) 0, var(--electric) 6px,
    transparent 6px, transparent 12px
  );
  margin-top: 4px;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step__num {
  width: 64px;
  height: 64px;
  background: var(--electric);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 20px;
  position: relative;
}

.step__icon-wrap {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.section--dark .step__title { color: var(--white); }
.section--dark .step__desc  { color: rgba(255,255,255,.55); }

/* ── Price Calculator ─────────────────────────────────────── */
.calculator {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.calculator::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,197,24,.08) 0%, transparent 65%);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.calc-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

.calc-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.calc-select:focus {
  outline: none;
  border-color: var(--electric);
}

.calc-select option { background: var(--navy); color: var(--white); }

.calc-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  gap: 24px;
}

.calc-result__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.calc-result__price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--electric);
  line-height: 1;
}

.calc-result__sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--electric);
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--electric);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-role {
  font-size: 12px;
  color: var(--gray-400);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--electric-d); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-400);
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--electric);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-answer-inner {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  padding-bottom: 20px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--electric);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(13,27,42,.06);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(13,27,42,.06);
  border-radius: 50%;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 8px;
}

.cta-banner__sub {
  font-size: 16px;
  color: rgba(13,27,42,.65);
}

.cta-banner .btn--outline-dark {
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: rgba(245,197,24,.15);
  border-color: rgba(245,197,24,.3);
  color: var(--electric);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a:hover { color: var(--electric); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

.footer__contact-item i {
  font-size: 16px;
  color: var(--electric);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-text {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}

.footer__bottom-links a:hover { color: var(--electric); }

/* ── Status Badges ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.badge--success { background: #DCFCE7; color: #15803D; }
.badge--warning { background: #FEF9C3; color: #A16207; }
.badge--info    { background: #DBEAFE; color: #1D4ED8; }
.badge--danger  { background: #FEE2E2; color: #DC2626; }

/* ── Form Elements ────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,.08);
}

.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ── Quick Track Section ──────────────────────────────────── */
.track-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
}

.track-form .form-control {
  flex: 1;
  font-size: 16px;
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.track-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.track-form .form-control:focus { border-color: var(--electric); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 48px) 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover { color: var(--electric); }
.page-hero__breadcrumb i { font-size: 14px; }

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  margin-top: 12px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

/* ── Utility ──────────────────────────────────────────────── */
.d-flex           { display: flex; }
.align-center     { align-items: center; }
.justify-between  { justify-content: space-between; }
.justify-center   { justify-content: center; }
.gap-8            { gap: 8px; }
.gap-12           { gap: 12px; }
.gap-16           { gap: 16px; }
.gap-24           { gap: 24px; }
.mt-8             { margin-top: 8px; }
.mt-16            { margin-top: 16px; }
.mt-24            { margin-top: 24px; }
.mt-32            { margin-top: 32px; }
.mb-8             { margin-bottom: 8px; }
.mb-16            { margin-bottom: 16px; }
.mb-24            { margin-bottom: 24px; }
.mb-32            { margin-bottom: 32px; }
.w-100            { width: 100%; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .calc-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 48px 0 64px;
  }

  .hero__desc  { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; gap: 32px; }

  .hero__visual { display: none; }

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

  .step-connector { display: none; }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .calculator { padding: 28px; }
  .calc-grid  { grid-template-columns: 1fr; }

  .calc-result {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .track-form { flex-direction: column; }

  .navbar__nav      { display: none; }
  .navbar__actions  .btn { display: none; }
  .navbar__menu-toggle { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .trust-bar__inner { gap: 24px; }
}

/* ── Scroll animations ────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }
  .reveal-delay-5 { transition-delay: .5s; }
}
