/* ===== VARIABLES ===== */
:root {
  --white: #ffffff;
  --bg: #f7f8fa;
  --bg-2: #eef0f4;
  --orange: #e8731a;
  --orange-dark: #c95e10;
  --orange-light: rgba(232,115,26,0.10);
  --orange-mid: rgba(232,115,26,0.18);
  --text: #1e2432;
  --text-2: #4a5568;
  --text-3: #718096;
  --border: #e2e8f0;
  --border-strong: #cbd5e0;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.22s ease;
  --nav-height: 72px;
  --max-w: 1160px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--text-2); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-alt { background: var(--bg); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-light); border: 1px solid var(--orange-mid);
  color: var(--orange); font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  color: var(--text); line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem; color: var(--text-3); max-width: 580px; line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.95rem; border-radius: 10px; padding: 13px 26px; transition: var(--transition); cursor: pointer; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(232,115,26,0.30); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(232,115,26,0.38); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ===== FADE IN ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.nav-logo { font-size: 1.1rem; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 36px; height: 36px; background: var(--orange); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-2); transition: color var(--transition); }
.nav-links a:hover { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 1.4rem; color: var(--text-3); }

/* ===== HERO ===== */
.hero {
  padding: calc(var(--nav-height) + 72px) 0 80px;
  background: var(--white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
  top: -80px; right: -80px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,115,26,0.06) 0%, transparent 70%);
  bottom: -40px; left: 10%; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-light); color: var(--orange);
  font-size: 0.82rem; font-weight: 700; padding: 7px 16px;
  border-radius: 100px; margin-bottom: 24px;
  border: 1px solid var(--orange-mid);
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 900; color: var(--text); line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 1.05rem; color: var(--text-3); line-height: 1.75; margin-bottom: 36px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid var(--border); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-2); font-weight: 500; }
.hero-trust-item::before { content: '✓'; width: 20px; height: 20px; background: var(--orange-light); color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; }
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px;
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateX(4px); }
.hero-card-icon { font-size: 1.75rem; width: 48px; height: 48px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.hero-card p { font-size: 0.8rem; color: var(--text-3); }
.hero-card-highlight { border-color: var(--orange-mid); background: var(--orange-light); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange-mid); }
.service-card-icon { font-size: 2rem; width: 56px; height: 56px; background: var(--orange-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--text-3); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.service-link { color: var(--orange); font-size: 0.875rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card:hover .service-link { gap: 10px; }

/* ===== DETAIL SECTIONS ===== */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.detail-grid.reverse .detail-text { order: 2; }
.detail-grid.reverse .detail-visual { order: 1; }
.detail-text {}
.detail-text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--text); line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 16px; }
.detail-text p { color: var(--text-3); line-height: 1.75; margin-bottom: 28px; font-size: 0.95rem; }
.detail-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.detail-point { display: flex; align-items: flex-start; gap: 12px; font-size: 0.875rem; color: var(--text-2); }
.detail-point::before { content: '✓'; width: 22px; height: 22px; background: var(--orange-light); color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.detail-visual { background: var(--orange-light); border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 280px; }
.detail-visual-inner { text-align: center; }
.detail-visual-icon { font-size: 5rem; margin-bottom: 16px; }
.detail-visual-text { font-size: 1rem; font-weight: 700; color: var(--orange-dark); }

/* ===== TRUST / WHY ===== */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px; }
.trust-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), border-color var(--transition);
}
.trust-item:hover { transform: translateY(-2px); border-color: var(--orange-mid); }
.trust-item-icon { font-size: 1.75rem; margin-bottom: 14px; }
.trust-item h4 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.trust-item p { font-size: 0.85rem; color: var(--text-3); line-height: 1.65; }

/* ===== 24H CTA ===== */
.cta-24h {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white); text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-24h::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%; background:rgba(255,255,255,0.06); top:-150px; right:-80px; pointer-events:none; }
.cta-24h::after { content:''; position:absolute; width:250px; height:250px; border-radius:50%; background:rgba(255,255,255,0.05); bottom:-80px; left:5%; pointer-events:none; }
.cta-24h-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.2); color:var(--white); font-size:0.78rem; font-weight:700; padding:5px 14px; border-radius:100px; margin-bottom:20px; text-transform:uppercase; letter-spacing:0.06em; }
.cta-24h h2 { font-size:clamp(1.75rem,4vw,2.75rem); font-weight:900; color:var(--white); line-height:1.2; letter-spacing:-0.02em; margin-bottom:16px; position:relative; }
.cta-24h p { font-size:1rem; color:rgba(255,255,255,0.85); max-width:540px; margin:0 auto 36px; line-height:1.7; position:relative; }
.cta-24h-buttons { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; position:relative; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-title { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.contact-info-sub { font-size: 0.9rem; color: var(--text-3); margin-bottom: 8px; line-height: 1.65; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.contact-item-icon { font-size: 1.25rem; width: 40px; height: 40px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { font-size: 0.8rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.contact-item a, .contact-item p { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.contact-item a { color: var(--orange); }
.contact-hours { background: var(--orange-light); border: 1px solid var(--orange-mid); border-radius: var(--radius); padding: 18px 20px; }
.contact-hours p { font-size: 0.85rem; color: var(--orange-dark); font-weight: 600; }

.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.contact-form-card > p { font-size: 0.875rem; color: var(--text-3); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: 9px;
  padding: 11px 15px; font-size: 0.9rem; color: var(--text);
  background: var(--bg); outline: none; width: 100%;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); background: var(--white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group select option { background: var(--white); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 20px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--orange); }
.form-check label { font-size: 0.8rem; color: var(--text-3); line-height: 1.55; }
.form-check a { color: var(--orange); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h4 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--text-3); }

/* ===== VIDEO ===== */
.video-wrapper {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

/* ===== MAPS ===== */
.maps-section { padding: 0; }
.maps-section iframe { display: block; width: 100%; height: 450px; border: 0; filter: grayscale(15%); }
#service-map { display: block; width: 100%; height: 450px; }

/* ===== FOOTER ===== */
footer { background: #1e2432; color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-logo .nav-logo-icon { width: 32px; height: 32px; font-size: 0.9rem; }
.footer-brand-logo span { font-size: 1rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-contact a, .footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.6); display: block; margin-bottom: 6px; }
.footer-contact a:hover { color: var(--orange); }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.85rem; color: var(--text-2); max-width: 680px; line-height: 1.55; }
.cookie-banner a { color: var(--orange); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: calc(var(--nav-height) + 56px) 0 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

/* ===== NAV ACTIVE ===== */
.nav-links a.active { color: var(--orange); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid.reverse .detail-text { order: 0; }
  .detail-grid.reverse .detail-visual { order: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form-card { padding: 24px; }
  .cta-24h { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .cta-24h-buttons { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
