:root {
  --orange: #e16b2e;
  --orange-deep: #c75a23;
  --black: #000000;
  --ink-soft: #141414;
  --gray-light: #f6f6f6;
  --gray-mid: #888;
  --gray-border: rgba(0,0,0,0.1);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 14px 34px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.20);
  --ease: cubic-bezier(.22,.8,.2,1);
}
html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; color: var(--black); background: #fff; line-height: 1.5; }
.display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
.mono { font-family: 'JetBrains Mono', monospace; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 40px 0; }
.section-title { font-size: clamp(26px, 4vw, 34px); margin-bottom: 10px; }
.section-sub { color: var(--gray-mid); font-size: 15px; margin-bottom: 40px; max-width: 620px; }
.center { text-align: center; }

.calc-row { display: grid; grid-template-columns: 1.6fr 1fr 0.8fr 1fr 0.8fr 0.7fr; gap: 14px; max-width: 980px; align-items: end; }
@media (max-width: 900px) { .calc-row { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 460px) { .calc-row { grid-template-columns: 1fr 1fr; } }

/* ---------- Process steps ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; gap: 28px; } }
.process-steps::before {
  content: ''; position: absolute; top: 19px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-border) 0 8px, transparent 8px 14px);
}
@media (max-width: 900px) { .process-steps::before { display: none; } }
.process-step { position: relative; }
.process-step .step-num {
  font-size: 15px; font-weight: 700; width: 38px; height: 38px; border-radius: 50%; background: var(--black); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; z-index: 1;
  font-family: 'JetBrains Mono', monospace;
}
.process-step .step-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.process-step .step-desc { font-size: 13px; color: var(--gray-mid); line-height: 1.5; }
.btn-primary, .btn-secondary, .btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; min-height: 48px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  border: 1px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #000; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-secondary.on-light { border-color: var(--gray-border); color: var(--black); }
.btn-secondary.on-light:hover { border-color: var(--black); background: var(--black); color: #fff; }
.btn-whatsapp { background: #1ea952; color: #fff; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: #178a42; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp:active, .btn-primary:active, .btn-secondary:active { transform: translateY(0); }
.btn-whatsapp svg, .btn-primary svg, .btn-secondary svg { flex-shrink: 0; }

/* ---------- Header ---------- */
#site-header {
  position: sticky; top: 0; z-index: 200; background: var(--black); color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-inner { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-size: 22px; white-space: nowrap; }
.logo span { color: var(--orange); }
.main-nav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  color: rgba(255,255,255,0.78); font-size: 13px; padding: 10px 12px; display: inline-block; background: none; border: none;
  transition: color 0.15s;
}
.nav-item > a:hover, .nav-item > button:hover, .nav-item.active > a, .nav-item.active > button { color: #fff; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0; background: #111; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 8px; min-width: 200px; flex-direction: column;
}
.nav-item:hover .nav-dropdown { display: flex; }
.nav-dropdown a { font-size: 13px; padding: 8px 12px; border-radius: 5px; color: rgba(255,255,255,0.75); }
.nav-dropdown a:hover { background: rgba(255,255,255,0.06); color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn-whatsapp, .header-actions .btn-primary { padding: 9px 16px; font-size: 13px; }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .main-nav.mobile-open {
    display: flex; flex-direction: column; position: fixed; top: 58px; left: 0; right: 0; bottom: 0;
    background: var(--black); padding: 16px; overflow-y: auto; z-index: 199;
  }
  .main-nav.mobile-open .nav-dropdown { display: flex; position: static; border: none; padding-left: 14px; }
}

/* ---------- Hero ---------- */
.hero { background: var(--black); color: #fff; padding: 90px 24px 70px; text-align: center; position: relative; overflow: hidden; }
.hero.small { padding: 60px 24px 50px; }
.hero:not(.small)::before {
  content: ''; position: absolute; top: -10%; left: 8%; width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(225,107,46,0.24) 0%, rgba(225,107,46,0.08) 45%, transparent 72%);
  pointer-events: none;
}
@media (max-width: 980px) { .hero:not(.small)::before { left: 50%; transform: translateX(-50%); } }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(40px, 7vw, 68px); line-height: 0.97; max-width: 880px; margin: 0 auto; }
.hero.small h1 { font-size: clamp(32px, 5vw, 46px); }
.hero h1 .accent { color: var(--orange); }
.hero p.lead { margin: 22px auto 0; max-width: 620px; color: rgba(255,255,255,0.72); font-size: clamp(15px, 2vw, 17px); }
.hero-ctas { margin-top: 30px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-crumb { color: var(--orange); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; font-weight: 600; }
.hero-trust-row {
  margin-top: 26px; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,0.55);
}
.hero-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-row .dot { color: #1ea952; }

.cove svg { display: block; width: 100%; height: 80px; color: white; }
.cove.dark svg { color: var(--black); }
.cove.flip svg { transform: rotate(180deg); }

/* ---------- Hero split (homepage only) ---------- */
.hero-split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  text-align: left; max-width: 1240px; margin: 0 auto; position: relative; z-index: 1;
}
.hero-split { min-width: 0; }
.hero-split > * { min-width: 0; }
.hero-split .hero-copy { text-align: left; }
.hero-split .hero-crumb, .hero-split .hero-ctas, .hero-split .hero-trust-row { justify-content: flex-start; }
.hero-split h1 { margin: 0; max-width: none; }
.hero-split p.lead { margin: 18px 0 0; max-width: 480px; }
.hero-preview {
  background: #fff; border-radius: 20px 20px 20px 4px; box-shadow: var(--shadow-lg);
  padding: 18px; color: var(--black);
}
.hero-preview-label {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding: 0 4px;
}
.hero-preview-label span:first-child { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-mid); font-weight: 700; }
.hero-preview-label .live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #1ea952; margin-right: 6px; animation: pulse-dot 2s infinite; }
.hero-preview-row {
  display: flex; align-items: center; gap: 12px; padding: 10px 4px; border-radius: 10px; transition: background 0.15s;
}
.hero-preview-row:hover { background: var(--gray-light); }
.hero-preview-row + .hero-preview-row { border-top: 1px solid var(--gray-border); }
.hero-preview-thumb { width: 48px; height: 48px; border-radius: 8px; background-size: cover; background-position: center; background-color: var(--gray-light); flex-shrink: 0; }
.hero-preview-info { flex: 1; min-width: 0; }
.hero-preview-info .name { font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-preview-info .meta { font-size: 11px; color: var(--gray-mid); }
.hero-preview-price { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600; text-align: right; flex-shrink: 0; }

@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; gap: 36px; }
  .hero-split .hero-copy, .hero-split .hero-crumb, .hero-split .hero-ctas, .hero-split .hero-trust-row { text-align: center; justify-content: center; }
  .hero-split p.lead { margin-left: auto; margin-right: auto; }
}

@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-group.is-visible .reveal-item { opacity: 1; transform: none; }
.reveal-item { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-group.is-visible .reveal-item:nth-child(1) { transition-delay: 0.03s; }
.reveal-group.is-visible .reveal-item:nth-child(2) { transition-delay: 0.09s; }
.reveal-group.is-visible .reveal-item:nth-child(3) { transition-delay: 0.15s; }
.reveal-group.is-visible .reveal-item:nth-child(4) { transition-delay: 0.21s; }
.reveal-group.is-visible .reveal-item:nth-child(5) { transition-delay: 0.27s; }
.reveal-group.is-visible .reveal-item:nth-child(6) { transition-delay: 0.33s; }
.reveal-group.is-visible .reveal-item:nth-child(7) { transition-delay: 0.39s; }
.reveal-group.is-visible .reveal-item:nth-child(8) { transition-delay: 0.45s; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 400; width: 58px; height: 58px; border-radius: 50%;
  background: #1ea952; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: transform 0.2s var(--ease); animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); animation: none; }
.wa-float svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(30,169,82,0.45), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 14px rgba(30,169,82,0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(30,169,82,0), var(--shadow-lg); }
}
@media (max-width: 600px) { .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; } .wa-float svg { width: 25px; height: 25px; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.gear-card {
  border: 1px solid var(--gray-border); border-radius: 12px; overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
  box-shadow: var(--shadow-sm); background: #fff; position: relative;
}
.gear-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: rgba(225,107,46,0.3); }
.gear-card-img { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--gray-light); position: relative; overflow: hidden; }
.gear-card-img::after {
  content: '\2197'; position: absolute; right: 10px; bottom: 10px; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--black); display: flex; align-items: center; justify-content: center;
  font-size: 15px; opacity: 0; transform: translateY(6px); transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.gear-card:hover .gear-card-img::after { opacity: 1; transform: none; }
.gear-card-body { padding: 14px; }
.gear-cat { font-size: 11px; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.04em; }
.gear-name { font-size: 14px; font-weight: 600; margin: 4px 0 8px; min-height: 36px; }
.gear-price { font-family: 'JetBrains Mono', monospace; font-size: 15px; }
.gear-price span { font-size: 11px; color: var(--gray-mid); font-family: inherit; }

.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; position: relative; }
@media (max-width: 700px) { .stat-grid { grid-template-columns: repeat(2,1fr); gap: 32px 16px; } }
.stat-grid > div { position: relative; padding: 0 12px; }
.stat-grid > div:not(:last-child)::after {
  content: ''; position: absolute; right: -1px; top: 8px; bottom: 8px; width: 1px; background: var(--gray-border);
}
@media (max-width: 700px) { .stat-grid > div:nth-child(2n)::after { display: none; } }
.stat-num { font-size: clamp(32px, 5vw, 42px); color: var(--orange); }
.stat-label { font-size: 12.5px; margin-top: 4px; color: var(--gray-mid); }

.category-pill-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 900px) { .category-pill-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .category-pill-grid { grid-template-columns: repeat(2, 1fr); } }
.category-pill {
  display: block; text-align: center; border: 1px solid var(--gray-border); border-radius: 10px;
  padding: 22px 10px; font-size: 13px; font-weight: 600; transition: all 0.15s;
}
.category-pill:hover { border-color: var(--orange); color: var(--orange); }
.category-pill .count { display: block; font-size: 11px; color: var(--gray-mid); font-weight: 400; margin-top: 3px; }

/* ---------- Studio cards ---------- */
.studio-card { border: 1px solid var(--gray-border); border-radius: 14px; overflow: hidden; }
.studio-card-img { height: 200px; background: var(--gray-light); display:flex; align-items:center; justify-content:center; color: var(--gray-mid); font-size: 13px;}
.studio-card-body { padding: 20px; }
.studio-card-body h3 { font-size: 20px; margin-bottom: 6px; }
.studio-card-body p { font-size: 13px; color: #444; margin-bottom: 14px; }

/* ---------- Testimonials ---------- */
.testimonial {
  border: 1px solid var(--gray-border); border-radius: 12px; padding: 26px 22px 22px; position: relative;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease); background: #fff;
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial::before {
  content: '\201C'; position: absolute; top: 10px; right: 18px; font-family: Georgia, serif; font-size: 52px;
  color: rgba(225,107,46,0.15); line-height: 1;
}
.testimonial p.quote { font-size: 14px; color: #333; margin-bottom: 14px; font-style: italic; position: relative; z-index: 1; }
.testimonial p.author { font-size: 13px; font-weight: 700; }
.testimonial p.role { font-size: 12px; color: var(--gray-mid); }
.sample-flag { display: inline-block; font-size: 10px; background: #fff4e0; color: #a6650a; padding: 2px 7px; border-radius: 4px; margin-bottom: 8px; }

/* ---------- Brand logos ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 700px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
.brand-tile {
  border: 1px solid var(--gray-border); border-radius: 10px; padding: 26px; text-align: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.03em;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.brand-tile:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; padding: 3px 9px; border-radius: 20px; font-weight: 600; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.badge-in { background: #e7f6ec; color: #1a7d3a; }
.badge-out { background: #fdeaea; color: #b3261e; }
.badge-pending { background: #fff4e0; color: #a6650a; }

/* ---------- Promo banner ---------- */
.promo-banner {
  background: var(--orange); color: #000; padding: 13px 24px; text-align: center; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.promo-banner a { text-decoration: underline; font-weight: 700; }

/* ---------- Value props ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--ink-soft); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 26px 22px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(225,107,46,0.4); }
.value-card .value-icon { font-size: 22px; margin-bottom: 14px; }
.value-card h3 { font-size: 15px; margin-bottom: 6px; color: #fff; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ---------- Section dark/light alternation ---------- */
.section-dark { background: var(--black); color: #fff; }
.section-light { background: var(--gray-light); }

.policy-list { padding-left: 18px; font-size: 14px; color: #333; }
.policy-list li { margin-bottom: 8px; }

/* ---------- Policy pages ---------- */
.policy-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.policy-nav a { font-size: 12px; border: 1px solid var(--gray-border); border-radius: 16px; padding: 6px 13px; }
.policy-nav a.current { background: var(--black); color: #fff; border-color: var(--black); }
.policy-content { max-width: 720px; }
.policy-content h2 { font-size: 18px; margin: 26px 0 10px; }
.policy-content ul { padding-left: 18px; font-size: 14px; color: #333; }
.policy-content li { margin-bottom: 8px; }
.policy-updated { font-size: 12px; color: var(--gray-mid); margin-bottom: 24px; }
.legal-note { font-size: 12px; color: var(--gray-mid); background: var(--gray-light); padding: 12px 14px; border-radius: 8px; margin-top: 30px; max-width: 720px; }

/* ---------- Support center ---------- */
.support-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.support-tab { border: 1px solid var(--gray-border); border-radius: 18px; padding: 8px 16px; font-size: 13px; }
.support-tab.current { background: var(--black); color: #fff; border-color: var(--black); }
.faq-item { border-bottom: 1px solid var(--gray-border); padding: 16px 0; }
.faq-q { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.faq-a { font-size: 13px; color: #444; }

/* ---------- Portfolio ---------- */
.portfolio-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-tile { border-radius: 10px; overflow: hidden; position: relative; background: var(--gray-light); aspect-ratio: 4/3; display:flex; align-items:flex-end;}
.portfolio-tile .tile-label { background: rgba(0,0,0,0.7); color: #fff; font-size: 12px; padding: 8px 12px; width: 100%; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.contact-item .icon { font-size: 20px; }
.contact-item h4 { font-size: 14px; margin-bottom: 2px; }
.contact-item p { font-size: 13px; color: #444; }
.map-frame { width: 100%; height: 280px; border-radius: 10px; border: 1px solid var(--gray-border); }

/* ---------- Tracker (delivery status) ---------- */
.tracker { display: flex; justify-content: space-between; margin: 30px 0; max-width: 600px; }
.tracker-step { flex: 1; text-align: center; font-size: 12px; color: var(--gray-mid); position: relative; }
.tracker-step::before { content: ''; display: block; width: 14px; height: 14px; border-radius: 50%; background: var(--gray-border); margin: 0 auto 6px; }
.tracker-step.done::before { background: var(--orange); }
.tracker-step.done { color: var(--black); font-weight: 600; }

/* ---------- Footer ---------- */
#site-footer { background: var(--black); color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 50px 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-inner h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.footer-inner h3 span { color: var(--orange); }
.footer-inner p { font-size: 13px; line-height: 1.6; }
.footer-inner a:hover { color: var(--orange); }
.footer-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 8px; font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .hero h1 { font-size: 42px; }
  .contact-grid { grid-template-columns: 1fr; }
}
