@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --black: #121212;
  --black-soft: #1E1E1E;
  --navy: #121212;
  --orange: #FF6600;
  --orange-dark: #FF5500;
  --orange-soft: #FFF0E6;
  --orange-text: #FF6600;
  --yellow: #FF6600;
  --yellow-dark: #FF5500;
  --yellow-soft: #FFF0E6;
  --yellow-text: #FF6600;
  --burgundy: #FF6600;
  --burgundy-dark: #FF5500;
  --burgundy-soft: #FFF0E6;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;
  --gray-700: #334155;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(26, 35, 50, 0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --topbar-h: 38px;
  --header-h: 72px;
  --header-total: calc(var(--topbar-h) + var(--header-h));
  --container: 1160px;
  --gutter: 24px;
  --ease: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow-text); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--black); }
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 10001;
  background: var(--yellow); color: var(--white); padding: 10px 16px;
  border-radius: var(--radius); font-weight: 700; font-size: 14px;
}
.skip-link:focus { top: 12px; }

.header-top {
  background: #000;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--black-soft);
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.header-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.header-top-left span,
.header-top-right a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.header-top-left i { color: var(--yellow); font-size: 12px; }
.header-top-right a { font-weight: 700; color: var(--white); }
.header-top-right a:hover { color: var(--yellow); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 2px solid var(--yellow);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  flex-shrink: 0;
}
.logo-link:hover { color: inherit; }
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-type { display: flex; flex-direction: column; line-height: 1.15; }
.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-text);
  margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; list-style: none; gap: 4px; }
.nav-list a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius);
}
.nav-list a:hover { color: var(--black); background: var(--yellow-soft); }
.nav-list a.active { color: var(--white); background: var(--yellow); font-weight: 700; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--yellow);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  white-space: nowrap;
}
.header-cta:hover { background: var(--yellow-dark); color: var(--white) !important; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
.nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(26,35,50,0.5); z-index: 998;
  opacity: 0; pointer-events: none; transition: opacity var(--ease);
}
.nav-backdrop.visible { opacity: 1; pointer-events: auto; }
.nav-cta-mobile { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; font-family: var(--font); font-size: 15px; font-weight: 700;
  border-radius: var(--radius); border: 2px solid transparent; cursor: pointer;
  transition: all var(--ease);
}
.btn-primary { background: var(--yellow); color: var(--white); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--white); }
.btn-outline { background: var(--white); color: var(--yellow); border-color: var(--yellow); }
.btn-outline:hover { border-color: var(--yellow-dark); background: var(--yellow); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); }
.btn-lg { padding: 15px 28px; font-size: 16px; }

.hero-service {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.hero-service-media { position: absolute; inset: 0; }
.hero-service-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,35,50,0.94) 0%, rgba(26,35,50,0.78) 45%, rgba(26,35,50,0.45) 100%);
}
.hero-service-inner { position: relative; z-index: 2; padding: 64px 0; max-width: 640px; }
.hero-label {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.hero-service h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 16px; color: var(--white);
}
.hero-desc { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.88); margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-notice {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.9);
}

.stats-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 28px 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--yellow-text); line-height: 1; margin-bottom: 6px; }
.stat-item span { font-size: 13px; font-weight: 600; color: var(--gray-500); }

section { padding: 72px 0; }
.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow-text); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px;
}
.section-text { color: var(--gray-500); line-height: 1.75; max-width: 600px; }
.section-head {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-end;
  gap: 20px; margin-bottom: 40px;
}

.about-block { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-list { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700); }
.feature-list i { color: var(--yellow-text); margin-top: 4px; flex-shrink: 0; }

.services-section { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease);
  color: inherit;
}
.service-card:hover { border-color: var(--yellow); box-shadow: var(--shadow); }
.service-card-hit { position: absolute; inset: 0; border-radius: inherit; z-index: 1; }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--yellow-soft); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.service-link { font-size: 13px; font-weight: 700; color: var(--yellow-text); display: inline-flex; align-items: center; gap: 6px; pointer-events: none; }

.protection-band { background: var(--navy); color: var(--white); }
.protection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.protection-grid .section-label { color: var(--yellow); }
.protection-grid .section-title { color: var(--white); }
.protection-grid p { color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 14px; }
.protection-image { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.protection-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.process-section { background: var(--gray-50); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
}
.process-num {
  width: 36px; height: 36px; margin: 0 auto 14px;
  background: var(--yellow); color: var(--white);
  border-radius: 50%; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.process-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-card p { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

.cta-section { background: var(--burgundy-soft); }
.cta-box {
  text-align: center; max-width: 560px; margin: 0 auto;
  padding: 48px 32px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
}
.cta-box h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.cta-box p { color: var(--gray-500); margin-bottom: 24px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.site-footer { background: #000; color: rgba(255,255,255,0.75); padding: 56px 0 0; border-top: 3px solid var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer-brand .logo-link { margin-bottom: 16px; }
.footer-brand .logo-title { color: var(--white); }
.footer-brand .logo-tagline { color: var(--yellow); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: var(--yellow);
  border-radius: var(--radius); font-size: 12px; font-weight: 700; color: var(--white);
}
.footer-badge i { color: var(--white); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
}
.footer-social a:hover { background: var(--yellow); color: var(--white); }
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 14px;
}
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px;
  font-size: 13px;
}

.phone-float, .whatsapp-float {
  position: fixed; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); box-shadow: var(--shadow); font-weight: 700;
}
.phone-float { bottom: 20px; right: 20px; background: var(--yellow); color: var(--white); padding: 14px 20px; gap: 8px; font-size: 14px; }
.whatsapp-float { bottom: 80px; right: 20px; width: 50px; height: 50px; background: #25D366; color: var(--white); font-size: 24px; }

.page-hero { padding: 48px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); text-align: center; }
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.page-hero p { color: var(--gray-500); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-card, .form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; }
.contact-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 42px; height: 42px; background: var(--yellow); color: var(--white);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font); font-size: 15px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.25); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-success { margin-top: 14px; padding: 12px; background: #ECFDF5; color: #047857; border-radius: var(--radius); font-weight: 600; font-size: 14px; }

.detail-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.detail-content h2 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin: 28px 0 10px; }
.detail-content p { color: var(--gray-500); line-height: 1.8; margin-bottom: 14px; }
.detail-sidebar {
  position: sticky; top: calc(var(--header-total) + 16px);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
}
.detail-sidebar h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.sidebar-phone { display: flex; align-items: center; gap: 8px; font-size: 1.2rem; font-weight: 800; color: var(--yellow-text); margin-bottom: 16px; }

@media (max-width: 1024px) {
  .about-grid, .protection-grid, .contact-grid, .detail-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --header-h: 64px; }
  .header-top-left span:not(:first-child) { display: none; }
  .menu-toggle { display: flex; }
  .header-cta:not(.nav-cta-mobile) { display: none; }
  .main-nav {
    position: fixed; top: var(--header-total); right: 0;
    width: min(300px, 88vw); height: calc(100vh - var(--header-total));
    background: var(--white); flex-direction: column;
    align-items: stretch; padding: 20px;
    transform: translateX(100%); transition: transform var(--ease);
    z-index: 999; box-shadow: var(--shadow); overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; }
  .nav-cta-mobile { display: inline-flex !important; width: 100%; justify-content: center; margin-top: 12px; }
  .nav-backdrop { display: block; }
  body.nav-open { overflow: hidden; }
  section { padding: 56px 0; }
  .service-grid, .process-grid, .form-grid, .footer-grid, .stats-bar-grid { grid-template-columns: 1fr; }
  .hero-service { min-height: 460px; }
  .phone-float span { display: none; }
  .phone-float { width: 50px; height: 50px; padding: 0; border-radius: 50%; }
}

@media print {
  .site-header, .header-top, .phone-float, .whatsapp-float { display: none !important; }
}
