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

:root {
  --red: #DF0513;
  --red-hover: #ff1a28;
  --blue: #00439E;
  --dark: #111111;
  --darker: #0a0a0a;
  --gray: #1a1a1a;
  --gray-light: #2a2a2a;
  --text: #ffffff;
  --text-muted: #999999;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--darker);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

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

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.dropdown-arrow {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s;
}

.nav-links > li:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(17, 17, 17, 0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s;
}

.dropdown a:hover {
  color: white;
  background: rgba(223, 5, 19, 0.1);
  padding-left: 24px;
}

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

.nav-cta:hover {
  background: var(--red-hover) !important;
  transform: translateY(-1px);
}

.nav-phone {
  color: white !important;
  font-weight: 600 !important;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 5, 19, 0.3);
}

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

.btn-outline:hover {
  border-color: white;
  transform: translateY(-2px);
}

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

/* ── Stripe Bar ── */
.stripe-bar {
  display: flex;
  height: 6px;
  width: 100%;
}

.stripe-bar span:nth-child(1) { flex: 1; background: var(--red); }
.stripe-bar span:nth-child(2) { flex: 1; background: linear-gradient(90deg, #ccc, #fff, #ccc); }
.stripe-bar span:nth-child(3) { flex: 1; background: var(--blue); }

/* ── Sections ── */
section { position: relative; padding: 100px 0; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--darker); }

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

.center { text-align: center; }

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

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

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(223, 5, 19, 0.08) 60%, rgba(0, 67, 158, 0.08) 80%);
  transform: skewX(-15deg);
}

.hero-stripe {
  position: absolute;
  top: 0;
  right: 15%;
  width: 200px;
  height: 100%;
  overflow: hidden;
  opacity: 0.15;
}

.hero-stripe::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 0;
  width: 8px;
  height: 140%;
  background: var(--red);
  transform: rotate(25deg);
}

.hero-stripe::after {
  content: '';
  position: absolute;
  top: -20%;
  right: 40px;
  width: 8px;
  height: 140%;
  background: var(--blue);
  transform: rotate(25deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 0 100%;
  max-width: 1200px;
  padding: 120px 24px 80px 60px;
}

.hero-logo {
  width: 320px;
  max-width: 80vw;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero h1 .accent {
  color: var(--red);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-logo { width: 240px; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(223,5,19,0.06) 60%, rgba(0,67,158,0.06) 80%);
  transform: skewX(-15deg);
}

.page-hero .container { position: relative; z-index: 2; }

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

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.breadcrumb a:hover { color: white; }

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

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

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

.page-hero > .container > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: block;
}

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

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(223, 5, 19, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.blog-card-img {
  height: 200px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-img .blog-icon {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card h3 a {
  color: white;
  transition: color 0.3s;
}

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

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.blog-card .read-more {
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 16px;
  transition: color 0.3s;
}

.blog-card .read-more:hover { color: var(--red-hover); }

/* ── Blog Article ── */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.article-content h2 {
  font-size: 1.8rem;
  margin: 48px 0 16px;
  text-transform: none;
  letter-spacing: 0;
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  text-transform: none;
  letter-spacing: 0;
}

.article-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content li { margin-bottom: 8px; }

.article-content strong { color: white; }

.article-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article-cta {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.article-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.article-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── Location Cards ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.location-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s;
  text-align: center;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.contact-info h2 .accent { color: var(--red); }

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(223, 5, 19, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

.contact-item a,
.contact-item p {
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-item a:hover { color: var(--red); }

.contact-form {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--darker);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Why / Stats ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

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

.why-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Process ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--gray);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(223, 5, 19, 0.15);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }

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

.testimonial-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 32px;
}

.stars {
  color: #FFB800;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* ── Map ── */
.map-section {
  height: 350px;
  background: var(--gray);
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(85%);
}

/* ── Content Sections (about, service detail, etc.) ── */
.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.content-section h2 .accent { color: var(--red); }

.content-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
}

.content-section ul {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-section li { margin-bottom: 8px; }

.content-section.bg-light {
  background: var(--gray);
}

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

.content-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.content-image {
  background: var(--gray);
  border-radius: 12px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Features Grid (About page) ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--red);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

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

/* ── Stats Section ── */
.stats-section {
  background: var(--red);
  padding: 60px 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--gray);
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

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

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

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1rem;
}

.feature-list li svg { flex-shrink: 0; }

.info-box {
  background: var(--gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px;
}

/* ── Legal pages ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 12px;
  text-transform: none;
}

.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

/* ── Footer ── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
}

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

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

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

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

.footer-bottom a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-bottom a:hover { color: white; }

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

/* ── Hex pattern (hero only) ── */
.hex-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }

/* Service page feature items */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.feature-item:last-child { border-bottom: none; }
.feature-item strong { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.check-icon { width: 24px; height: 24px; fill: var(--red); flex-shrink: 0; margin-top: 4px; }
.step-number { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--red); margin-bottom: 12px; line-height: 1; }
.step-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

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

  .nav-links > li > a { padding: 12px 24px; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.3);
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: none;
  }

  .nav-links > li.dropdown-open .dropdown { display: block; }

  .menu-toggle { display: block; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
}

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