:root {
  --red: #d22d2d;
  --red-dark: #a81f1f;
  --gold: #e0a73e;
  --ink: #1c1c22;
  --muted: #6b6b76;
  --bg: #ffffff;
  --bg-alt: #faf6f1;
  --line: #ececef;
  --wa: #25d366;
  --wa-dark: #1ebe5b;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 20, 30, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 22px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dark); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--bg-alt); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand-mark { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--red), var(--gold)); color: #fff; font-weight: 800; font-size: 14px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.nav-links .btn-wa { color: #fff; }

/* Hero */
.hero { background: radial-gradient(1200px 500px at 80% -10%, #fdeee0 0%, transparent 60%), var(--bg); padding: 70px 0 80px; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.pill { display: inline-block; background: #fdecec; color: var(--red-dark); font-weight: 600; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: 48px; line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.lead { font-size: 18px; color: var(--muted); margin: 18px 0 26px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.trust { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.trust div { display: flex; flex-direction: column; }
.trust strong { font-size: 16px; }
.trust span { font-size: 13px; color: var(--muted); }

.hero-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: var(--shadow); }
.card-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); font-weight: 500; }
.card-row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex: none; }
.hero-card .btn { margin-top: 20px; }
.card-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 12px; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 34px; font-weight: 800; text-align: center; letter-spacing: -.02em; }
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--muted); margin-top: 10px; font-size: 17px; }

/* Services */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.service { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .15s ease, box-shadow .15s ease; }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service h3 { font-size: 18px; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 14.5px; }
.service-ico { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px; background: linear-gradient(135deg, var(--red), var(--gold)); opacity: .92; }
.service-ico.s2 { background: linear-gradient(135deg, #2f7df6, #57c1ff); }
.service-ico.s3 { background: linear-gradient(135deg, #16a34a, #6ee7b7); }
.service-ico.s4 { background: linear-gradient(135deg, #7c3aed, #c4b5fd); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step-n { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; }
.step h4 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* About */
.about { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.about-text p { color: var(--muted); font-size: 17px; margin: 18px 0 26px; }
.about-list { list-style: none; background: var(--bg-alt); border-radius: var(--radius); padding: 26px 26px 26px 26px; }
.about-list li { padding: 12px 0 12px 30px; position: relative; border-bottom: 1px solid var(--line); font-weight: 500; }
.about-list li:last-child { border-bottom: none; }
.about-list li::before { content: "✓"; position: absolute; left: 0; color: var(--wa); font-weight: 800; }

/* News */
.news-list { display: grid; gap: 16px; margin-top: 40px; max-width: 820px; margin-left: auto; margin-right: auto; }
.news-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.news-item.pinned { border-color: var(--gold); box-shadow: 0 6px 18px rgba(224,167,62,.18); }
.news-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.news-head h3 { font-size: 18px; }
.news-head time { color: var(--muted); font-size: 13px; flex: none; }
.news-item p { color: var(--muted); white-space: pre-wrap; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.gal-item { position: relative; display: block; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.gal-item:hover img { transform: scale(1.05); }
.gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 10px; color: #fff; font-size: 13.5px; font-weight: 500; background: linear-gradient(transparent, rgba(0,0,0,.7)); }

/* CTA */
.cta { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; padding: 70px 0; }
.cta-inner { text-align: center; }
.cta h2 { font-size: 32px; font-weight: 800; }
.cta p { opacity: .9; margin: 10px 0 26px; font-size: 17px; }
.cta .btn-wa { box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* Footer */
.footer { background: #15151a; color: #c9c9d2; padding: 50px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; }
.footer .brand-mark { vertical-align: middle; margin-right: 8px; }
.footer strong { color: #fff; font-size: 18px; }
.footer p { font-size: 14px; margin-top: 6px; }
.footer-contact a { color: var(--gold); }
.footer-copy { grid-column: 1 / -1; border-top: 1px solid #2a2a33; padding-top: 18px; font-size: 13px; color: #8a8a96; }

/* WhatsApp float */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.5); z-index: 60; transition: transform .15s ease; }
.wa-float:hover { transform: scale(1.07); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero h1 { font-size: 36px; }
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .about, .footer-inner { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 540px) {
  .grid-4, .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .section { padding: 56px 0; }
}
