/* ===========================
   Best Monting d.o.o. — CSS
   =========================== */

/* --- Variables --- */
:root {
  --yellow: #F5A500;
  --yellow-dark: #D98F00;
  --yellow-light: #FFF3D6;
  --black: #1A1A1A;
  --dark: #242424;
  --gray: #6B6B6B;
  --gray-light: #F5F5F5;
  --gray-mid: #E0E0E0;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --nav-height: 80px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { color: var(--gray); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.section-title { color: var(--black); margin-bottom: 1rem; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 600px; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,165,0,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .logo-best {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}
.nav-logo-text .logo-sub {
  font-size: 0.8rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  background: var(--gray-light);
}
.nav-links a.active { color: var(--yellow-dark); font-weight: 600; }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 999;
  padding: 1rem 2rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--black); background: var(--gray-light); }
.nav-mobile .btn { margin-top: 0.5rem; justify-content: center; }

/* Page offset */
.page-offset { padding-top: var(--nav-height); }

/* ===========================
   HERO — HOME
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: 8rem 0 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,26,0.97) 0%, rgba(36,36,36,0.90) 60%, rgba(26,26,26,0.95) 100%);
}
.hero-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,165,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-accent-2 {
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,165,0,0.15);
  border: 1px solid rgba(245,165,0,0.3);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: var(--dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero h1 span { color: var(--yellow); }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 1rem; font-size: 1.1rem; }

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 6rem 0; }
.section-alt { background: var(--gray-light); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===========================
   SERVICES GRID
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,165,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--yellow-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 28px; height: 28px; color: var(--yellow-dark); }
.service-card h3 { color: var(--black); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.93rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--yellow-dark);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.7rem; }

/* ===========================
   WHY US
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 1.75rem; }
.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; color: var(--black); }
.why-feature h3 { color: var(--black); margin-bottom: 0.4rem; font-size: 1.05rem; }
.why-feature p { font-size: 0.92rem; }
.why-visual {
  position: relative;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.why-visual-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(245,165,0,0.12) 0%, transparent 50%),
    linear-gradient(to top, rgba(26,26,26,0.95) 30%, transparent 100%);
}
.why-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.why-visual-content { position: relative; z-index: 2; }
.why-visual-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.why-visual-title span { color: var(--yellow); }
.why-visual-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.why-visual-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.why-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.why-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

/* ===========================
   REFERENCES
   =========================== */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}
.ref-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.ref-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.ref-card-img {
  height: 200px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ref-card-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
}
.ref-card-img-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.ref-card-img-icon {
  position: relative;
  z-index: 2;
  width: 64px; height: 64px;
  background: rgba(245,165,0,0.15);
  border: 2px solid rgba(245,165,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-card-img-icon svg { width: 30px; height: 30px; color: var(--yellow); }
.ref-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 3;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.ref-card-body { padding: 1.75rem; }
.ref-card-body h3 { color: var(--black); margin-bottom: 0.6rem; font-size: 1.1rem; }
.ref-card-body p { font-size: 0.9rem; margin-bottom: 1rem; }
.ref-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.ref-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}
.ref-meta-item svg { width: 14px; height: 14px; color: var(--yellow-dark); }

/* ===========================
   SERVICES PAGE
   =========================== */
.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.service-full:last-child { border-bottom: none; }
.service-full.reverse { direction: rtl; }
.service-full.reverse > * { direction: ltr; }
.service-full-visual {
  background: var(--dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-full-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
}
.service-full-visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.service-full-visual-icon {
  position: relative;
  z-index: 2;
  width: 100px; height: 100px;
  background: rgba(245,165,0,0.12);
  border: 2px solid rgba(245,165,0,0.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-full-visual-icon svg { width: 52px; height: 52px; color: var(--yellow); }
.service-full-content .section-label { margin-bottom: 0.5rem; }
.service-full-content h2 { margin-bottom: 1rem; }
.service-full-content p { margin-bottom: 1.5rem; }
.service-list { display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--gray);
}
.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--yellow-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--yellow-dark); }
.contact-info-item h4 { color: var(--black); font-size: 0.9rem; margin-bottom: 0.3rem; }
.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}
.contact-info-item a:hover { color: var(--yellow-dark); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
}
.contact-form h3 { margin-bottom: 0.5rem; }
.contact-form > p { font-size: 0.93rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,165,0,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success-icon {
  width: 64px; height: 64px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.form-success-icon svg { width: 30px; height: 30px; color: var(--yellow-dark); }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: var(--yellow);
  padding: 5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--black); }
.cta-inner p { color: rgba(26,26,26,0.7); max-width: 500px; }
.btn-cta-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.btn-cta-dark:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text .logo-best {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-text .logo-sub {
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 600;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.7rem;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--yellow); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom span { color: var(--yellow); }

/* ===========================
   UTILITIES
   =========================== */
.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Divider */
.divider {
  width: 60px; height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.centered .divider { margin: 1rem auto 1.5rem; }

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-full { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-full.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .references-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-value { font-size: 1.8rem; }
  .contact-form { padding: 1.5rem; }
}
