@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --steel: #1c2b3a;
  --steel-dark: #0f1a24;
  --steel-mid: #2e4055;
  --orange: #e85d04;
  --orange-light: #f48c06;
  --white: #ffffff;
  --off-white: #f4f6f8;
  --text: #1c2b3a;
  --gray: #5a6e7f;
  --light: #e8edf2;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--text); line-height: 1.65; font-size: 16px; }

.topbar { background: var(--orange); text-align: center; padding: 0.5rem 2rem; font-size: 0.85rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
.topbar a { color: #fff; text-decoration: none; }

header { background: var(--steel-dark); position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--orange); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 38px; height: 38px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%); }
.logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.1; }
.logo-sub { font-size: 0.65rem; font-weight: 600; color: var(--orange); letter-spacing: 0.15em; text-transform: uppercase; }

nav { display: flex; align-items: center; }
nav a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); text-decoration: none; padding: 0.5rem 0.9rem; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--orange); }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu { position: absolute; top: calc(100% + 3px); left: 0; background: var(--steel); border-top: 3px solid var(--orange); min-width: 260px; padding: 0.5rem 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s; }
.dropdown-menu a { display: block; padding: 0.65rem 1.25rem; font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.header-cta { background: var(--orange) !important; color: #fff !important; padding: 0.55rem 1.4rem !important; margin-left: 0.75rem; font-weight: 800 !important; transition: background 0.2s !important; }
.header-cta:hover { background: var(--orange-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all 0.3s; }

/* HERO */
.hero { background: var(--steel-dark); padding: 6rem 2rem 5rem; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px);
}
.hero::after { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent, rgba(232,93,4,0.08)); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--orange); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.4rem 1rem; margin-bottom: 1.25rem; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%); padding-right: 1.5rem; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.0; text-transform: uppercase; letter-spacing: 0.02em; color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 500px; margin-bottom: 2rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; padding: 0.9rem 2rem; transition: all 0.2s; cursor: pointer; border: none; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-light); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-steel { background: var(--steel); color: #fff; }
.btn-steel:hover { background: var(--steel-mid); }
.btn-white { background: #fff; color: var(--steel); }
.btn-white:hover { background: var(--off-white); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.75rem; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* CONTACT CARD */
.contact-card { background: var(--off-white); padding: 2rem; border-top: 4px solid var(--orange); }
.contact-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-group label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--steel); }
.form-group input, .form-group select, .form-group textarea { font-family: 'Barlow', sans-serif; font-size: 0.9rem; background: #fff; border: 2px solid rgba(28,43,58,0.12); color: var(--text); padding: 0.65rem 0.9rem; outline: none; transition: border-color 0.2s; width: 100%; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-msg { display: none; padding: 0.75rem 1rem; font-size: 0.85rem; margin-top: 0.5rem; font-weight: 700; }
.form-msg.success { background: #d4edda; color: #155724; }
.form-msg.error { background: #f8d7da; color: #721c24; }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--orange); margin-bottom: 0.75rem; }
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--orange); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: 0.02em; color: var(--steel); line-height: 1.05; margin-bottom: 1rem; }
.section-desc { color: var(--gray); max-width: 600px; font-size: 1rem; margin-bottom: 3rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card { background: var(--off-white); padding: 2.5rem 2rem; text-decoration: none; color: var(--text); transition: all 0.2s; border-bottom: 4px solid transparent; }
.service-card:hover { border-bottom-color: var(--orange); background: #fff; box-shadow: 0 8px 32px rgba(28,43,58,0.1); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--steel); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.learn-more { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-top: 1rem; text-decoration: none; }

/* DARK SECTION */
.dark-section { background: var(--steel); padding: 5rem 2rem; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.why-card { background: rgba(255,255,255,0.05); padding: 2rem; border-left: 4px solid var(--orange); }
.why-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* CTA */
.cta-band { background: var(--orange); padding: 4rem 2rem; text-align: center; }
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem,3.5vw,2.8rem); text-transform: uppercase; letter-spacing: 0.03em; color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }

/* PAGE HERO */
.page-hero { background: var(--steel-dark); padding: 4rem 2rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.breadcrumb a { color: var(--orange); text-decoration: none; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem,4.5vw,3.2rem); text-transform: uppercase; letter-spacing: 0.03em; color: #fff; line-height: 1.05; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 580px; margin-top: 1rem; }

/* CONTENT */
.content-block { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.two-col { display: grid; grid-template-columns: 1fr 380px; gap: 5rem; align-items: start; }
.content-block h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.8rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--steel); margin-bottom: 1.25rem; }
.content-block h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--steel); margin: 2rem 0 0.75rem; }
.content-block p { color: #4a5e6e; line-height: 1.8; margin-bottom: 1.25rem; }
.content-block ul { list-style: none; margin-bottom: 1.5rem; }
.content-block ul li { padding: 0.5rem 0 0.5rem 1.75rem; position: relative; color: #4a5e6e; border-bottom: 1px solid rgba(28,43,58,0.06); }
.content-block ul li::before { content: '▶'; position: absolute; left: 0; color: var(--orange); font-size: 0.6rem; top: 0.75rem; }

.signs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.sign-card { background: var(--off-white); padding: 1.5rem; border-left: 4px solid var(--orange); }
.sign-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--steel); margin-bottom: 0.5rem; }
.sign-card p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.65; }

.steps-list { margin: 2rem 0; }
.step-item { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; align-items: start; padding: 1.5rem 0; border-bottom: 1px solid rgba(28,43,58,0.08); }
.step-num { width: 48px; height: 48px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; flex-shrink: 0; }
.step-item h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--steel); margin-bottom: 0.4rem; }
.step-item p { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* FAQ */
.faq-list { margin: 2rem 0; }
.faq-item { border-bottom: 1px solid rgba(28,43,58,0.1); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; font-family: 'Barlow', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--orange); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 1.25rem; color: var(--gray); font-size: 0.92rem; line-height: 1.8; margin: 0; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: start; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(28,43,58,0.08); color: var(--text); }
.contact-detail .icon { font-size: 1.1rem; width: 36px; height: 36px; background: var(--off-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail a { color: var(--orange); text-decoration: none; font-weight: 700; }

/* FOOTER */
footer { background: var(--steel-dark); color: rgba(255,255,255,0.55); padding: 4rem 2rem 2rem; border-top: 3px solid var(--orange); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-top: 1rem; color: rgba(255,255,255,0.4); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--orange); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-phone { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--orange); text-decoration: none; display: block; margin-top: 0.75rem; letter-spacing: 0.04em; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 0.5rem; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .contact-card { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .signs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--steel-dark); padding: 2rem; overflow-y: auto; z-index: 99; gap: 0; }
  nav.open a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1.1rem; color: rgba(255,255,255,0.8); }
  nav.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.05); border: none; padding: 0 0 0 1rem; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}
