/* =========================================
   XPERT AUTOMATION — styles.css
   Charcoal Grey | Red | White
   ========================================= */

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

:root {
  /* Brand Colors */
  --red:          #cc0000;
  --red-dark:     #a30000;
  --red-light:    #fff0f0;
  --charcoal:     #2a2a2a;
  --charcoal-2:   #3a3a3a;
  --charcoal-3:   #4f4f4f;
  --mid:          #737373;
  --light-grey:   #f4f4f4;
  --border:       #e0e0e0;
  --white:        #ffffff;

  /* Aliases used in components */
  --primary:        var(--red);
  --primary-dark:   var(--red-dark);
  --primary-light:  var(--red-light);
  --dark:           var(--charcoal);
  --dark-2:         var(--charcoal-2);
  --dark-3:         var(--charcoal-3);
  --light:          var(--light-grey);

  --gradient:    linear-gradient(135deg, #cc0000 0%, #8b0000 100%);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; }

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

.section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 12px;
}

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

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(204, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: transparent;
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link { display: flex; align-items: center; }

.nav-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  /* Show original logo colours — drop-shadow helps on dark hero bg */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.55));
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  filter: none;
  height: 78px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-links a {
  color: var(--charcoal-3);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--red);
  background: var(--red-light);
}

.btn-nav {
  background: var(--gradient) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 12px rgba(204, 0, 0, 0.4);
}

.btn-nav:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.5) !important;
  background: var(--gradient) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--charcoal);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,20,20,0.90) 0%,
    rgba(30,30,30,0.75) 50%,
    rgba(140,0,0,0.40) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 100px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 0, 0, 0.18);
  border: 1px solid rgba(204, 0, 0, 0.4);
  color: #ff6666;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--red);
  font-size: 0.9rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { top: 6px; opacity: 1; }
  50%       { top: 18px; opacity: 0.3; }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--charcoal);
  border-bottom: 3px solid var(--red);
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.stat:last-child { border-right: none; }

.stat strong {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
}

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--white); }

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

.about-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Large company logo panel */
.about-logo-wrap {
  width: 100%;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Subtle red glow in corner */
.about-logo-wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(204,0,0,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.about-logo-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(204,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-logo-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.about-badge-float {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--red);
  width: 100%;
}

.about-badge-float i {
  color: var(--red);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-badge-float strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

.about-badge-float span {
  display: block;
  font-size: 0.8rem;
  color: var(--mid);
}

.about-text p {
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-features {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal-3);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-features li i {
  color: var(--red);
  font-size: 1rem;
}

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--light-grey); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 26px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Subtle number watermark */
.service-card::after {
  content: counter(service-counter);
  counter-increment: service-counter;
  position: absolute;
  bottom: -12px;
  right: 16px;
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--light-grey);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}

.services-grid { counter-reset: service-counter; }

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204, 0, 0, 0.2);
}

.service-card:hover::after {
  color: rgba(204, 0, 0, 0.05);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--red-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background: var(--gradient);
  color: var(--white);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-card > p {
  color: var(--mid);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.service-card > ul {
  margin-bottom: 20px;
}

.service-card > ul li {
  color: var(--charcoal-3);
  font-size: 0.83rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card > ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  color: var(--red);
  font-size: 0.87rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}

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

/* =========================================
   WHY US
   ========================================= */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(204, 0, 0, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--red-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient);
  color: var(--white);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.4);
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140,0,0,0.75) 0%, rgba(20,20,20,0.85) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================
   CONTACT
   ========================================= */
.contact { background: var(--light-grey); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-info h2 { margin-bottom: 12px; }

.contact-info > p {
  color: var(--mid);
  margin-bottom: 36px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

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

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item strong {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
}

.contact-item a,
.contact-item span {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  line-height: 1.5;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--charcoal-3);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

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

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

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 12px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 0 48px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  /* Show original logo colours on dark footer bg */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-brand .social-links a {
  background: rgba(255,255,255,0.08);
}

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

.footer-links ul li { margin-bottom: 10px; }

.footer-links ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  transition: var(--transition);
}

.footer-links ul li a:hover { color: var(--red); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact p i {
  color: var(--red);
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact p a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat          { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }

  .cta-inner     { flex-direction: column; text-align: center; }
  .cta-actions   { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links a {
    color: var(--charcoal-3) !important;
    padding: 12px 16px;
  }

  .nav-links a:hover {
    color: var(--red) !important;
    background: var(--red-light);
  }

  .btn-nav {
    background: var(--gradient) !important;
    color: var(--white) !important;
    text-align: center;
    justify-content: center;
  }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section { padding: 64px 0; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-cta         { flex-direction: column; }
  .hero-cta .btn    { width: 100%; justify-content: center; }
  .hero-trust       { flex-direction: column; gap: 10px; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .cta-actions      { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
