:root {
  --navy: #0b1f3a;
  --navy-2: #17365d;
  --orange: #f47b20;
  --orange-dark: #dd6715;
  --cream: #faf8f4;
  --ink: #10233e;
  --muted: #66758a;
  --line: #e6e9ee;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  height: 96px; padding: 0 max(4vw, 28px); background: var(--navy); color: white;
  display: flex; align-items: center; gap: 42px; position: sticky; top: 0; z-index: 50;
  box-shadow: 0 10px 26px rgba(11,31,58,.12);
}
.brand { display: flex; align-items: center; gap: 11px; font-size: 18px; line-height: 1.05; margin-right: auto; }
.brand strong { font-size: 25px; }
.brand-mark { width: 48px; height: 48px; border-radius: 13px; background: var(--orange); display: grid; place-items: center; color: white; }
.nav { display: flex; align-items: center; gap: clamp(22px,3vw,48px); font-weight: 700; }
.nav a { position: relative; padding: 38px 0 35px; }
.nav a::after { content:""; position:absolute; height:3px; border-radius:3px; left:0; right:100%; bottom:25px; background:var(--orange); transition:right .2s ease; }
.nav a:hover::after { right: 0; }
.header-phone { border: 1px solid rgba(255,255,255,.22); border-radius: 15px; padding: 10px 16px; display: flex; gap: 11px; align-items: center; font-weight: 800; }
.header-phone svg { color: var(--orange); }
.header-phone span { display: grid; line-height: 1.2; }
.header-phone small { font-size: 11px; opacity: .8; font-weight: 500; }
.menu-button { display:none; background:transparent; color:white; border:0; }

.hero { min-height: calc(100vh - 96px); max-width: 1540px; margin:auto; padding: 32px max(3vw,24px) 54px; display:grid; grid-template-columns: .88fr 1.12fr; gap: 42px; align-items:center; }
.hero-copy { padding: 25px 0; animation: rise .45s ease both; }
.eyebrow { color: var(--orange); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .17em; margin: 0 0 22px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(45px,4.5vw,74px); letter-spacing:-.05em; line-height:1.03; margin-bottom: 25px; }
.hero-text { font-size: clamp(18px,1.5vw,23px); line-height:1.6; color:var(--muted); max-width: 640px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin:34px 0 42px; }
.button { min-height: 56px; border-radius: 13px; padding: 0 22px; display:inline-flex; align-items:center; justify-content:center; gap:11px; border:0; cursor:pointer; font-weight:800; transition:.2s ease; }
.button:hover { transform:translateY(-2px); }
.primary { background:var(--orange); color:white; box-shadow:0 10px 22px rgba(244,123,32,.22); }
.primary:hover { background:var(--orange-dark); box-shadow:0 14px 28px rgba(244,123,32,.28); }
.secondary { background:white; border:1px solid var(--line); box-shadow:0 6px 16px rgba(11,31,58,.07); }
.secondary svg { color:#18a957; }
.trust-row { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; }
.trust-row > div { background:white; border:1px solid rgba(11,31,58,.06); border-radius:18px; padding:18px 12px; display:flex; gap:10px; align-items:center; box-shadow:0 12px 25px rgba(11,31,58,.06); }
.trust-row svg { color:var(--orange); flex:0 0 auto; }
.trust-row span { color:var(--muted); font-size:13px; display:grid; }
.trust-row strong { color:var(--ink); font-size:15px; }
.hero-visual { height:min(750px,calc(100vh - 160px)); min-height:600px; position:relative; overflow:hidden; border-radius:28px; box-shadow:0 24px 54px rgba(11,31,58,.16); animation: reveal .55s ease both; }
.hero-visual > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:58% center; }
.hero-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(11,31,58,.18)); pointer-events:none; }
.quick-form { position:absolute; z-index:2; right:24px; bottom:24px; width:min(320px,calc(100% - 48px)); background:rgba(255,255,255,.96); padding:20px; border-radius:20px; box-shadow:0 18px 45px rgba(11,31,58,.22); backdrop-filter:blur(10px); }
.quick-form > p { font-size:25px; font-weight:900; margin-bottom:14px; }
.quick-form label { height:44px; border:1px solid var(--line); border-radius:10px; display:flex; align-items:center; padding:0 12px; gap:9px; margin-top:9px; color:var(--muted); background:white; }
.quick-form input { border:0; outline:0; min-width:0; width:100%; color:var(--ink); background:transparent; }
.quick-form button { margin-top:12px; width:100%; height:48px; border:0; border-radius:10px; background:var(--orange); color:white; display:flex; justify-content:center; align-items:center; gap:10px; font-weight:900; cursor:pointer; }

.section { padding: 105px max(5vw,28px); }
.section-heading { max-width:1320px; margin:0 auto 48px; display:grid; grid-template-columns:1.4fr .6fr; gap:50px; align-items:end; }
.section-heading h2, .about h2, .pricing h2, .quote-section h2 { font-size:clamp(35px,4vw,58px); line-height:1.08; letter-spacing:-.04em; margin-bottom:0; }
.section-heading > p, .pricing-copy > p, .quote-intro > p { color:var(--muted); font-size:18px; line-height:1.7; margin-bottom:5px; }
.services { background:white; }
.service-grid { max-width:1320px; margin:auto; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card { border:1px solid var(--line); border-radius:22px; padding:30px; transition:.2s ease; }
.service-card:hover { transform:translateY(-5px); border-color:rgba(244,123,32,.4); box-shadow:0 18px 42px rgba(11,31,58,.08); }
.service-card > span { width:50px; height:50px; background:#fff1e7; color:var(--orange); display:grid; place-items:center; border-radius:15px; margin-bottom:24px; }
.service-card h3 { font-size:21px; margin-bottom:10px; }
.service-card p { color:var(--muted); line-height:1.65; min-height:78px; }
.service-card a, .text-link { color:var(--orange-dark); font-weight:800; display:inline-flex; gap:8px; align-items:center; }

.about { display:grid; grid-template-columns:1fr 1fr; gap:clamp(45px,7vw,110px); max-width:1460px; margin:auto; align-items:center; }
.about-panel { background:var(--navy); color:white; padding:clamp(38px,5vw,72px); border-radius:30px; }
.about-panel > p:not(.eyebrow) { color:#c9d4e3; line-height:1.75; font-size:17px; margin:28px 0; }
.about-panel ul { list-style:none; padding:0; margin:0; display:grid; gap:15px; }
.about-panel li { display:flex; align-items:center; gap:12px; }
.about-panel li svg { color:var(--orange); }
.process { display:grid; gap:22px; }
.process article { background:white; border:1px solid var(--line); border-radius:20px; padding:26px; display:flex; gap:22px; }
.process b { font-size:24px; color:var(--orange); }
.process h3 { margin-bottom:8px; }
.process p { color:var(--muted); line-height:1.6; margin:0; }

.pricing { background:white; display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(50px,8vw,130px); align-items:center; }
.pricing-copy { max-width:560px; margin-left:auto; }
.pricing-copy > p { margin:25px 0; }
.price-list { max-width:700px; width:100%; background:var(--cream); border-radius:24px; padding:10px 30px 20px; }
.price-list div { display:flex; justify-content:space-between; gap:20px; padding:22px 0; border-bottom:1px solid var(--line); }
.price-list strong { color:var(--orange-dark); }
.price-list small { color:var(--muted); display:block; padding-top:18px; }

.quote-section { background:var(--navy); color:white; display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(50px,8vw,120px); }
.quote-intro { max-width:540px; margin-left:auto; }
.quote-intro > p { color:#c9d4e3; margin:26px 0 32px; }
.contact-badges { display:grid; gap:13px; }
.contact-badges > * { display:flex; gap:14px; align-items:center; }
.contact-badges svg { color:var(--orange); }
.contact-badges span { display:grid; font-weight:800; }
.contact-badges small { font-weight:500; color:#9eafc5; }
.quote-form { max-width:700px; width:100%; background:white; color:var(--ink); border-radius:25px; padding:30px; display:grid; gap:17px; }
.two-cols { display:grid; grid-template-columns:1fr 1fr; gap:17px; }
.quote-form label { display:grid; gap:8px; font-weight:800; position:relative; }
.quote-form input, .quote-form select, .quote-form textarea { width:100%; border:1px solid var(--line); background:#fbfcfd; border-radius:10px; padding:13px 14px; outline:0; color:var(--ink); resize:vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(244,123,32,.12); }
.quote-form select { appearance:none; }
.select-arrow { position:absolute; right:13px; bottom:14px; color:var(--muted); pointer-events:none; }
.submit { width:100%; }
.success { color:#167d47; background:#e9f8ef; padding:11px 13px; border-radius:9px; display:flex; align-items:center; gap:8px; margin:0; font-size:14px; }

footer { background:#071426; color:white; padding:60px max(5vw,28px) 26px; display:grid; grid-template-columns:1.5fr .7fr 1fr; gap:40px; }
.footer-brand { display:flex; gap:14px; align-items:center; align-self:start; }
.footer-brand strong { font-size:23px; }
.footer-brand p { color:#9eafc5; margin:6px 0 0; }
footer h3 { font-size:15px; color:#9eafc5; text-transform:uppercase; letter-spacing:.1em; }
footer > div:not(.footer-brand) { display:grid; gap:11px; align-content:start; }
footer a:hover { color:var(--orange); }
.copyright { grid-column:1/-1; border-top:1px solid rgba(255,255,255,.12); padding-top:24px; margin-top:20px; color:#8ca0bb; font-size:13px; }
.floating-whatsapp { position:fixed; z-index:40; right:24px; bottom:24px; width:58px; height:58px; border-radius:50%; display:grid; place-items:center; background:#1fc466; color:white; box-shadow:0 12px 30px rgba(16,137,65,.3); }

@keyframes rise { from { opacity:0; transform:translateY(12px); } }
@keyframes reveal { from { opacity:0; transform:scale(.985); } }
@media (prefers-reduced-motion:reduce) { * { scroll-behavior:auto!important; animation:none!important; transition:none!important; } }

@media (max-width: 1100px) {
  .site-header { height:82px; }
  .nav, .header-phone { display:none; }
  .menu-button { display:block; padding:10px; }
  .nav.open { display:grid; position:absolute; top:82px; left:0; right:0; background:var(--navy); padding:18px 28px 28px; gap:0; box-shadow:0 18px 28px rgba(11,31,58,.2); }
  .nav.open a { padding:13px 0; }
  .nav a::after { display:none; }
  .hero { grid-template-columns:1fr; padding-top:52px; }
  .hero-visual { height:650px; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 760px) {
  .site-header { padding:0 18px; }
  .brand strong { font-size:21px; }
  .brand-mark { width:43px; height:43px; }
  .hero { padding:44px 18px 55px; gap:30px; }
  h1 { font-size:43px; }
  .hero-actions .button { width:100%; }
  .trust-row { grid-template-columns:1fr; }
  .trust-row > div { padding:13px 15px; }
  .hero-visual { min-height:570px; height:70vh; border-radius:20px; }
  .quick-form { right:14px; bottom:14px; width:calc(100% - 28px); }
  .section { padding:75px 20px; }
  .section-heading, .about, .pricing, .quote-section { grid-template-columns:1fr; }
  .section-heading { gap:22px; }
  .service-grid { grid-template-columns:1fr; }
  .service-card p { min-height:auto; }
  .about-panel { border-radius:22px; padding:34px 25px; }
  .pricing-copy, .quote-intro { margin-left:0; }
  .price-list { padding:8px 20px 18px; }
  .quote-form { padding:22px 17px; }
  .two-cols { grid-template-columns:1fr; }
  footer { grid-template-columns:1fr; }
  .copyright { grid-column:auto; }
}
