/* OpenClaw Business Consultant - Shared Styles */
:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --red: #e63946;
  --red-dark: #b52d38;
  --red-glow: rgba(230, 57, 70, 0.15);
  --red-glow-strong: rgba(230, 57, 70, 0.3);
  --white: #f1f1f1;
  --gray: #888;
  --gray-light: #aaa;
  --gray-dark: #333;
  --border: #222;
}

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

a { color: var(--red); }
a:hover { color: #ff4d5a; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links .dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: #151515;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gray-light) !important;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--red-glow);
  color: var(--white) !important;
}

.dropdown-menu a .dd-icon {
  font-size: 1.2rem;
  width: 28px;
  text-align: center;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--red-glow-strong);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--red-glow-strong), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(230, 57, 70, 0.08), transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-glow);
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .red { color: var(--red); }

.hero p {
  font-size: 1.2rem;
  color: var(--gray-light);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--gray-dark);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.btn-outline:hover {
  border-color: var(--red);
  background: var(--red-glow);
}

/* Floating lobsters */
.floating-lobsters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.lobster-float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.06;
  animation: floatLobster 20s infinite ease-in-out;
}

.lobster-float:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.lobster-float:nth-child(2) { top: 60%; right: 10%; animation-delay: -5s; font-size: 2.5rem; }
.lobster-float:nth-child(3) { bottom: 20%; left: 15%; animation-delay: -10s; font-size: 1.5rem; }
.lobster-float:nth-child(4) { top: 30%; right: 20%; animation-delay: -15s; font-size: 1.8rem; }
.lobster-float:nth-child(5) { bottom: 35%; right: 5%; animation-delay: -7s; }

@keyframes floatLobster {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, 15px) rotate(-3deg); }
  75% { transform: translate(20px, 10px) rotate(4deg); }
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.stat-item {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--red);
  letter-spacing: -1px;
}

.stat-label {
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
}

/* Sections */
section {
  padding: 100px 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-label .claw { font-size: 1rem; }

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-title .red { color: var(--red); }

.section-desc {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  background: var(--bg-card-hover);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--red-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(230, 57, 70, 0.15);
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

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

/* Why section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-item {
  padding: 2rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s;
}

.why-item:hover { border-color: var(--red); }

.why-item .number {
  font-family: 'JetBrains Mono', monospace;
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.why-item h3 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--red-glow-strong), var(--red-glow));
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 2rem 4rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--gray-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* About page */
.about-hero {
  padding-top: 140px;
  padding-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--red-glow), transparent 60%);
}

.about-lobster {
  font-size: 8rem;
  position: relative;
  z-index: 2;
  animation: gentleBob 4s ease-in-out infinite;
}

@keyframes gentleBob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.about-text h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-text p {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-3px);
}

.value-card .v-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Service detail page */
.service-detail-hero {
  padding-top: 140px;
  padding-bottom: 40px;
}

.service-detail-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
  text-decoration: none;
}

.service-detail-hero .back-link:hover { color: var(--white); }

.service-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.service-detail-content .main-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  color: var(--red);
}

.service-detail-content .main-content p {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: '🦞';
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.sidebar-card h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--red);
}

.sidebar-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sidebar-services {
  list-style: none;
  margin-bottom: 2rem;
}

.sidebar-services li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-services li a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.sidebar-services li a:hover { color: var(--red); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 40px var(--red-glow);
}

.pricing-tier {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--red);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.pricing-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-row-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.pricing-row-value .muted {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray);
}

.pricing-includes {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.pricing-includes h4 {
  font-size: 0.85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.pricing-includes ul {
  list-style: none;
}

.pricing-includes li {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
  padding: 4px 0;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-includes li::before {
  content: '🦞';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

.pricing-cta {
  margin-top: 1.5rem;
}

.pricing-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Pricing preview (home page) */
.pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.pricing-preview-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-4px);
}

.pricing-preview-card h4 {
  font-size: 1rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.pricing-preview-card .price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pricing-preview-card .price-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.pricing-preview-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pricing-grid,
  .pricing-preview {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--gray-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}

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

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

.form-group select option {
  background: var(--bg-card);
}

.contact-info {
  padding-top: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item .ci-icon {
  width: 48px;
  height: 48px;
  background: var(--red-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

.contact-info-item a {
  color: var(--red);
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #ff4d5a;
}

/* Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 2rem 30px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  color: var(--red);
}

.footer-col a {
  display: block;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-lobsters {
  display: flex;
  gap: 4px;
  font-size: 1.1rem;
  opacity: 0.5;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.process-step:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-3px);
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.process-step h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

.lobster-divider {
  text-align: center;
  padding: 1rem 0;
  font-size: 1.5rem;
  opacity: 0.15;
  letter-spacing: 1rem;
}

/* Service area - counties list */
.counties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 640px;
  margin: 2rem auto 0;
}

.counties-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.counties-list li {
  padding: 0.5rem 0;
  color: var(--gray-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

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

.counties-list a {
  color: var(--red);
  text-decoration: none;
}

.counties-list a:hover {
  color: #ff4d5a;
}

/* FAQ accordion */
.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(230, 57, 70, 0.3);
}

.faq-item[open] {
  border-color: rgba(230, 57, 70, 0.4);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--red);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 1rem 1.5rem 1.5rem;
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

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

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .contact-grid,
  .service-detail-content { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  section { padding: 60px 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
