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

:root {
  --red: #C0241A; --red-dark: #8B1A12; --gold: #F0C040;
  --charcoal: #3A3D42; --dark: #23272B; --darker: #16191C;
  --white: #FAFAF8; --offwhite: #F2EDE6; --muted: #9A9590;
}

html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; background: var(--darker); color: var(--white); overflow-x: hidden; }

/* RATINGS BAR */
.ratings-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: #0E1012; height: 40px; padding: 0 60px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rating-item { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.rating-platform { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.rating-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
.rating-score { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }
.rating-count { font-size: 11px; color: var(--muted); }
.rating-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }
.rating-bbb { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.bbb-letter { width: 26px; height: 20px; background: #005FA8; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 900; color: #fff; letter-spacing: 0.04em; }
.bbb-info strong { display: inline; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.bbb-info span { font-size: 11px; color: var(--muted); margin-left: 4px; }

/* NAV */
nav {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 100px;
  background: var(--darker); border-bottom: 2px solid var(--red);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-logo img { height: 88px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links > li > a {
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover { color: var(--gold); }
.dropdown-arrow { font-size: 10px; transition: transform 0.2s; display: inline-block; }

/* DROPDOWN */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%);
  background: var(--dark); border-top: 2px solid var(--red);
  min-width: 230px; list-style: none; padding: 6px 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s; box-shadow: 0 12px 40px rgba(0,0,0,0.5); z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown::before {
  content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top: none; border-bottom-color: var(--red);
}
.dropdown li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.dropdown li:last-child { border-bottom: none; }
.dropdown li a {
  display: flex; align-items: center; gap: 10px; padding: 12px 20px;
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.dropdown li a:hover { color: var(--gold); background: rgba(255,255,255,0.03); padding-left: 26px; }

.nav-cta {
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 12px 28px; text-decoration: none; border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--gold); border-color: var(--gold); }

/* BUTTONS */
.btn-primary {
  display: inline-block; padding: 16px 36px;
  background: var(--red); color: var(--white);
  font-family: 'Oswald', sans-serif; font-size: 15px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--red);
  transition: background 0.25s, border-color 0.25s;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-secondary {
  display: inline-block; padding: 16px 36px;
  background: transparent; color: var(--gold);
  font-family: 'Oswald', sans-serif; font-size: 15px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--gold);
  transition: background 0.25s, color 0.25s;
}
.btn-secondary:hover { background: var(--gold); color: var(--darker); }

/* SECTIONS */
section { padding: 100px 60px; }
.section-label {
  font-family: 'Oswald', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--red); }

/* PAGE HEADER (inner pages) */
.page-header {
  padding: 165px 60px 72px;
  background: linear-gradient(135deg, var(--darker) 0%, #1E1410 60%, var(--darker) 100%);
  border-bottom: 3px solid var(--red); position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0; opacity: 0.035;
  background-image: repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 14px 14px;
}
.page-header .section-label { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Oswald', sans-serif; font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700; text-transform: uppercase; line-height: 1.0;
  position: relative; z-index: 1;
}
.page-header h1 span { color: var(--gold); }
.page-header p { font-size: 17px; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 580px; line-height: 1.7; position: relative; z-index: 1; }

/* CONTENT SECTIONS */
.content-section { padding: 80px 60px; }
.content-section.bg-dark { background: var(--dark); }
.content-section.bg-charcoal { background: var(--charcoal); }
.content-section h2 {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; text-transform: uppercase; margin-bottom: 24px; line-height: 1.05;
}
.content-section h2 span { color: var(--gold); }
.content-section p { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

/* FEATURE CARDS */
.feature-card {
  background: var(--charcoal); padding: 32px 28px;
  border-left: 3px solid var(--red); position: relative;
}
.feature-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
.feature-icon { font-size: 28px; margin-bottom: 14px; }

/* INLINE CTA FORM */
.cta-form-section {
  background: var(--red); padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-form-left h2 {
  font-family: 'Oswald', sans-serif; font-size: clamp(30px, 4vw, 52px);
  font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.cta-form-left h2 span { color: var(--gold); }
.cta-form-left p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.7; }
.inline-form { background: var(--darker); padding: 36px 32px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-family: 'Oswald', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--charcoal); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: 'Source Sans 3', sans-serif;
  font-size: 15px; padding: 12px 14px; outline: none;
  transition: border-color 0.2s; appearance: none; -webkit-appearance: none; resize: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F0C040' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--dark); }
.btn-form-submit {
  width: 100%; background: var(--red); color: var(--white); border: none; cursor: pointer;
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 16px;
  margin-top: 8px; transition: background 0.2s;
}
.btn-form-submit:hover { background: var(--red-dark); }
.form-disclaimer { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* TRUST BAR */
.trust-bar {
  background: var(--charcoal); padding: 18px 60px;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; border-bottom: 3px solid var(--gold);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif; font-size: 13px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--offwhite);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* BRANDS MARQUEE */
.brands-bar {
  background: var(--darker); padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; position: relative;
}
.brands-bar::before, .brands-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.brands-bar::before { left: 0; background: linear-gradient(to right, var(--darker), transparent); }
.brands-bar::after  { right: 0; background: linear-gradient(to left, var(--darker), transparent); }
.brands-track { display: flex; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.brands-track:hover { animation-play-state: paused; }
.brand-item { display: flex; align-items: center; gap: 10px; padding: 0 48px; border-right: 1px solid rgba(255,255,255,0.08); white-space: nowrap; }
.brand-item .brand-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.brand-item span { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.brands-track:hover .brand-item span { color: rgba(255,255,255,0.55); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SERVICES GRID */
.services { background: var(--dark); }
.services-header { margin-bottom: 56px; }
.services-header h2 { font-family: 'Oswald', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; text-transform: uppercase; line-height: 1.05; }
.services-header h2 span { color: var(--gold); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.service-card { background: var(--charcoal); padding: 44px 36px; position: relative; overflow: hidden; transition: background 0.3s; text-decoration: none; display: block; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform 0.35s ease; }
.service-card:hover { background: #2A2D31; }
.service-card:hover::before { transform: scaleY(1); }
.service-icon { font-size: 32px; margin-bottom: 18px; }
.service-card h3 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; color: var(--white); }
.service-card p { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--muted); }
.service-num { position: absolute; top: 16px; right: 20px; font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700; color: rgba(240,192,64,0.07); line-height: 1; }
.service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); transition: gap 0.2s; }
.service-card:hover .service-link { gap: 12px; }

/* ABOUT */
.about { background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-logo-display { position: relative; overflow: hidden; height: 480px; border: 2px solid rgba(240,192,64,0.2); }
.about-logo-display img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-tag { position: absolute; bottom: -16px; right: -16px; background: var(--red); padding: 20px 28px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-align: center; }
.about-tag strong { display: block; font-size: 28px; color: var(--white); }
.about-right h2 { font-family: 'Oswald', sans-serif; font-size: clamp(30px, 3.5vw, 48px); font-weight: 700; text-transform: uppercase; line-height: 1.05; margin-bottom: 24px; }
.about-right h2 span { color: var(--gold); }
.about-right p { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.pillar { background: var(--dark); padding: 20px; border-left: 3px solid var(--red); }
.pillar h4 { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.pillar p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* PROCESS */
.process { background: var(--red); }
.process .section-label { color: var(--gold); }
.process .section-label::before { background: var(--gold); }
.process h2 { font-family: 'Oswald', sans-serif; font-size: clamp(30px, 4vw, 52px); font-weight: 700; text-transform: uppercase; margin-bottom: 56px; color: var(--white); }
.process h2 span { color: var(--gold); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { padding: 40px 28px; border-right: 1px solid rgba(255,255,255,0.15); }
.process-step:last-child { border-right: none; }
.step-num { font-family: 'Oswald', sans-serif; font-size: 60px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 16px; opacity: 0.9; }
.process-step h4 { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 14px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.75); }

/* TESTIMONIALS */
.testimonials { background: var(--darker); }
.testimonials h2 { font-family: 'Oswald', sans-serif; font-size: clamp(30px, 4vw, 52px); font-weight: 700; text-transform: uppercase; margin-bottom: 52px; }
.testimonials h2 span { color: var(--gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--dark); padding: 36px 32px; border-top: 3px solid var(--red); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial p { font-size: 15px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: var(--gold); }
.author-name { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.author-loc { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* CTA SECTION */
.cta-section { background: var(--charcoal); padding: 88px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-stripe { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold), var(--red)); }
.cta-section h2 { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 44px; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; justify-content: center; gap: 12px; font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; color: var(--gold); text-decoration: none; margin-top: 32px; }

/* FAQ */
.faq { background: var(--dark); }
.faq h2 { font-family: 'Oswald', sans-serif; font-size: clamp(30px, 4vw, 52px); font-weight: 700; text-transform: uppercase; margin-bottom: 48px; }
.faq h2 span { color: var(--gold); }
.faq-list { max-width: 820px; }
details.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
details.faq-item summary { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 22px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--white); transition: color 0.2s; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 24px; color: var(--red); font-weight: 300; flex-shrink: 0; margin-left: 16px; transition: transform 0.25s; }
details.faq-item[open] summary { color: var(--gold); }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item .faq-answer { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.65); padding-bottom: 22px; max-width: 680px; }

/* FOOTER */
footer { background: var(--darker); padding: 60px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; border-top: 3px solid var(--red); }
.footer-logo img { height: 84px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); color: var(--muted); transition: border-color 0.2s, color 0.2s; }
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.bbb-badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.12); padding: 10px 14px; text-decoration: none; transition: border-color 0.2s; }
.bbb-badge:hover { border-color: var(--gold); }
.bbb-badge-text { line-height: 1.2; }
.bbb-badge-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--white); }
.bbb-badge-text span { font-size: 11px; color: var(--muted); }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(240,192,64,0.2); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.9; color: var(--muted); }
.footer-col address a { color: var(--gold); text-decoration: none; }
.footer-bottom { background: #0E1012; padding: 18px 60px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom span { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* HAMBURGER BUTTON (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE */
@media (max-width: 900px) {
  .ratings-bar { display: none; }

  /* Nav */
  nav { padding: 0 16px; height: 68px; top: 0; }
  .nav-logo img { height: 44px; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 10px 16px; font-size: 12px; letter-spacing: 0.06em; }

  /* Mobile menu panel */
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--darker); z-index: 99;
    padding: 8px 0 40px; gap: 0; overflow-y: auto;
    border-top: 2px solid var(--red);
  }
  nav.nav-open .nav-links { display: flex; }
  nav.nav-open ~ * { pointer-events: none; }

  .nav-links > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links > li > a {
    font-size: 18px; padding: 18px 24px; width: 100%; display: flex; justify-content: space-between;
  }

  /* Mobile dropdown - inline, always open */
  .dropdown {
    position: static; transform: none; opacity: 1; pointer-events: all;
    box-shadow: none; border-top: 1px solid rgba(255,255,255,0.06); border-radius: 0;
    background: rgba(255,255,255,0.03); padding: 4px 0; min-width: unset; width: 100%;
    transition: none;
  }
  .dropdown li a { padding: 13px 24px 13px 36px; font-size: 13px; }
  .dropdown-arrow { display: none; }

  /* Sections */
  section { padding: 52px 20px; }
  .content-section { padding: 44px 20px; }
  .page-header { padding: 96px 20px 44px; }

  /* Typography */
  .page-header h1 { font-size: clamp(30px, 8vw, 44px); line-height: 1.1; }
  .page-header p { font-size: 15px; }
  .content-section h2 { font-size: clamp(24px, 6.5vw, 36px); margin-bottom: 16px; }
  .content-section p { font-size: 15px; line-height: 1.75; }

  /* Grids — !important overrides inline style= attributes */
  .content-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .content-grid-3 { grid-template-columns: 1fr !important; }
  .cta-form-section { grid-template-columns: 1fr; padding: 52px 20px; gap: 36px; }
  .cta-form-left h2 { font-size: clamp(26px, 7vw, 38px); }

  /* Trust bar */
  .trust-bar { padding: 16px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; }
  .trust-item { font-size: 11px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr !important; gap: 3px !important; }
  .service-card { padding: 28px 22px; }
  .service-card h3 { font-size: 19px; }
  .service-card p { font-size: 14px; }

  /* About */
  .about { grid-template-columns: 1fr; gap: 36px; padding: 52px 20px; }
  .about-logo-display { height: 280px; }
  .about-tag { display: none; }
  .about-pillars { grid-template-columns: 1fr !important; gap: 10px !important; }
  .about-right h2 { font-size: clamp(26px, 7vw, 38px); }
  .about-right p { font-size: 15px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { padding: 24px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .process-step:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .step-num { font-size: 40px; }
  .process-step h4 { font-size: 15px; }
  .process-step p { font-size: 13px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial p { font-size: 14px; }

  /* CTA */
  .cta-section { padding: 56px 20px; }
  .cta-section h2 { font-size: clamp(28px, 7.5vw, 44px); }
  .cta-section p { font-size: 15px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions a { text-align: center; padding: 16px 20px; }
  .cta-phone { font-size: 20px; }

  /* FAQ */
  details.faq-item summary { font-size: 15px; padding: 18px 0; }
  details.faq-item .faq-answer { font-size: 14px; }

  /* Feature cards */
  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 16px; }

  /* Footer */
  .site-footer .footer-top { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  footer { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 16px 20px; text-align: center; }
}
