/* ============================================================
   Byggefirma — demoside (snekker og tømrer)
   Plain HTML/CSS/JS build
   ============================================================ */

:root {
  --dark: #16181C;
  --steel: #29394D;
  --accent: #2B6CB0;
  --accent-hover: #3A7DC4;
  --light: #F2F4F6;
  --border-light: #E1E4E8;
  --muted-dark: #aab2bd;
  --muted-light: #51565e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--dark);
  color: var(--dark);
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

input, textarea { font-family: 'Open Sans', sans-serif; }
input::placeholder, textarea::placeholder { color: #9a9a96; }

img { max-width: 100%; display: block; }

/* Ensure the [hidden] attribute always wins over component display rules
   (e.g. .form-success sets display:flex; it must stay hidden until toggled). */
[hidden] { display: none !important; }

@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

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

/* ---------- reveal ---------- */
.reveal-init { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-in { opacity: 1; transform: none; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22,22,22,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #333;
}
.header-inner {
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Anton', sans-serif; font-size: 26px; letter-spacing: 2px;
  color: #fff;
}
.brand .bm-1 { color: var(--accent); }
.brand .bm-2 { color: #fff; }

/* Hexagon monogram — echoes the site's hexagon motif so the wordmark reads
   as a logo. Built with clip-path, no image file. */
.brand-badge {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 31px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--accent); color: #fff;
  font-family: 'Anton', sans-serif; font-size: 16px; letter-spacing: 0;
  line-height: 1; padding-bottom: 1px;
}
.main-nav {
  display: flex; align-items: center; gap: 28px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.main-nav a { color: #fff; }
.main-nav a:hover { color: var(--accent); }

.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--accent); border-radius: 999px; padding: 8px 18px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.5px; white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.phone-pill:hover { background: var(--accent); color: #fff; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer; border: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 16px 34px; font-weight: 800; font-size: 16px; letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); }

.btn-primary-sm {
  background: var(--accent); color: #fff;
  padding: 15px 32px; font-weight: 800; font-size: 15px;
}
.btn-primary-sm:hover { background: var(--accent-hover); color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--accent); color: var(--accent);
  border-radius: 999px; padding: 14px 30px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-outline-sm {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 10px;
  border: 2px solid var(--accent); border-radius: 999px; padding: 12px 24px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-sm:hover { background: var(--accent); color: #fff; }

.btn-outline-dark {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 10px;
  border: 2px solid var(--dark); border-radius: 999px; padding: 12px 24px;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--accent); }

/* ============ HERO ============ */
.hero {
  color: #fff; position: relative; overflow: hidden;
  min-height: 82vh;
  display: flex; align-items: center;
  /* fallback tone + poster still if the video can't paint */
  background-color: var(--dark);
  background-image: url('hero-poster.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Looping background video (already trimmed to the 0:00–0:15 segment). */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
/* Palette-matched navy overlay: darkest on the left (behind the text) and
   along the bottom (behind the CTAs), fading over the video on the right. */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(100deg, rgba(16,18,22,0.90) 0%, rgba(20,27,38,0.72) 44%, rgba(20,27,38,0.42) 100%),
    linear-gradient(to top, rgba(16,18,22,0.90) 0%, rgba(16,18,22,0.14) 55%);
}
.hero-hex-1 {
  position: absolute; z-index: 1; top: -60px; right: -80px; width: 340px; height: 380px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--steel); opacity: 0.38; animation: hexFloat 9s ease-in-out infinite;
}
.hero-hex-2 {
  position: absolute; z-index: 1; bottom: -120px; right: 160px; width: 200px; height: 224px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: inset 0 0 0 3px var(--accent); opacity: 0.35;
}
.hero-inner {
  padding: clamp(72px, 12vw, 140px) 24px clamp(64px, 10vw, 120px);
  position: relative; z-index: 2; width: 100%;
}
/* Reduced motion: hide the moving video and let the poster still show through. */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-hex-1 { animation: none; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid #3a4a5e; background: rgba(41,57,77,0.55);
  border-radius: 999px; padding: 8px 18px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: #c2ccd8; margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(52px, 9vw, 116px); line-height: 0.98; letter-spacing: 1px;
  text-transform: uppercase; margin: 0 0 28px; max-width: 900px;
  text-shadow: 0 2px 22px rgba(0,0,0,0.55);
}
.hero h1 span { color: var(--accent); }
.hero-lead {
  font-size: clamp(17px, 2vw, 21px); line-height: 1.6; color: #dce1e8;
  max-width: 560px; margin: 0 0 34px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 40px;
}
.hero-cred {
  display: inline-flex; align-items: center; gap: 12px; color: #c8d0da;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ============ SECTION PRIMITIVES ============ */
.section-inner { padding: clamp(64px, 9vw, 110px) 24px; }
.eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.05; text-transform: uppercase;
  letter-spacing: 0.5px; margin: 0 0 16px;
}
.section-title span { color: var(--accent); }

/* ============ HVORFOR OSS ============ */
.why { background: var(--dark); color: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; align-items: stretch; margin-top: 8px;
}
.why-card {
  background: #F5F6F8; color: var(--dark);
  border-top: 3px solid var(--accent);
  padding: 30px 28px 32px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.40);
}
.why-motif svg { display: block; }
.why-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px;
  letter-spacing: 0.2px; color: var(--dark);
}
.why-text { font-size: 16px; line-height: 1.6; color: var(--muted-light); margin: 0; }
.why-closing {
  text-align: center; margin: clamp(34px, 5vw, 50px) 0 0;
  font-size: 16px; line-height: 1.6; color: #c8d0da;
}
.why-closing a { font-weight: 600; }

/* ============ NØKKELTALL ============ */
.stats { background: var(--steel); color: #fff; }
.stats-grid {
  padding: clamp(48px, 7vw, 80px) 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 32px;
}
.stat {
  display: flex; flex-direction: column; gap: 10px;
  border-left: 3px solid var(--accent); padding-left: 20px;
}
.stat-value {
  font-family: 'Anton', sans-serif; font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.5px; color: var(--accent); text-transform: uppercase;
}
.stat-label {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; color: #c8d0da;
}

/* ============ TJENESTER ============ */
.services { background: var(--light); color: var(--dark); }
.services-lead {
  font-size: 18px; line-height: 1.6; color: var(--muted-light);
  max-width: 560px; margin: 0 0 48px;
}
.section-title.services-title { max-width: 720px; }
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.service-card {
  background: #fff; border: 1px solid var(--border-light); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(22,22,22,0.10);
  border-color: var(--accent);
}
.service-num {
  width: 46px; height: 51px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif; font-size: 20px; color: #fff;
}
.service-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: 0.3px; }
.service-desc { font-size: 16px; line-height: 1.55; color: var(--muted-light); }

.services-footer {
  margin-top: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
}
.services-footer span { font-size: 15px; color: var(--muted-light); }
.services-footer span a { font-weight: 600; }

/* ============ OM OSS ============ */
.about { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.about-hex {
  position: absolute; bottom: -90px; left: -70px; width: 280px; height: 314px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: inset 0 0 0 3px var(--steel); opacity: 0.8;
}
.about-inner {
  padding: clamp(64px, 9vw, 110px) 24px;
  position: relative;
}
.about-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 72px); align-items: center; position: relative;
}
.about-text p {
  font-size: 17px; line-height: 1.7; color: var(--muted-dark); margin: 0 0 20px;
}
.about-text p:last-child { margin-bottom: 0; }

/* Om oss — photo */
.about-media { position: relative; aspect-ratio: 4 / 5; }
.about-media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(43,108,176,0.35);
  box-shadow: 0 24px 54px rgba(0,0,0,0.55);
}
/* subtle accent L-bracket peeking out behind the photo (desktop only) */
.about-media::before {
  content: ''; position: absolute; z-index: 0;
  left: -16px; bottom: -16px; width: 58%; height: 52%;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  opacity: 0.5; pointer-events: none;
}

.about-points {
  margin-top: clamp(36px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px;
}
.about-point {
  background: var(--steel); padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px;
}
.about-point .pt-body { display: flex; flex-direction: column; gap: 4px; }
.about-point .pt-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
  letter-spacing: 0.5px; color: #fff;
}
.about-point .pt-desc { font-size: 15px; line-height: 1.55; color: #c8d0da; }

/* ============ PROSJEKTER ============ */
.projects { background: var(--steel); color: #fff; }
.projects-lead {
  font-size: 17px; line-height: 1.6; color: #c8d0da; max-width: 560px; margin: 0 0 48px;
}
.projects-lead a { font-weight: 600; }
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.project-item {
  position: relative; display: block; width: 100%; margin: 0; padding: 0;
  aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--dark); border: none; cursor: pointer;
}
.project-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
/* readability gradient so the tag chip stays legible over any photo */
.project-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(11,14,20,0.72) 0%, rgba(11,14,20,0.10) 42%, transparent 68%);
  opacity: 0.9; transition: opacity 0.3s ease;
}
.project-item:hover img { transform: scale(1.06); }
.project-item:hover::after { opacity: 1; }
.project-item:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.project-tag {
  position: absolute; z-index: 1; left: 16px; bottom: 14px;
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--accent); background: rgba(16,18,22,0.55);
  border-radius: 999px; padding: 5px 14px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,12,16,0.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 94vw); max-height: 88vh;
  width: auto; height: auto; object-fit: contain;
  box-shadow: 0 24px 70px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: var(--accent); }
body.no-scroll { overflow: hidden; }

/* Projects gallery: 3 cols desktop → 2 cols tablet → 1 col mobile */
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .projects-grid { grid-template-columns: 1fr; } }

/* ============ VURDERINGER ============ */
.reviews { background: var(--dark); color: #fff; }
.reviews-lead {
  font-size: 17px; line-height: 1.6; color: var(--muted-dark); max-width: 560px; margin: 0 0 40px;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.review-card {
  background: #1d2532; border: 1px solid #2b3646; border-top: 3px solid var(--accent);
  border-radius: 14px; padding: 30px 28px 32px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.32);
}
.review-quote { font-size: 18px; line-height: 1.6; color: #d6dbe2; font-style: italic; }
.review-attrib {
  margin-top: auto; /* keep attributions bottom-aligned across varied lengths */
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent);
}

/* ============ KONTAKT ============ */
.contact { background: var(--light); color: var(--dark); }
.contact-grid {
  padding: clamp(64px, 9vw, 110px) 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 80px);
}
.contact-lead {
  font-size: 18px; line-height: 1.6; color: var(--muted-light); max-width: 480px; margin: 0 0 36px;
}
.contact-actions { display: flex; flex-direction: column; gap: 16px; }

.form-card {
  background: #fff; border: 1px solid var(--border-light); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-card label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-light);
}
.form-card input, .form-card textarea {
  border: 1px solid var(--border-light); padding: 13px 16px; font-size: 16px;
  background: var(--light); color: var(--dark); outline: none;
  transition: border-color 0.15s ease;
}
.form-card textarea { resize: vertical; }
.label-optional { color: #a2a29b; font-weight: 600; text-transform: none; letter-spacing: 0.2px; }
.form-card input:focus, .form-card textarea:focus { border-color: var(--accent); }
.form-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px;
}
.form-submit { align-self: flex-start; }
.field-error {
  color: #c0392b; font-family: 'Open Sans', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0; text-transform: none; display: none;
}
.field-error.show { display: block; }

.form-success {
  background: #fff; border: 1px solid var(--border-light); padding: 56px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.form-success .success-title { font-family: 'Anton', sans-serif; font-size: 28px; text-transform: uppercase; }
.form-success .success-text { font-size: 16px; color: var(--muted-light); max-width: 340px; line-height: 1.6; }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); color: #8a8a86; border-top: 4px solid var(--accent); }
.footer-inner {
  padding: clamp(48px, 7vw, 72px) 24px 40px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Anton', sans-serif; font-size: 32px; letter-spacing: 2px; color: #fff;
}
.footer-logo .bm-1 { color: var(--accent); }
.footer-logo .bm-2 { color: #fff; }
.footer-logo .brand-badge { width: 34px; height: 38px; font-size: 19px; }
.footer-tagline {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted-dark);
}
.footer-cert {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; margin-top: 8px;
  border: 1.5px solid var(--steel); border-radius: 999px; padding: 7px 16px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; color: #c8d0da;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; line-height: 1.6; }
.footer-col-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 6px;
}
.footer-col a { color: var(--accent); }
.footer-legal {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 32px; font-size: 12px; color: #55554f;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 759px) {
  .main-nav { display: none; }
  /* Hero: let the content set the height, but keep a comfortable floor so the
     photo reads as intentional. Bias the crop toward the house, not the lawn. */
  .hero { min-height: 78vh; background-position: center 38%; }
  /* Om oss: keep the decorative panel and drop the L-bracket on the stacked layout. */
  .about-media { margin-top: 8px; aspect-ratio: 4 / 5; }
  .about-media::before { display: none; }
  /* Comfortable tap target for the header call button on touch screens. */
  .phone-pill { padding: 11px 18px; }
}

@media (max-width: 420px) {
  .header-inner { padding: 12px 16px; }
  .brand { font-size: 21px; letter-spacing: 0.5px; gap: 6px; }
  .brand-badge { width: 22px; height: 24px; font-size: 13px; }
  .phone-pill { padding: 12px 16px; font-size: 13px; }
  /* Long wordmark + monogram: ease the footer size so it isn't cramped at the edge. */
  .footer-logo { font-size: 27px; }
  .footer-logo .brand-badge { width: 29px; height: 32px; font-size: 16px; }
  /* Keep the eyebrow badge on one line at the narrowest widths. */
  .hero-badge { letter-spacing: 1.2px; font-size: 11px; padding: 7px 15px; }
  .hero-inner,
  .section-inner,
  .stats-grid,
  .about-inner,
  .contact-grid { padding-left: 18px; padding-right: 18px; }
  .form-card { padding: 28px 20px; }
}
