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

:root {
  color-scheme: dark;
  --bg-primary: #08080a;
  --bg-secondary: #0c0c10;
  --bg-card: #141418;
  --bg-card-hover: #1a1a20;
  --text-primary: #fafafa;
  --text-secondary: #9898a0;
  --text-muted: #686870;
  --accent: #00c49a;
  --accent-hover: #00e0b0;
  --accent-dim: rgba(0, 196, 154, 0.08);
  --accent-glow: rgba(0, 196, 154, 0.12);
  --border: #1e1e24;
  --border-light: rgba(255, 255, 255, 0.04);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 196, 154, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

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

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--accent);
  color: #08080a;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

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

ul {
  list-style: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.left p {
  margin: 0;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.header.scrolled {
  background: rgba(8, 8, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(0, 196, 154, 0.1);
  box-shadow: 0 1px 20px rgba(0, 196, 154, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-name {
  display: inline;
}

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

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-list {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 196, 154, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-parallax {
  position: relative;
  z-index: 2;
  will-change: transform;
}

.hero-content {
  max-width: 720px;
  position: relative;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-entrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.6s; }

@keyframes hero-entrance {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 196, 154, 0.12);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, #00e0b0, #00a884, #00c49a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-text--centered {
  max-width: 560px;
  margin: 16px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #08080a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 196, 154, 0.3);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}


/* Guarantee Pill */
.guarantee-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 30px auto;
  padding: 14px 28px;
  max-width: fit-content;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0, 196, 154, 0.08) 0%, rgba(0, 196, 154, 0.02) 100%);
  border: 1px solid rgba(0, 196, 154, 0.15);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 196, 154, 0.06);
}

.guarantee-pill svg {
  flex-shrink: 0;
}

/* Services */
.services {
  padding: 160px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: linear-gradient(160deg, rgba(20, 20, 24, 0.8), rgba(14, 14, 18, 0.9));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 196, 154, 0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
  left: var(--mx, 50%);
  top: var(--my, 50%);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  background: linear-gradient(160deg, rgba(26, 26, 32, 0.9), rgba(16, 16, 22, 0.95));
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 196, 154, 0.12), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Brands */
.brands {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.brand-logo {
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
}

.brand-logo svg {
  width: 32px;
  height: 32px;
}

.brand-logo span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-logo:hover {
  color: var(--text-primary);
}

/* Policies Page */
.page-hero {
  padding: 140px 0 60px;
}

.page-hero-content {
  text-align: center;
}

.page-hero-content h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-top: 16px;
}

.page-content {
  padding: 0 0 100px;
}

.policy-block {
  max-width: 720px;
  margin: 0 auto 48px;
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-block h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.policy-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}

.policy-block ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-block ul li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
  font-size: 1rem;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.payment-item {
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Pricing Page */
.pricing-tool {
  max-width: 780px;
  margin: 0 auto;
}

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

.pricing-select-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-select-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23686870' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.pricing-select-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.pricing-select-group select:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pricing-results {
  animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pricing-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.price-card {
  background: linear-gradient(160deg, rgba(20, 20, 24, 0.8), rgba(14, 14, 18, 0.9));
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  transition: var(--transition);
}

.price-card:hover {
  background: linear-gradient(160deg, rgba(26, 26, 32, 0.9), rgba(16, 16, 22, 0.95));
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.price-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.price-card .price .dollar {
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.pricing-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 16px;
  opacity: 0.7;
}

.pricing-cta {
  text-align: center;
  margin-top: 32px;
}

.pricing-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.pricing-empty svg {
  margin-bottom: 16px;
  color: var(--text-muted);
  opacity: 0.3;
}

.pricing-empty p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-selectors {
    grid-template-columns: 1fr;
  }

  .pricing-results-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-card {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .price-card h3 {
    margin-bottom: 0;
  }

  .price-card .price {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .pricing-results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .price-card {
    padding: 28px 12px;
  }

  .price-card .price {
    font-size: 1.65rem;
  }
}

/* About */
.about {
  padding: 160px 0;
  position: relative;
}

/* Section dividers (shared utility) */
.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 196, 154, 0.12), transparent);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-divider--bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 196, 154, 0.12), transparent);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-divider.visible::before,
.section-divider--bottom.visible::after {
  width: 200px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 10px;
  transition: var(--transition);
}

.about-list li:hover {
  background: var(--accent-dim);
  color: var(--text-primary);
}

.about-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.about-list li strong {
  color: var(--text-primary);
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-inner {
  background: linear-gradient(160deg, rgba(20, 20, 24, 0.9), rgba(14, 14, 18, 0.95));
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  width: 100%;
  max-width: 380px;
}

.about-image-inner svg {
  color: var(--accent);
  margin-bottom: 16px;
}

.about-image-inner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-image-inner > p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.area-list li {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.area-list li:hover {
  background: var(--accent-glow);
  color: var(--accent);
}

.area-list li.area-more {
  background: transparent;
  border-color: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.area-list li.area-more:hover {
  background: transparent;
  color: var(--text-muted);
}



/* FAQ */
.faq {
  padding: 140px 0;
  position: relative;
}



.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(160deg, rgba(20, 20, 24, 0.8), rgba(14, 14, 18, 0.9));
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

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

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

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

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

.faq-answer p {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer .inline-link {
  color: var(--accent);
  text-decoration: underline;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #08080a;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 196, 154, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 196, 154, 0.25);
}

.back-to-top.visible:hover {
  transform: translateY(-3px);
}

/* Contact */
.contact {
  padding: 140px 0;
  position: relative;
}



.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-content .section-header {
  margin-bottom: 40px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-detail svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-note {
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Footer */
.footer {
  padding: 80px 0 28px;
  border-top: 1px solid var(--border);
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(4, 4, 6, 1) 100%);
}

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

.footer-brand .logo {
  align-items: center;
  width: fit-content;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.mobile-only {
  display: none;
}

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

  .mobile-only {
    display: inline;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  body::before,
  body::after {
    display: none;
  }

  .header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(8, 8, 10, 0.9);
    -webkit-transform: none;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .guarantee-pill {
    margin: 20px auto;
    padding: 12px 18px;
    font-size: 0.8rem;
  }

  .service-card {
    padding: 24px;
  }

  .brands {
    padding: 40px 0;
  }

  .brands-grid {
    gap: 20px;
  }

  .brand-logo {
    width: 90px;
  }

  .brand-logo svg {
    width: 28px;
    height: 28px;
  }

  .brand-logo span {
    font-size: 0.85rem;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .nav-link {
    display: inline-block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image-inner {
    padding: 32px 20px;
  }

  .area-list li {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .btn-large {
    width: 100%;
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .back-to-top {
    display: none;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .services,
  .about,
  .faq,
  .contact {
    padding: 80px 0;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-label {
    font-size: 0.78rem;
  }
}

/* Fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
}

.fade-in.visible {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .section-header h2,
  .section-header p,
  .hero-content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.service-card.fade-in.visible { animation-duration: 0.6s; }
.service-card:nth-child(1).fade-in.visible { animation-delay: 0s; }
.service-card:nth-child(2).fade-in.visible { animation-delay: 0.08s; }
.service-card:nth-child(3).fade-in.visible { animation-delay: 0.16s; }
.service-card:nth-child(4).fade-in.visible { animation-delay: 0.24s; }
.service-card:nth-child(5).fade-in.visible { animation-delay: 0.32s; }
.service-card:nth-child(6).fade-in.visible { animation-delay: 0.4s; }

.section-header.fade-in.visible h2 { animation-delay: 0s; }
.section-header.fade-in.visible p { animation-delay: 0.1s; }

.section-header h2,
.section-header p {
  opacity: 0;
  transform: translateY(20px);
}

.section-header.visible h2,
.section-header.visible p {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section-header.visible p {
  animation-delay: 0.12s;
}
