/* ================================================================
   FIRE ALARM CREATOR CO.,LTD. — Main Stylesheet
   Palette: Maroon (#7B0D1E) · Gold/Yellow (#D4A017) · Green (#1A5C2E)
   ================================================================ */

:root {
  --maroon:      #7B0D1E;
  --maroon-dark: #560A15;
  --maroon-deep: #3D0710;
  --gold:        #D4A017;
  --gold-light:  #F0C040;
  --gold-pale:   #FDF3D0;
  --green:       #1A5C2E;
  --green-light: #22773B;
  --green-pale:  #E8F5EC;
  --white:       #FFFFFF;
  --off-white:   #FAF8F4;
  --gray-light:  #F2EFE9;
  --gray:        #888;
  --dark:        #1C1008;
  --font-th:     'Sarabun', sans-serif;
  --font-en:     'Oswald', sans-serif;
  --shadow:      0 4px 24px rgba(123,13,30,0.12);
  --shadow-lg:   0 12px 48px rgba(123,13,30,0.18);
  --radius:      10px;
  --radius-lg:   18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-th);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TOPBAR (lang / contact strip) ── */
.topbar {
  background: var(--maroon-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 0.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a { color: var(--gold-light); transition: color .2s; }
.topbar a:hover { color: #fff; }
.lang-switcher { display: flex; gap: 0.5rem; }
.lang-switcher a {
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 0.75rem;
  transition: all .2s;
}
.lang-switcher a:hover,
.lang-switcher a.active {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--maroon);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  flex-shrink: 0;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 3px;
}
.nav-logo-text {
  line-height: 1.2;
}
.nav-logo-text strong {
  display: block;
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: .04em;
}
.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 1.1rem 1.1rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: .02em;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold-light);
  background: rgba(0,0,0,0.15);
}
/* Dropdown */
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--maroon-dark);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  z-index: 300;
  box-shadow: var(--shadow-lg);
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .7rem 1.2rem;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s, color .2s;
}
.dropdown a:hover { background: rgba(212,160,23,.15); color: var(--gold-light); }
.nav-cta {
  margin-left: auto;
  background: var(--gold);
  color: var(--maroon-deep) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 6px;
  font-weight: 800 !important;
  transition: background .2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: white;
  border-radius: 2px;
  transition: .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 45%, #5a1020 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(212,160,23,.04) 0px, rgba(212,160,23,.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(212,160,23,.04) 0px, rgba(212,160,23,.04) 1px, transparent 1px, transparent 60px);
}
.hero-accent {
  position: absolute;
  right: -80px; top: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,.12) 0%, transparent 65%);
}
.hero-accent2 {
  position: absolute;
  left: -60px; bottom: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,92,46,.2) 0%, transparent 65%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.35);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(1.5)}
}
.hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: .01em;
  margin-bottom: 1rem;
}
.hero h1 .highlight { color: var(--gold-light); }
.hero-motto {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 1rem;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}
.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--maroon-deep);
  box-shadow: 0 4px 20px rgba(212,160,23,.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,.45);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.08); }
.btn-green {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 16px rgba(26,92,46,.3);
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-maroon {
  background: var(--maroon);
  color: white;
}
.btn-maroon:hover { background: var(--maroon-dark); }

/* Hero right: logo 12 anni */
.hero-right { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.hero-logo-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-logo-box img { width: 200px; height: 200px; object-fit: contain; border-radius: 50%; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  width: 100%;
}
.stat-chip {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,160,23,.2);
  border-radius: var(--radius);
  padding: .9rem .75rem;
  text-align: center;
  backdrop-filter: blur(6px);
}
.stat-chip .num {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-chip .lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  margin-top: .15rem;
}

/* ── SECTION COMMONS ── */
.section { padding: 5.5rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.25);
  padding: .25rem .8rem;
  border-radius: 100px;
  margin-bottom: .9rem;
}
.section-title {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
  color: var(--maroon-deep);
}
.section-title .accent { color: var(--gold); }
.section-sub {
  color: var(--gray);
  font-size: .95rem;
  max-width: 560px;
  line-height: 1.85;
}
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* BG variants */
.bg-maroon { background: var(--maroon); }
.bg-maroon .section-title { color: white; }
.bg-maroon .section-sub { color: rgba(255,255,255,.72); }
.bg-maroon .section-label { color: var(--gold-light); background: rgba(212,160,23,.15); border-color: rgba(212,160,23,.3); }
.bg-gold-pale { background: var(--gold-pale); }
.bg-green-pale { background: var(--green-pale); }
.bg-gray { background: var(--gray-light); }
.bg-dark { background: var(--maroon-deep); }
.bg-dark .section-title { color: white; }
.bg-dark .section-sub { color: rgba(255,255,255,.65); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(123,13,30,.08);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-header {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  padding: 1.75rem 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.service-card-header::after {
  content: '';
  position: absolute;
  right: -20px; bottom: -20px;
  width: 100px; height: 100px;
  background: rgba(212,160,23,.12);
  border-radius: 50%;
}
.service-icon {
  width: 54px; height: 54px;
  background: rgba(212,160,23,.18);
  border: 2px solid rgba(212,160,23,.35);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card-header h3 {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: .3rem;
}
.service-card-header p { font-size: .8rem; color: rgba(255,255,255,.72); }
.service-card-body { padding: 1.5rem; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-list li {
  display: flex;
  gap: .6rem;
  font-size: .87rem;
  color: #555;
  align-items: flex-start;
}
.service-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .1rem;
}
.service-card-footer {
  padding: 0 1.5rem 1.5rem;
}
.service-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--maroon);
  font-weight: 700;
  font-size: .85rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: .1rem;
  transition: color .2s;
}
.service-card-footer a:hover { color: var(--gold); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-image-wrap { position: relative; }
.why-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.why-badge-overlay {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--maroon-deep);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge-overlay .big { font-family: var(--font-en); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.why-badge-overlay small { font-size: .75rem; font-weight: 700; display: block; }
.why-points { display: flex; flex-direction: column; gap: 1.25rem; }
.why-point {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border-left: 4px solid var(--maroon);
  transition: border-color .2s, transform .2s;
}
.why-point:hover { border-color: var(--gold); transform: translateX(4px); }
.why-point-icon {
  width: 44px; height: 44px;
  background: rgba(123,13,30,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.why-point h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; color: var(--maroon-dark); }
.why-point p { font-size: .83rem; color: var(--gray); line-height: 1.7; }

/* ── CLIENTS / LOGOS ── */
.clients-section { background: var(--gold-pale); }
.clients-intro { text-align: center; margin-bottom: 2.5rem; }
.clients-tier { margin-bottom: 2.5rem; }
.clients-tier-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: .4rem;
  display: inline-block;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.client-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: white;
  border: 1px solid rgba(123,13,30,.12);
  border-radius: var(--radius);
  padding: .6rem 1.1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--maroon-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.client-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.client-chip .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--maroon);
  flex-shrink: 0;
}
.client-chip.gov .dot { background: #003087; }
.client-chip.corp .dot { background: var(--green); }
.client-chip.hotel .dot { background: #8B6914; }

/* ── PROCESS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--green));
}
.step-card { text-align: center; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold-light);
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(123,13,30,.3);
  border: 3px solid var(--gold);
}
.step-card h4 { font-weight: 700; font-size: .95rem; margin-bottom: .4rem; color: var(--maroon-dark); }
.step-card p { font-size: .82rem; color: var(--gray); line-height: 1.7; }

/* ── PRODUCT BRANDS ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.brand-card {
  background: white;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.brand-card .brand-name {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--maroon-dark);
  margin-bottom: .3rem;
}
.brand-card .brand-type {
  font-size: .76rem;
  color: var(--gray);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(212,160,23,.04) 0px, rgba(212,160,23,.04) 1px, transparent 1px, transparent 50px);
}
.page-hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 700;
  color: white;
  position: relative;
  margin-bottom: .75rem;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}
.breadcrumb a { color: var(--gold-light); font-size: .82rem; }
.breadcrumb span { color: rgba(255,255,255,.5); font-size: .82rem; }

/* ── TABS ── */
.tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tab-btn {
  padding: .6rem 1.4rem;
  border-radius: 100px;
  border: 2px solid var(--maroon);
  background: transparent;
  color: var(--maroon);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-th);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--maroon);
  color: white;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── CONTENT GRID ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-img img { width: 100%; object-fit: cover; }

/* ── INFO CARDS ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 4px solid var(--maroon);
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.info-card:hover { transform: translateY(-4px); }
.info-card.gold-top { border-top-color: var(--gold); }
.info-card.green-top { border-top-color: var(--green); }
.info-card h4 { font-weight: 700; margin-bottom: .5rem; color: var(--maroon-dark); font-size: .95rem; }
.info-card p { font-size: .83rem; color: var(--gray); line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(212,160,23,.15);
  border: 2px solid rgba(212,160,23,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item .lbl { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); margin-bottom: .15rem; }
.contact-item .val { font-size: .95rem; font-weight: 600; color: var(--dark); }
.form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-box h3 { font-family: var(--font-en); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--maroon-dark); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: .4rem; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-family: var(--font-th);
  font-size: .9rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--maroon); background: white; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--maroon-deep);
  color: rgba(255,255,255,.8);
}
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-brand .logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-brand .logo img { width: 48px; height: 48px; border-radius: 50%; background: white; padding: 3px; object-fit: contain; }
.footer-brand .logo strong { font-family: var(--font-en); color: var(--gold-light); font-size: .95rem; }
.footer-brand p { font-size: .83rem; line-height: 1.85; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-motto {
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--gold-light);
  font-weight: 700;
  font-style: italic;
}
.footer-col h4 {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
}
.social-btn:hover { background: rgba(212,160,23,.15); border-color: var(--gold); color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--gold-light); }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.float-btn.line { background: #06C755; color: white; }
.float-btn.phone { background: var(--maroon); color: white; }
.float-btn.fb { background: #1877F2; color: white; }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(3,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding: 4rem 1.5rem 3rem; }
  .hero-right { display: none; }
  .why-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .info-cards, .services-grid, .steps-grid, .brands-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--maroon-dark); padding: 1rem 0; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-inner { flex-wrap: wrap; position: relative; padding: .5rem 1rem; }
  .topbar { padding: .4rem 1rem; font-size: .72rem; }
  section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 3.5rem 1.5rem 2.5rem; }
  .footer-main { grid-template-columns: 1fr; padding: 3rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .float-cta { bottom: 1rem; right: 1rem; }
}
