/* ══════════════════════════════════════
   FOUR POINTS LLC — styles.css
══════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dark:    #8B6914;
  --silver:       #C0C0C0;
  --silver-light: #E8E8E8;
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark2:        #181818;
  --dark3:        #1E1E1E;
  --text-light:   #D4D0C8;
  --text-muted:   #888880;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  padding: 10px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--silver-light);
  border: 1px solid rgba(192,192,192,0.35);
  padding: 10px 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── GOLD DIVIDER BAR ── */
.gold-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* ── SECTION BASE ── */
section { padding: 110px 72px; }

.sec-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.sec-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}
.sec-title em { color: var(--gold); font-style: normal; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 90px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all .3s;
}
nav.scrolled { height: 74px; border-bottom-color: rgba(201,168,76,0.3); }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 140px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--text-muted); font-size: 12px; letter-spacing: 1px; text-decoration: none; transition: color .3s; }
.nav-phone:hover { color: var(--gold); }

/* Language Toggle */
.lang-toggle { display: flex; border: 1px solid rgba(201,168,76,0.3); overflow: hidden; }
.lang-btn {
  background: none; border: none; color: var(--text-muted);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  padding: 6px 12px; cursor: pointer; transition: all .3s;
  font-family: 'Montserrat', sans-serif;
}
.lang-btn.active { background: var(--gold); color: #000; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); transition: all .3s; display: block; }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-light); text-decoration: none;
  font-size: 22px; font-family: 'Cormorant Garamond', serif;
  font-weight: 700; letter-spacing: 3px; transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--gold); font-size: 26px; cursor: pointer; }
.mobile-nav .lang-toggle { margin-top: 8px; }

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

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,.97) 0%, rgba(10,10,10,.72) 55%, rgba(10,10,10,.35) 100%),
    url('proj3.jpeg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(201,168,76,.05), transparent 60%);
}

.hero-content { position: relative; z-index: 2; padding: 148px 72px 80px; max-width: 680px; }

.hero-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.hero-tag::before { content: ''; width: 36px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 700; line-height: .95; letter-spacing: -1px; margin-bottom: 8px;
}
.hero-title .l1 { color: #fff; display: block; }
.hero-title .l2 {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block;
}
.hero-title .l3 { color: var(--silver-light); display: block; }

.hero-div { width: 70px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 26px 0; }
.hero-desc { font-size: 13.5px; line-height: 1.9; color: var(--text-muted); max-width: 440px; margin-bottom: 44px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-play {
  display: flex; align-items: center; gap: 10px;
  color: var(--silver-light); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; transition: color .3s; font-weight: 600;
}
.btn-play:hover { color: var(--gold); }
.play-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(192,192,192,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; flex-shrink: 0;
}
.btn-play:hover .play-icon { border-color: var(--gold); background: rgba(201,168,76,.1); }
.play-icon svg { width: 11px; fill: currentColor; margin-left: 2px; }

.hero-stats { position: absolute; bottom: 52px; right: 72px; display: flex; gap: 40px; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1;
}
.stat-label { font-size: 9px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; font-weight: 600; margin-top: 5px; }
.stat-div { width: 1px; background: rgba(201,168,76,.2); align-self: stretch; }

/* ══════════════════════════════════════
   FEATURES BAR
══════════════════════════════════════ */
.features-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 28px 72px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.feat-item { display: flex; align-items: center; gap: 14px; padding: 0 28px; border-right: 1px solid rgba(201,168,76,.1); }
.feat-item:first-child { padding-left: 0; }
.feat-item:last-child  { border-right: none; }
.feat-icon { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.feat-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.feat-title { font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--silver-light); margin-bottom: 3px; }
.feat-desc  { font-size: 10.5px; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about {
  background: var(--dark2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
  position: relative; overflow: hidden;
}
#about::before {
  content: '4P'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif; font-size: 280px; font-weight: 700;
  color: rgba(201,168,76,.025); line-height: 1; pointer-events: none;
}
.about-img-wrap { position: relative; }
.about-img-main   { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(15%); }
.about-img-accent { position: absolute; bottom: -28px; right: -28px; width: 52%; aspect-ratio: 1; object-fit: cover; border: 4px solid var(--dark2); filter: grayscale(15%); }
.about-badge { position: absolute; top: 28px; left: -20px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #000; padding: 18px 20px; text-align: center; }
.about-badge-num  { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; line-height: 1; }
.about-badge-text { font-size: 8.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.about-body { font-size: 13.5px; line-height: 1.9; color: var(--text-muted); margin: 20px 0 16px; }
.about-body strong { color: var(--silver-light); font-weight: 500; }
.about-list { list-style: none; margin-bottom: 40px; }
.about-list li { padding: 12px 0; border-bottom: 1px solid rgba(201,168,76,.1); display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--text-light); }
.about-list li::before { content: '◆'; color: var(--gold); font-size: 7px; flex-shrink: 0; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { background: var(--black); }
.services-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.svc-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; background: var(--dark3); }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.4,0,.2,1), filter .5s; filter: grayscale(25%) brightness(.7); }
.svc-card:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(.5); }
.svc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.15) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 20px; }
.svc-num  { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--gold); margin-bottom: 6px; }
.svc-name { font-size: 14px; font-weight: 700; letter-spacing: .5px; color: #fff; text-transform: uppercase; margin-bottom: 8px; }
.svc-desc { font-size: 11.5px; line-height: 1.7; color: rgba(255,255,255,.55); max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s; opacity: 0; }
.svc-card:hover .svc-desc { max-height: 90px; opacity: 1; }
.svc-arrow { position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border: 1px solid rgba(201,168,76,.4); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; opacity: 0; transform: translateY(-6px); transition: all .3s; }
.svc-card:hover .svc-arrow { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
#gallery { background: var(--dark2); }
.gal-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.gal-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: repeat(2,260px); gap: 3px; }
.gal-item { overflow: hidden; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s; filter: brightness(.85); }
.gal-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gal-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gal-item:nth-child(2) { grid-column: span 4; }
.gal-item:nth-child(3) { grid-column: span 3; }
.gal-item:nth-child(4) { grid-column: span 3; }
.gal-item:nth-child(5) { grid-column: span 4; }
.gal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), transparent 50%); opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; padding: 18px; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
#process { background: var(--black); position: relative; }
#process::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,.04), transparent 60%); pointer-events: none; }
.proc-hdr { text-align: center; margin-bottom: 72px; }
.proc-hdr .sec-tag { justify-content: center; }
.proc-hdr .sec-tag::before { display: none; }
.proc-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.proc-steps::before { content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.15)); z-index: 0; }
.proc-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num-wrap { width: 68px; height: 68px; margin: 0 auto 24px; border: 1px solid rgba(201,168,76,.4); background: var(--dark2); display: flex; align-items: center; justify-content: center; position: relative; }
.step-num-wrap::after { content: ''; position: absolute; inset: 4px; border: 1px solid rgba(201,168,76,.15); }
.step-num  { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.step-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--silver-light); margin-bottom: 10px; }
.step-desc  { font-size: 12px; line-height: 1.8; color: var(--text-muted); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials { background: var(--dark2); }
.test-hdr { text-align: center; margin-bottom: 64px; }
.test-hdr .sec-tag { justify-content: center; }
.test-hdr .sec-tag::before { display: none; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.test-card { background: var(--dark3); padding: 40px 32px; border-top: 2px solid transparent; transition: border-color .3s, transform .3s; position: relative; }
.test-card::before { content: '"'; position: absolute; top: 18px; left: 28px; font-family: 'Cormorant Garamond', serif; font-size: 72px; color: rgba(201,168,76,.1); line-height: 1; }
.test-card:hover { border-top-color: var(--gold); transform: translateY(-4px); }
.test-stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 18px; }
.test-text  { font-size: 12.5px; line-height: 1.9; color: var(--text-muted); margin-bottom: 24px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-av   { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: #000; flex-shrink: 0; }
.test-name { font-size: 12.5px; font-weight: 600; color: var(--silver-light); }
.test-loc  { font-size: 10.5px; color: var(--text-muted); letter-spacing: .5px; }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
#cta { background: var(--dark); position: relative; overflow: hidden; text-align: center; padding: 110px 72px; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,.06), transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(192,192,192,.03), transparent 60%); }
.cta-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 72px; background: linear-gradient(to bottom, var(--gold), transparent); }
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-tag { justify-content: center; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px,5vw,64px); font-weight: 700; color: #fff; margin: 14px 0 22px; line-height: 1.05; }
.cta-title em { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; }
.cta-text    { font-size: 13.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 44px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-phone   { display: flex; align-items: center; gap: 8px; margin-top: 36px; justify-content: center; color: var(--text-muted); font-size: 12.5px; flex-wrap: wrap; }
.cta-phone a { color: var(--silver-light); text-decoration: none; letter-spacing: .5px; }
.cta-phone a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: #060606; border-top: 1px solid rgba(201,168,76,.12); padding: 72px; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.foot-brand p { font-size: 12.5px; line-height: 1.9; color: var(--text-muted); margin-top: 18px; max-width: 280px; }
.foot-col h4  { font-size: 9.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot-col ul  { list-style: none; }
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 12.5px; transition: color .3s; }
.foot-col ul li a:hover { color: var(--silver-light); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(201,168,76,.08); flex-wrap: wrap; gap: 16px; }
.foot-copy   { font-size: 10.5px; color: var(--text-muted); }
.foot-copy span { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-link  { width: 34px; height: 34px; border: 1px solid rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all .3s; font-size: 12px; font-weight: 600; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤1100px)
══════════════════════════════════════ */
@media (max-width: 1100px) {
  nav { padding: 0 28px; }
  .nav-links { gap: 22px; }
  .features-bar { padding: 24px 28px; }
  .feat-item { padding: 0 16px; }
  section { padding: 80px 28px; }
  #about { gap: 48px; }
  .hero-content { padding: 128px 28px 70px; }
  .hero-stats { right: 28px; bottom: 36px; gap: 24px; }
  .stat-num { font-size: 32px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .gal-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gal-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 210px; }
  .test-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 20px; }
  .features-bar { padding: 20px; grid-template-columns: repeat(2,1fr); gap: 16px; }
  .feat-item { border-right: none; padding: 0 8px; }
  section { padding: 64px 20px; }
  #about { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge { left: -8px; }
  .proc-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .proc-steps::before { display: none; }
  .hero-content { padding: 118px 20px 60px; max-width: 100%; }
  .hero-stats { position: static; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 36px; }
  .stat-div { display: none; }
  .stat-num { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { aspect-ratio: 16/9; }
  .svc-desc { max-height: 80px !important; opacity: 1 !important; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-item { height: 240px; }
  footer { padding: 48px 20px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
  .proc-steps { grid-template-columns: 1fr; }
  .test-grid  { grid-template-columns: 1fr; }
  .hero-title { font-size: 42px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
