/* Temizlik platformu — modern yüzey, mavi vurgu */
:root {
  --bg: #fafbfd;
  --bg-elevated: #ffffff;
  --text: #0f2942;
  --text-muted: #4a6a8f;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.35);
  --border: #e2e8f0;
  --border-soft: #dbeafe;
  --surface: #f1f5f9;
  --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #f8fafc 45%, #eef2ff 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 30px rgba(30, 64, 175, 0.08);
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: clip;
  font-feature-settings: "kern" 1, "liga" 1;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.container {
  width: min(1120px, 100%);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
  box-sizing: border-box;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(250, 251, 253, 0.82);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Üst banner — geçişli carousel */
.banner-carousel {
  position: relative;
  width: 100%;
  background: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.hero-banner-wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 1.5rem;
}

.hero-banner-wrap.banner-carousel {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.banner-viewport {
  position: relative;
  max-width: none;
  margin: 0 auto;
  aspect-ratio: 21 / 7;
  max-height: min(620px, 58vw);
  min-height: 260px;
}

@media (max-width: 640px) {
  .banner-viewport {
    aspect-ratio: 16 / 9;
    max-height: 300px;
    min-height: 190px;
  }
}

.banner-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #e5e7eb;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(30, 64, 175, 0.75);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}

.banner-nav:hover {
  background: rgba(30, 64, 175, 0.95);
}

.banner-prev {
  left: 0.75rem;
}

.banner-next {
  right: 0.75rem;
}

.banner-dots {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.banner-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.banner-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .banner-slide {
    transition: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.header-nav-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.site-nav-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.site-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
}

.site-nav-burger span {
  display: block;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav-checkbox:checked + .site-nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav-checkbox:checked + .site-nav-burger span:nth-child(2) {
  opacity: 0;
}

.site-nav-checkbox:checked + .site-nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  font-weight: 700;
  font-size: clamp(1.05rem, 4vw, 1.25rem);
  color: var(--blue-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
  color: var(--blue);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-main a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-main a:hover {
  color: var(--blue);
  text-decoration: none;
}

.nav-main .btn {
  min-height: 44px;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 769px) {
  .header-nav-block {
    flex-wrap: nowrap;
  }

  .site-nav-burger {
    display: none !important;
  }

  .nav-main {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .site-nav-burger {
    display: flex;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .header-nav-block {
    flex: 0 0 auto;
    position: relative;
    justify-content: flex-end;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
    min-width: min(100vw - 2rem, 320px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    z-index: 50;
  }

  .nav-main a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    min-height: 48px;
  }

  .nav-main a:not(.btn):hover {
    background: rgba(241, 245, 249, 0.95);
  }

  .nav-main .btn {
    justify-content: center;
    width: 100%;
    margin-top: 0.25rem;
  }

  .site-nav-checkbox:checked ~ .nav-main {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  touch-action: manipulation;
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px var(--blue-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px var(--blue-glow);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-glow {
  position: relative;
}

.btn-outline {
  background: var(--bg-elevated);
  color: var(--blue-dark);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: #eff6ff;
  border-color: var(--blue-light);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover {
    transform: none;
  }
}

/* Hero — modern blok */
.hero-modern {
  position: relative;
  padding: clamp(2.5rem, 8vw, 4.5rem) 0 clamp(3rem, 10vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
}

.hero-orb-a {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  background: #93c5fd;
  top: -15%;
  right: -10%;
}

.hero-orb-b {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  background: #c4b5fd;
  bottom: -5%;
  left: -8%;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.hero-modern h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  color: var(--text);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlight {
  background: linear-gradient(120deg, var(--blue) 0%, #6366f1 50%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  padding-inline: 0.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  margin: 0;
  padding: 1.25rem 1.5rem;
  list-style: none;
  max-width: 36rem;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.hero-stats li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-stats strong {
  color: var(--blue-dark);
  font-weight: 700;
}

.hero-stat-note {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Güven / özellik şeridi */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  color: var(--blue-dark);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.trust-soon {
  font-weight: 500;
  opacity: 0.75;
  font-size: 0.8rem;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

.section {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.section-categories {
  background: var(--bg-elevated);
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--text);
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0 auto 0;
  max-width: 36rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.category-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #6366f1);
  opacity: 0.85;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.category-card:hover {
  border-color: var(--border-soft);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.category-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #eff6ff 0%, #e0e7ff 100%);
  color: var(--blue-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.category-card-icon-svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.category-card-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue);
  opacity: 0.55;
  line-height: 3rem;
  margin: 0;
}

.category-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
}

.category-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.category-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
}

.section-how.how {
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg) 55%, #eff6ff 100%);
  border-block: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.step-card {
  text-align: left;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 0 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px var(--blue-glow);
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 700;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cta-band {
  position: relative;
  text-align: center;
  padding: 0;
  margin: 2.5rem 0 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, var(--blue-dark) 40%, #1d4ed8 100%);
  box-shadow: 0 20px 50px rgba(30, 64, 175, 0.25);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(99, 102, 241, 0.35), transparent 45%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  color: #fff;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.92;
  max-width: 26rem;
  margin-inline: auto;
  line-height: 1.6;
}

.cta-btn {
  background: #fff !important;
  color: var(--blue-dark) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.cta-btn:hover {
  background: #f8fafc !important;
  color: #1e3a8a !important;
}

.site-footer {
  margin-top: 0;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-inner {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: start;
  text-align: left;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h3 {
    margin-top: 0.25rem;
  }

  .footer-links {
    align-items: center;
  }

  .footer-copy {
    text-align: center;
  }
}

.footer-brand-block {
  max-width: 360px;
}

.footer-col-brand {
  padding-right: 0.75rem;
}

.footer-brand {
  display: block;
  font-size: 1.22rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.footer-tagline {
  margin: 0 0 0.45rem;
  line-height: 1.65;
  font-size: 0.9rem;
}

.footer-note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-col h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-col p {
  margin: 0 0 0.6rem;
  line-height: 1.6;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42rem;
}

.footer-links a {
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: #e0e7ff;
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.footer-cta:hover {
  background: #dbeafe;
  color: #1e3a8a;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-policy {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.75;
}

.admin-msg,
.admin-error {
  margin: 0 0 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

.admin-msg {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.admin-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.access-shell {
  max-width: 1120px;
}

.access-hero {
  margin-bottom: 1rem;
}

.access-jump {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.45rem;
}

.access-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.access-jump a:hover {
  color: var(--blue);
  border-color: var(--border-soft);
  background: #f8fbff;
}

.access-section {
  margin-top: 1.2rem;
}

.access-section-title {
  margin: 0 0 0.75rem;
  font-size: 1.12rem;
  color: var(--text);
  font-weight: 800;
}

.access-grid {
  display: grid;
  gap: 0.95rem;
}

.access-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.access-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.access-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.access-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  color: var(--text);
}

.access-form {
  display: grid;
  gap: 0.5rem;
}

.access-form label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.access-form input,
.access-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  background: #fff;
}

.access-form textarea {
  resize: vertical;
}

.access-form .btn {
  width: 100%;
  margin-top: 0.3rem;
}

@media (max-width: 980px) {
  .access-grid-3,
  .access-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .access-grid-3,
  .access-grid-2 {
    grid-template-columns: 1fr;
  }
}

.section-faq {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.section-service-area {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.service-area-box {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
  box-shadow: var(--shadow-sm);
}

.service-area-box h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  color: var(--blue-dark);
}

.service-area-box p {
  margin: 0.55rem 0 0;
  color: #304f75;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .banner-nav {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
  }

  .banner-dot {
    width: 0.65rem;
    height: 0.65rem;
    min-width: 12px;
    min-height: 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.35rem, 5vw, 1.65rem);
  }

  .section-desc {
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
  }
}

@supports (padding: max(0px)) {
  .site-header .header-inner {
    padding-top: max(0.85rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(0.85rem, env(safe-area-inset-top, 0px));
  }

  .site-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  }
}
