/* ============================================================
   SICURA HSE - Main Stylesheet
   Colors: --red #C41830 | --dark #1A1A1A | --gray #6B7280
   ============================================================ */

/* ── Reset & Variables ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C41830;
  --red-dark:   #961525;
  --red-light:  #e8192c;
  --dark:       #1A1A1A;
  --dark-soft:  #2C2C2C;
  --gray-700:   #4A4A4A;
  --gray-500:   #6B7280;
  --gray-300:   #D1D5DB;
  --gray-100:   #F3F4F6;
  --white:      #FFFFFF;
  --font-head:  'Bebas Neue', 'Arial Black', Impact, sans-serif;
  --font-body:  'Inter', 'Segoe UI', Arial, sans-serif;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.10);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.15);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  box-shadow: var(--shadow-sm);
  height: 72px;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: opacity var(--transition);
}
.navbar-brand:hover { opacity: .85; }
.navbar-brand .logo-svg { width: 50px; height: auto; flex-shrink: 0; }
.brand-text { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 2px; line-height: 1; }
.brand-text span { color: var(--red); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-nav a {
  display: block;
  padding: 8px 18px;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  color: var(--gray-700);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--red);
  transition: left var(--transition), right var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--red);
}
.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  left: 18px; right: 18px;
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,24,48,.04) 0%, transparent 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,24,48,.08);
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(196,24,48,.2);
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual (geometric + logo) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}
.hero-logo-wrap {
  position: relative;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hero-logo-wrap .logo-svg-large { width: 220px; height: auto; drop-shadow: 0 16px 40px rgba(196,24,48,.3); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Hexagon decorations */
.hex-deco {
  position: absolute;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.hex-1 { width:180px; height:200px; background:var(--red); top:-20px; right:-10px; opacity:.85; }
.hex-2 { width:120px; height:138px; background:var(--gray-300); bottom:40px; right:120px; opacity:.6; }
.hex-3 { width: 90px; height:104px; background:var(--red); bottom:-10px; right:-30px; opacity:.7; }
.hex-4 { width: 70px; height: 80px; background:var(--gray-100); top:80px; left:-20px; opacity:.9; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(196,24,48,.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(196,24,48,.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 18px; font-size: .8rem; }

/* ── Section Base ────────────────────────────────────────────── */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  line-height: 1.05;
}
.section-title span { color: var(--red); }
.section-sub {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.section-divider {
  width: 60px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── Service Cards ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(196,24,48,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--red); }
.service-icon svg { width: 28px; height: 28px; stroke: var(--red); transition: stroke var(--transition); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p { font-size: .92rem; color: var(--gray-500); line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 16px; height: 16px; stroke: var(--red); }

/* ── About Strip ─────────────────────────────────────────────── */
.about-strip {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.about-strip::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 340px;
  background: var(--red);
  opacity: .06;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-tag { color: rgba(255,255,255,.5); }
.about-text .section-title { color: var(--white); }
.about-text .section-title span { color: var(--red); }
.about-text .section-divider { margin: 14px 0 24px; }
.about-text p { color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 14px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(196,24,48,.15); }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ── Services Detail (servizi.html) ────────────────────────── */
.page-hero {
  padding-top: 72px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.page-hero .container { position: relative; z-index: 2; padding-top: 60px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: .95;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { color: rgba(255,255,255,.65); max-width: 520px; font-size: 1rem; }
.page-hero-hex {
  position: absolute;
  top: -40px; right: -60px;
  display: flex;
  gap: 20px;
  opacity: .15;
}
.page-hero-hex .hex-deco { position: static; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  align-items: start;
  transition: box-shadow var(--transition);
}
.service-detail:hover { box-shadow: var(--shadow-md); }
.service-detail-icon {
  width: 72px; height: 72px;
  background: rgba(196,24,48,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-icon svg { width: 36px; height: 36px; stroke: var(--red); }
.service-detail h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-detail p { color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.service-detail ul { padding-left: 0; }
.service-detail li {
  position: relative;
  padding-left: 18px;
  color: var(--gray-700);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.service-detail li::before {
  content: '';
  position: absolute;
  left: 0; top: .65em;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
}

/* ── Formazione ───────────────────────────────────────────────── */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.course-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.course-card-head {
  background: var(--dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.course-level {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 100px;
}
.level-alto   { background: var(--red);   color: var(--white); }
.level-medio  { background: #E07020;      color: var(--white); }
.level-basso  { background: #2E7D32;      color: var(--white); }
.level-base   { background: var(--gray-500); color: var(--white); }
.course-card-body { padding: 24px; }
.course-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.course-card-body p { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

.courses-list { display: flex; flex-direction: column; gap: 12px; }
.courses-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.courses-list-item:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.courses-list-item-num {
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.courses-list-item p { font-size: .92rem; color: var(--gray-700); line-height: 1.6; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-300);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(196,24,48,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--red); }
.contact-item-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 3px; }
.contact-item-value { font-size: .95rem; font-weight: 600; color: var(--dark); }
.contact-item-value a { color: var(--red); transition: opacity var(--transition); }
.contact-item-value a:hover { opacity: .75; }

/* Contact Form */
.contact-form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196,24,48,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: rgba(46,125,50,.1);
  border: 1px solid rgba(46,125,50,.3);
  color: #1B5E20;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .9rem;
  margin-top: 16px;
}

/* ── CTA Band ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.cta-band::before { width:200px;height:230px; background:rgba(255,255,255,.06); top:-40px; left:5%; }
.cta-band::after  { width:160px;height:184px; background:rgba(255,255,255,.06); bottom:-40px; right:8%; }
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.cta-band p { font-size: 1.05rem; opacity: .85; margin-bottom: 32px; }
.cta-band .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-svg { width: 50px; height: auto; background: #fff; border-radius: 50%; padding: 8px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: var(--white);
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--red); }
.footer-tag { display: flex; align-items: center; gap: 6px; }
.footer-tag span { color: var(--red); }

/* ── Animations (scroll reveal) ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Utility ─────────────────────────────────────────────────── */
.bg-light  { background: var(--gray-100); }
.text-red  { color: var(--red); }
.mt-8      { margin-top: 8px; }
.mt-16     { margin-top: 16px; }
.mt-32     { margin-top: 32px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual   { height: 320px; }
  .hero-logo-wrap .logo-svg-large { width: 180px; height: auto; }
  .about-inner   { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid  { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { padding: 12px 16px; border-radius: var(--radius); width: 100%; }
  .navbar-toggle { display: flex; }
  .hero-visual   { display: none; }
  .hero-inner    { grid-template-columns: 1fr; }
  .hero h1       { font-size: 3.5rem; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .form-row      { grid-template-columns: 1fr; }
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section    { padding: 56px 0; }
  .hero-actions { flex-direction: column; }
  .btn       { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
  .services-grid { grid-template-columns: 1fr; }
}
