:root {
  --ink: #0b1720;
  --ink-soft: #142732;
  --paper: #f4f2ec;
  --white: #ffffff;
  --blue: #18a5bd;
  --blue-dark: #0a7084;
  --orange: #f7a21b;
  --muted: #64727a;
  --line: #d8ddd9;
  --radius: 0.75rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(11, 23, 32, .96);
  color: white;
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 4px 14px 4px 14px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.08em;
}
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-size: 1rem; letter-spacing: .16em; }
.brand small { margin-top: 2px; color: #a9bbc5; font-size: .67rem; letter-spacing: .04em; }
.desktop-nav { display: flex; align-items: center; gap: 28px; color: #c7d3d9; font-size: .88rem; }
.desktop-nav a:hover { color: white; }
.header-call { height: 44px; border-radius: 3px 12px 3px 12px; background: var(--orange); color: var(--ink); font-weight: 800; }
.header-call:hover { background: #ffb83e; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(36px, 6vw, 90px);
  min-height: 720px;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 7vw, 112px) 96px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    var(--ink);
  background-size: 46px 46px;
  color: white;
}
.hero::after {
  content: "INDRENOV";
  position: absolute;
  z-index: -1;
  left: -18px;
  bottom: -34px;
  color: rgba(255,255,255,.035);
  font-size: clamp(6rem, 16vw, 15rem);
  font-weight: 900;
  letter-spacing: -.08em;
  white-space: nowrap;
}
.hero-glow { position: absolute; z-index: -2; right: 6%; top: 12%; width: 420px; height: 420px; background: rgba(24,165,189,.18); filter: blur(100px); border-radius: 50%; }
.hero-copy { align-self: center; max-width: 800px; }
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 22px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow svg { width: 16px; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.3rem, 7.8vw, 7.2rem); line-height: .91; letter-spacing: -.065em; font-weight: 900; }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 670px; margin: 32px 0 0; color: #c6d1d6; font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.primary-cta, .secondary-cta { min-height: 54px; border-radius: 4px 15px 4px 15px; padding: 0 24px; font-weight: 850; }
.primary-cta { background: var(--orange); color: var(--ink); }
.primary-cta:hover { background: #ffb83e; }
.secondary-cta { border-color: rgba(255,255,255,.28); background: transparent; color: white; }
.secondary-cta:hover { background: white; color: var(--ink); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #aebcc4; font-size: .8rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { width: 15px; color: var(--blue); }

.hero-panel { align-self: center; border: 1px solid rgba(255,255,255,.13); background: rgba(20,39,50,.86); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.panel-topline { display: flex; justify-content: space-between; gap: 16px; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.1); color: #afbec6; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.live-dot { color: #8ee4b2; }
.live-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #55d990; box-shadow: 0 0 0 5px rgba(85,217,144,.1); }
.panel-main { padding: 42px 34px; }
.panel-main p { margin: 0 0 12px; color: var(--orange); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.panel-main strong { display: block; font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1.08; letter-spacing: -.04em; }
.panel-main a { display: inline-flex; align-items: center; gap: 8px; margin-top: 27px; color: var(--blue); font-weight: 800; }
.panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.1); }
.panel-grid span { display: flex; align-items: center; gap: 10px; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); color: #d4dee3; font-size: .83rem; }
.panel-grid span:nth-child(even) { border-right: 0; }
.panel-grid svg { width: 17px; color: var(--orange); }

.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1280px; margin: -38px auto 0; position: relative; z-index: 2; background: white; box-shadow: 0 18px 55px rgba(11,23,32,.12); }
.stats-strip div { padding: 26px 30px; border-right: 1px solid var(--line); }
.stats-strip div:last-child { border-right: 0; }
.stats-strip strong { display: block; color: var(--blue-dark); font-size: 1.55rem; line-height: 1; }
.stats-strip span { display: block; margin-top: 8px; color: var(--muted); font-size: .76rem; }

.section { padding: clamp(78px, 10vw, 140px) clamp(20px, 7vw, 112px); }
.section-heading { display: grid; grid-template-columns: 1.1fr 1.2fr; gap: 20px 70px; max-width: 1120px; margin-bottom: 52px; }
.section-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -2px; }
.section-heading h2, .area-section h2, .quote-copy h2 { margin: 0; font-size: clamp(2.35rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.055em; }
.section-heading > p:last-child { margin: 0; align-self: end; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.section-heading.compact { display: block; max-width: 760px; }
.section-heading.compact p:last-child { margin-top: 22px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 330px; padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.68); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: var(--blue); background: white; }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 3px 14px 3px 14px; background: var(--ink); color: var(--orange); }
.service-icon svg { width: 22px; }
.service-tag { position: absolute; top: 33px; right: 28px; color: var(--blue-dark); font-size: .67rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.service-card h3 { margin: 46px 0 13px; font-size: 1.35rem; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .9rem; }
.service-card a { display: inline-flex; align-items: center; gap: 7px; margin-top: 23px; color: var(--blue-dark); font-size: .8rem; font-weight: 850; }
.service-card a svg { width: 15px; }

.work-section { padding-top: 20px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-placeholder { position: relative; display: flex; align-items: end; min-height: 360px; padding: 26px; overflow: hidden; background: var(--ink-soft); color: white; }
.work-placeholder::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(24,165,189,.16), transparent 45%), repeating-linear-gradient(45deg, transparent 0 25px, rgba(255,255,255,.025) 25px 26px); }
.work-placeholder > span { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,.2); font-size: 4rem; font-weight: 900; }
.work-placeholder div { position: relative; z-index: 1; }
.work-placeholder small { display: block; margin-bottom: 8px; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; }
.work-placeholder strong { font-size: 1.25rem; }

.process-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; background: white; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--blue-dark); font-weight: 850; }
.process-list strong { font-size: 1.05rem; }
.process-list p { margin: 6px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }

.area-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: clamp(80px, 10vw, 130px) clamp(20px, 7vw, 112px); background: var(--blue-dark); color: white; }
.section-kicker.light { color: #9ce7f2; }
.area-section > div > p:last-child { max-width: 650px; margin: 27px 0 0; color: #c9e3e7; line-height: 1.7; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); align-content: center; gap: 10px; }
.area-list span { display: flex; align-items: center; gap: 10px; padding: 15px; border: 1px solid rgba(255,255,255,.18); font-size: .84rem; }
.area-list svg { width: 16px; color: var(--orange); }

.quote-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); background: var(--paper); }
.quote-copy > svg { width: 58px; height: 58px; margin-bottom: 28px; color: var(--blue); stroke-width: 1.3; }
.quote-copy > p:not(.section-kicker) { color: var(--muted); line-height: 1.75; }
.direct-phone { display: inline-flex; align-items: center; gap: 14px; margin-top: 24px; }
.direct-phone > svg { width: 42px; height: 42px; padding: 11px; border-radius: 50%; background: var(--orange); }
.direct-phone span { display: flex; flex-direction: column; }
.direct-phone small { color: var(--muted); }
.direct-phone strong { margin-top: 2px; font-size: 1.25rem; }
.quote-form { padding: clamp(26px, 4vw, 48px); background: white; box-shadow: 0 22px 70px rgba(11,23,32,.1); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 17px; color: #34434b; font-size: .76rem; font-weight: 800; }
.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%;
  border: 1px solid #cfd7d8;
  border-radius: 2px;
  padding: 11px 13px;
  background: #f8f9f7;
  color: var(--ink);
  outline: none;
}
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--blue-dark); box-shadow: 0 0 0 3px rgba(10,112,132,.12); }
.quote-form input, .quote-form select { height: 48px; }
.quote-form [data-slot="native-select-wrapper"] { width: 100%; }
.form-select { width: 100%; }
.form-message { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; min-height: 52px; border-radius: 3px 13px 3px 13px; background: var(--ink); color: white; font-weight: 850; }
.form-submit:hover { background: var(--blue-dark); }
.form-help { margin: 13px 0 0; color: var(--muted); font-size: .7rem; text-align: center; }
.form-success { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 15px 0 0; color: #137647; font-size: .8rem; font-weight: 800; }
.form-success[hidden] { display: none; }
.form-success svg { width: 17px; }

footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; padding: 38px clamp(20px, 5vw, 72px); background: var(--ink); color: white; }
footer > div { display: flex; flex-direction: column; gap: 5px; color: #b6c3c9; font-size: .75rem; }
footer > div strong { color: white; }
.footer-note { align-items: end; }
.mobile-call { display: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-section, .area-section, .quote-section { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-placeholder { min-height: 260px; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-note { display: none; }
}

@media (max-width: 680px) {
  body { padding-bottom: 64px; }
  .site-header { min-height: 68px; padding: 10px 17px; }
  .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .header-call { display: none; }
  .hero { padding: 62px 20px 80px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions a { width: 100%; }
  .hero-proof { flex-direction: column; gap: 10px; }
  .panel-topline { flex-direction: column; }
  .panel-main { padding: 32px 24px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin: 0; }
  .stats-strip div { padding: 20px; border-bottom: 1px solid var(--line); }
  .stats-strip div:nth-child(even) { border-right: 0; }
  .section { padding: 80px 20px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .area-section { padding: 80px 20px; gap: 45px; }
  .area-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 25px 20px; }
  footer { grid-template-columns: 1fr; padding: 35px 20px; }
  footer > div { margin-top: 10px; }
  .mobile-call { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; gap: 9px; height: 64px; background: var(--orange); color: var(--ink); font-weight: 900; box-shadow: 0 -10px 30px rgba(11,23,32,.2); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
