:root {
  --primary: #1a6abf;
  --primary-dark: #0d3d7a;
  --primary-light: #2980d4;
  --primary-glow: rgba(26, 106, 191, 0.35);
  --accent: #0fd4be;
  --accent-dark: #0aaa97;
  --accent-glow: rgba(15, 212, 190, 0.3);
  --accent-green: #22c55e;
  --ink: #e8edf5;
  --ink-dark: #cbd5e1;
  --muted: #8896aa;
  --light: #0f1a2e;
  --surface: #111d30;
  --surface-2: #162238;
  --surface-3: #1c2d47;
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(26, 106, 191, 0.3);
  --white: #ffffff;
  --gray-50: #0c1526;
  --gray-100: #0f1a2e;
  --gray-200: #162238;
  --gray-300: #1c2d47;
  --gray-400: #4d6380;
  --gray-500: #6b7e95;
  --gray-600: #8896aa;
  --gray-700: #aab8c8;
  --gray-800: #cbd5e1;
  --gray-900: #e8edf5;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4), 0 3px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5), 0 6px 16px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.6), 0 10px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(26, 106, 191, 0.2);
  --shadow-accent-glow: 0 0 24px rgba(15, 212, 190, 0.2);
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background-color: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #0a1628;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #1fecda 0%, var(--accent) 100%);
  color: #0a1628;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #0a1628;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13.5px;
}

.section {
  padding: 80px 0;
}

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

.section-lg {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
}

.section-header .accent {
  color: var(--accent);
}

.section-blue {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #071e3d 100%);
  color: var(--white);
}

.section-blue .section-header h2 {
  color: var(--white);
}

.section-blue .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.section-light {
  background: var(--surface);
}

.section-dark {
  background: var(--gray-50);
  color: var(--ink);
}

.section-dark .section-header h2 {
  color: var(--ink);
}

.section-dark .section-header p {
  color: var(--muted);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.015em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-lg { padding: 72px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  .section-header h2 { font-size: 1.75rem; }
  .container { padding: 0 16px; }
}

.header {
  background: rgba(9, 15, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo:hover {
  color: var(--accent);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 16px var(--primary-glow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(200, 215, 235, 0.85);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: var(--transition);
  text-shadow: 0 0 12px var(--accent-glow);
}

.header-phone:hover {
  color: #fff;
  text-shadow: 0 0 18px var(--accent-glow);
}

@media (max-width: 1200px) {
  .header-phone {
    display: none;
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(200, 215, 235, 0.85);
  margin: 6px 0;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .header-cta .btn { display: none; }
  .mobile-toggle { display: block; }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(9, 15, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: rgba(200, 215, 235, 0.85);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(26, 106, 191, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(15, 212, 190, 0.15) 0%, transparent 60%),
    linear-gradient(160deg, #071428 0%, #0a1d38 40%, #07101e 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,106,191,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(15,212,190,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-lg {
  padding: 120px 0;
}

.hero h1 {
  color: var(--white);
  font-size: 3.25rem;
  max-width: 820px;
  margin: 0 auto 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  line-height: 1.12;
}

.hero h1 .accent {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(200, 220, 245, 0.82);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.1rem; }
  .hero p { font-size: 1.05rem; }
  .hero { padding: 72px 0; }
  .hero-lg { padding: 88px 0; }
}

.page-header {
  background:
    radial-gradient(ellipse 90% 80% at 50% -20%, rgba(26, 106, 191, 0.5) 0%, transparent 65%),
    linear-gradient(160deg, #071428 0%, #0a1d38 50%, #060f1c 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(26, 106, 191, 0.2);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.page-header p {
  font-size: 1.125rem;
  color: rgba(180, 205, 235, 0.78);
  max-width: 600px;
  margin: 0 auto;
}

.card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,106,191,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-5px);
  border-color: rgba(26, 106, 191, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(15, 212, 190, 0.12) 0%, rgba(26, 106, 191, 0.15) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 212, 190, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}

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

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 12px;
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
}

.feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.feature-content h4 {
  margin-bottom: 8px;
  color: var(--ink);
}

.feature-content p {
  color: var(--muted);
  font-size: 0.9375rem;
}

.cta-section {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26, 106, 191, 0.3) 0%, transparent 70%),
    linear-gradient(160deg, #071428 0%, #0c1f3a 50%, #071020 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(26, 106, 191, 0.2);
  border-bottom: 1px solid rgba(26, 106, 191, 0.2);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(15,212,190,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,106,191,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.cta-section p {
  color: rgba(180, 205, 235, 0.78);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-section .btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--gray-400);
}

.footer {
  background: #060d1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 72px 0 32px;
}

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

.footer-brand p {
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--gray-500);
  padding: 6px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--surface-3);
  color: var(--ink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group select option {
  background: var(--surface-3);
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--gray-600);
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 16px;
  margin-top: 40px;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block h3 {
  margin-bottom: 12px;
  margin-top: 32px;
}

.content-block p {
  margin-bottom: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}

.content-block ul,
.content-block ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-block ul {
  list-style: disc;
}

.content-block ol {
  list-style: decimal;
}

.content-block li {
  margin-bottom: 8px;
  color: var(--gray-700);
  line-height: 1.7;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9375rem;
}

.content-block th,
.content-block td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

.content-block th {
  background: var(--surface-3);
  font-weight: 600;
  color: var(--ink-dark);
}

.content-block td {
  color: var(--muted);
}

.content-block tr:nth-child(even) {
  background: var(--surface-2);
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  background: var(--surface-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--muted);
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 24px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.alert-info {
  background: rgba(15, 212, 190, 0.08);
  border: 1px solid rgba(15, 212, 190, 0.25);
  color: var(--muted);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--muted);
}

.alert-icon {
  font-size: 1.25rem;
  min-width: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.faq-answer {
  color: var(--muted);
  line-height: 1.75;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid .faq-item {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.faq-grid .faq-item:hover {
  border-color: var(--border-accent);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-item:hover {
  border-color: rgba(15, 212, 190, 0.35);
  box-shadow: var(--shadow-md), var(--shadow-accent-glow);
}

.service-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.service-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.service-item p {
  font-size: 0.875rem;
  color: var(--muted);
}

.resource-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.resource-card:hover {
  border-color: rgba(15, 212, 190, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-accent-glow);
}

.resource-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(15, 212, 190, 0.1) 0%, rgba(26, 106, 191, 0.15) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 212, 190, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
}

.resource-content h4 {
  margin-bottom: 8px;
}

.resource-content p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.875rem;
}

.resource-link:hover {
  gap: 12px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.city-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.city-card:hover {
  border-color: rgba(26, 106, 191, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.city-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, rgba(26, 106, 191, 0.15), rgba(15, 212, 190, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.7rem;
}

.city-card a {
  font-weight: 500;
  color: var(--ink-dark);
}

.city-card a:hover {
  color: var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-5px);
  border-color: rgba(26, 106, 191, 0.3);
}

.blog-card-content {
  padding: 24px;
}

.blog-category {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(15, 212, 190, 0.1);
  color: var(--accent);
  border: 1px solid rgba(15, 212, 190, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.blog-card h3 a {
  color: var(--ink);
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.85rem;
  transition: var(--transition);
}

.read-more:hover {
  gap: 12px;
  text-shadow: 0 0 10px var(--accent-glow);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(26, 106, 191, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.why-card h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.9375rem;
}

.wash-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.wash-type-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.wash-type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.wash-type-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(26, 106, 191, 0.15), rgba(15, 212, 190, 0.1));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.wash-type-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.wash-type-content p {
  color: var(--muted);
  font-size: 0.875rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.sidebar {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.sidebar h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}

.sidebar-links a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.sidebar-links a:last-child {
  border-bottom: none;
}

.sidebar-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #071428 100%);
  border: 1px solid rgba(26, 106, 191, 0.3);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 24px;
}

.sidebar-cta h4 {
  color: var(--white);
  border: none;
  padding: 0;
  margin-bottom: 8px;
}

.sidebar-cta p {
  color: rgba(180, 205, 235, 0.78);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.disclaimer {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 32px 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.disclaimer strong {
  color: var(--muted);
}

.disclosure-box {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.disclosure-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.area-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-sm);
}

.area-item a {
  font-weight: 500;
  color: var(--ink);
}

.area-item a:hover {
  color: var(--primary);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  text-align: left;
  border: 1px solid var(--border);
}

.pricing-table th {
  background: linear-gradient(135deg, var(--primary-dark), #071428);
  color: var(--white);
  font-weight: 600;
}

.pricing-table tr:nth-child(even) {
  background: var(--surface-2);
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
}

.checklist-content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.checklist-content p {
  color: var(--muted);
  font-size: 0.875rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }

.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-100); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.privacy-content h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.privacy-content p {
  margin-bottom: 16px;
  color: var(--gray-700);
  line-height: 1.7;
}

.privacy-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 8px;
  color: var(--gray-700);
}

.terms-content h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.terms-content p {
  margin-bottom: 16px;
  color: var(--gray-700);
  line-height: 1.7;
}

.intro-text {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 720px;
  margin: 0 auto 40px;
}

.testimonial {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin: 24px 0;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--ink);
}

.testimonial-role {
  color: var(--gray-500);
  font-size: 0.875rem;
}
