:root {
  --bg: #111315;
  --bg-soft: #171a1d;
  --panel: rgba(27, 31, 35, 0.78);
  --panel-solid: #1c2024;
  --text: #f6f7f8;
  --muted: #a9b0b8;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #f5b91e;
  --orange: #ff6b18;
  --blue: #2fa9ff;
  --ice: #bfe9ff;
  --green: #6ecb62;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 185, 30, 0.08), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(47, 169, 255, 0.08), transparent 24%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 90; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.ambient { position: fixed; width: 38rem; height: 38rem; filter: blur(110px); opacity: .09; border-radius: 50%; pointer-events: none; }
.ambient-one { background: var(--orange); top: -15rem; left: -15rem; }
.ambient-two { background: var(--blue); right: -18rem; top: 28rem; }

.site-header {
  width: min(1200px, calc(100% - 32px));
  margin: 18px auto 0;
  min-height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  background: rgba(17, 19, 21, .78);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  position: sticky; top: 14px; z-index: 50;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(245,185,30,.35); }
.brand span { display: block; font-family: Rajdhani, sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: .11em; }
.brand small { display: block; margin-top: 2px; color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .1em; }

.site-nav { display: flex; align-items: center; gap: 24px; color: #dce0e4; font-size: .92rem; font-weight: 600; }
.site-nav a { transition: .2s ease; }
.site-nav a:hover { color: var(--gold); }
.nav-cta { padding: 14px 18px; border-radius: 14px; background: linear-gradient(135deg, var(--gold), var(--orange)); color: #111 !important; box-shadow: 0 8px 24px rgba(245,185,30,.18); }
.nav-toggle { display: none; border: 0; color: white; background: transparent; font-size: 1.5rem; }

.section-shell { width: min(1200px, calc(100% - 32px)); margin-inline: auto; }
.hero { min-height: 690px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 48px; padding-block: 72px 56px; }
.eyebrow, .section-label { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 34px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero h1 { margin: 20px 0 20px; max-width: 760px; font-family: Rajdhani, sans-serif; font-size: clamp(4rem, 7.3vw, 7rem); line-height: .88; letter-spacing: -.055em; text-transform: uppercase; }
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1.5px #d6dce1; text-shadow: 0 0 32px rgba(255,255,255,.04); }
.hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { border: 0; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 15px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #101214; background: linear-gradient(135deg, var(--gold), var(--orange)); box-shadow: 0 14px 35px rgba(245,185,30,.18); }
.btn-secondary { color: white; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.13); }
.btn-secondary:hover { border-color: rgba(245,185,30,.45); }
.full { width: 100%; }

.hero-metrics { display: flex; gap: 38px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-metrics div { display: flex; flex-direction: column; }
.hero-metrics strong { font-family: Rajdhani, sans-serif; font-size: 1.6rem; letter-spacing: .04em; }
.hero-metrics span { color: var(--muted); font-size: .75rem; margin-top: 3px; }

.hero-visual { min-height: 530px; display: grid; place-items: center; position: relative; perspective: 1100px; }
.logo-stage { width: min(410px, 78vw); aspect-ratio: 1; border-radius: 50%; padding: 15px; background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.16); transform: rotateY(-8deg) rotateX(5deg); position: relative; z-index: 2; animation: float 6s ease-in-out infinite; }
.logo-stage::after { content:""; position:absolute; inset:12px; border-radius:50%; border:1px solid rgba(245,185,30,.28); }
.logo-stage img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display:block; filter: contrast(1.04) saturate(1.04); }
.logo-glow { position: absolute; inset: 10%; background: linear-gradient(135deg, rgba(255,107,24,.35), rgba(47,169,255,.28)); filter: blur(60px); z-index:-1; border-radius:50%; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: rotateX(68deg) rotateZ(12deg); }
.orbit::before { content:""; position:absolute; width:10px; height:10px; border-radius:50%; background:var(--gold); top:50%; left:-5px; box-shadow:0 0 24px var(--gold); }
.orbit-one { width: 520px; height: 520px; animation: spin 18s linear infinite; }
.orbit-two { width: 440px; height: 440px; border-color: rgba(47,169,255,.18); animation: spinReverse 14s linear infinite; }
.float-card { position:absolute; z-index:4; display:flex; gap:12px; align-items:center; min-width:235px; padding:14px 16px; border-radius:18px; background:rgba(24,27,30,.82); border:1px solid rgba(255,255,255,.13); backdrop-filter:blur(15px); box-shadow:0 18px 45px rgba(0,0,0,.32); }
.float-card-one { left:-10px; top:105px; animation: floatSmall 5.8s ease-in-out infinite; }
.float-card-two { right:-10px; bottom:95px; animation: floatSmall 6.4s ease-in-out infinite reverse; }
.float-card .icon { display:grid; place-items:center; width:38px; height:38px; border-radius:12px; background:linear-gradient(135deg, rgba(245,185,30,.2), rgba(255,107,24,.08)); color:var(--gold); font-weight:900; }
.float-card b, .float-card small { display:block; }
.float-card b { font-size:.88rem; }
.float-card small { color:var(--muted); font-size:.67rem; margin-top:3px; }

.trust-strip { display:flex; justify-content:center; align-items:center; gap:22px; flex-wrap:wrap; padding:20px 22px; border-block:1px solid var(--line); color:#c7cdd2; background:rgba(255,255,255,.02); font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.trust-strip i { width:4px; height:4px; border-radius:50%; background:var(--gold); box-shadow:0 0 12px var(--gold); }

.section-block { padding-block: 100px; }
.section-heading { display:grid; grid-template-columns: 1.2fr .8fr; gap:48px; align-items:end; margin-bottom:38px; }
.section-heading h2, .about-panel h2, .final-cta h2 { margin:10px 0 0; font-family:Rajdhani,sans-serif; font-size:clamp(2.5rem,5vw,4.3rem); line-height:.98; letter-spacing:-.035em; text-transform:uppercase; }
.section-heading > p { color:var(--muted); line-height:1.7; margin:0; }

.service-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.service-card { position:relative; overflow:hidden; min-height:395px; padding:28px; border-radius:var(--radius); background:linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); border:1px solid var(--line); box-shadow:0 20px 50px rgba(0,0,0,.18); transition:transform .25s ease, border-color .25s ease; }
.service-card::before { content:""; position:absolute; width:220px; height:220px; border-radius:50%; right:-80px; top:-80px; filter:blur(18px); opacity:.14; }
.service-card:hover { transform:translateY(-6px); border-color:rgba(255,255,255,.2); }
.service-card.credit::before { background:var(--gold); }
.service-card.land::before { background:var(--green); }
.service-card.hvac::before { background:var(--blue); }
.service-card.electric::before { background:var(--orange); }
.card-top { display:flex; align-items:center; justify-content:space-between; color:var(--muted); font-family:Rajdhani,sans-serif; font-weight:700; }
.service-icon { display:grid; place-items:center; width:54px; height:54px; border-radius:16px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.04); color:var(--gold); font-size:1.6rem; box-shadow:inset 0 1px 0 rgba(255,255,255,.08); }
.service-card.hvac .service-icon { color:var(--ice); }
.service-card.land .service-icon { color:#8bdc7b; }
.service-card.electric .service-icon { color:var(--orange); }
.service-card h3 { font-family:Rajdhani,sans-serif; font-size:2rem; margin:28px 0 10px; text-transform:uppercase; }
.service-card p { color:var(--muted); line-height:1.65; }
.service-card ul { margin:20px 0 26px; padding:0; list-style:none; display:grid; gap:10px; color:#d9dde1; font-size:.9rem; }
.service-card li::before { content:"—"; color:var(--gold); margin-right:10px; }
.service-card a { position:absolute; left:28px; bottom:26px; font-size:.88rem; font-weight:800; }
.service-card a span { color:var(--gold); margin-left:6px; }

.process-wrap { background:linear-gradient(180deg, rgba(255,255,255,.025), transparent); border-block:1px solid var(--line); }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.process-step { min-height:220px; padding:25px; border-radius:21px; background:rgba(255,255,255,.03); border:1px solid var(--line); }
.process-step span { display:inline-grid; place-items:center; width:42px; height:42px; border-radius:13px; background:rgba(245,185,30,.1); color:var(--gold); font-family:Rajdhani,sans-serif; font-weight:700; }
.process-step h3 { margin:36px 0 8px; font-family:Rajdhani,sans-serif; font-size:1.45rem; text-transform:uppercase; }
.process-step p { margin:0; color:var(--muted); line-height:1.6; font-size:.9rem; }

.split-section { display:grid; grid-template-columns:1.1fr .9fr; gap:22px; align-items:stretch; }
.about-panel, .payment-panel { border:1px solid var(--line); border-radius:28px; background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.018)); padding:34px; box-shadow:0 22px 60px rgba(0,0,0,.2); }
.about-panel > p { color:var(--muted); line-height:1.75; }
.feature-row { display:flex; gap:14px; margin-top:24px; align-items:flex-start; }
.feature-row > span { display:grid; place-items:center; flex:0 0 32px; height:32px; border-radius:10px; background:rgba(110,203,98,.1); color:#8ee681; }
.feature-row b,.feature-row small { display:block; }
.feature-row small { color:var(--muted); margin-top:5px; line-height:1.45; }
.payment-panel { background:radial-gradient(circle at 85% 8%, rgba(245,185,30,.16), transparent 36%), #191d20; position:relative; overflow:hidden; }
.payment-head { display:flex; justify-content:space-between; align-items:center; font-size:.72rem; font-weight:800; letter-spacing:.1em; color:var(--gold); }
.status-dot { color:#a8ef9f; padding:7px 9px; background:rgba(110,203,98,.08); border:1px solid rgba(110,203,98,.2); border-radius:99px; font-size:.62rem; }
.payment-panel h3 { font-family:Rajdhani,sans-serif; font-size:2rem; text-transform:uppercase; margin:52px 0 8px; }
.payment-panel > p { color:var(--muted); line-height:1.6; }
.price { margin:28px 0; font-family:Rajdhani,sans-serif; font-size:5rem; font-weight:700; letter-spacing:-.04em; }
.price sup { font-size:1.4rem; color:var(--gold); vertical-align:top; position:relative; top:15px; }
.price small { font-family:Inter,sans-serif; font-size:.72rem; font-weight:600; color:var(--muted); letter-spacing:0; }
.payment-note { display:block; color:var(--muted); margin-top:14px; line-height:1.45; }
.payment-note code { color:#f3d474; }

.final-cta { margin-bottom:90px; display:grid; grid-template-columns:1fr .9fr; gap:48px; align-items:center; padding:55px; border:1px solid rgba(245,185,30,.18); border-radius:30px; background:radial-gradient(circle at 10% 10%, rgba(255,107,24,.14), transparent 35%), radial-gradient(circle at 90% 90%, rgba(47,169,255,.1), transparent 36%), rgba(255,255,255,.025); }
.final-cta > div > p:last-child { color:var(--muted); line-height:1.65; }
.contact-form { display:grid; gap:12px; }
.contact-form input,.contact-form select,.contact-form textarea { width:100%; color:white; background:rgba(6,8,9,.5); border:1px solid rgba(255,255,255,.1); border-radius:14px; padding:15px 16px; outline:none; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color:rgba(245,185,30,.55); box-shadow:0 0 0 3px rgba(245,185,30,.07); }
.contact-form select option { background:#171a1d; }
.contact-form textarea { resize:vertical; }
.contact-form small { color:var(--muted); line-height:1.4; }

footer { width:min(1200px,calc(100% - 32px)); margin:0 auto; padding:30px 0 45px; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:20px; color:var(--muted); font-size:.76rem; }
.footer-brand img { width:44px; height:44px; }

.toast { position:fixed; left:50%; bottom:24px; transform:translate(-50%,120px); opacity:0; z-index:100; padding:13px 18px; border:1px solid rgba(255,255,255,.13); border-radius:14px; background:#202428; color:#fff; box-shadow:0 18px 40px rgba(0,0,0,.35); transition:.28s ease; font-size:.86rem; }
.toast.show { transform:translate(-50%,0); opacity:1; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

@keyframes float { 0%,100%{transform:rotateY(-8deg) rotateX(5deg) translateY(0)} 50%{transform:rotateY(-5deg) rotateX(3deg) translateY(-13px)} }
@keyframes floatSmall { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes spin { to { transform:rotateX(68deg) rotateZ(372deg); } }
@keyframes spinReverse { to { transform:rotateX(68deg) rotateZ(-348deg); } }

@media (max-width: 980px) {
  .site-nav { position:absolute; top:82px; left:0; right:0; display:none; flex-direction:column; align-items:stretch; gap:4px; padding:14px; border:1px solid var(--line); border-radius:18px; background:#171a1d; box-shadow:0 20px 50px rgba(0,0,0,.35); }
  .site-nav.open { display:flex; }
  .site-nav a { padding:13px; }
  .nav-toggle { display:block; }
  .hero { grid-template-columns:1fr; padding-top:70px; }
  .hero-copy { text-align:center; }
  .eyebrow,.hero-actions,.hero-metrics { justify-content:center; }
  .hero-copy > p { margin-inline:auto; }
  .hero-visual { min-height:510px; }
  .section-heading,.split-section,.final-cta { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 660px) {
  .site-header { width:calc(100% - 20px); margin-top:10px; top:8px; }
  .brand span { font-size:.9rem; }
  .brand small { font-size:.54rem; }
  .brand img { width:44px; height:44px; }
  .section-shell { width:min(100% - 24px,1200px); }
  .hero { min-height:auto; padding-block:58px 42px; }
  .hero h1 { font-size:clamp(3.2rem,16vw,5rem); }
  .hero-copy > p { font-size:.98rem; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; }
  .hero-metrics { gap:18px; justify-content:space-between; }
  .hero-metrics span { font-size:.65rem; }
  .hero-visual { min-height:390px; }
  .logo-stage { width:min(310px,78vw); }
  .orbit-one { width:360px; height:360px; }
  .orbit-two { width:310px; height:310px; }
  .float-card { min-width:195px; padding:11px 12px; }
  .float-card-one { left:-5px; top:54px; }
  .float-card-two { right:-2px; bottom:35px; }
  .trust-strip i { display:none; }
  .trust-strip { gap:14px; font-size:.7rem; }
  .section-block { padding-block:72px; }
  .section-heading { gap:18px; }
  .service-grid,.process-grid { grid-template-columns:1fr; }
  .service-card { min-height:390px; }
  .about-panel,.payment-panel { padding:25px; }
  .final-cta { padding:30px 22px; margin-bottom:60px; }
  footer { flex-direction:column; align-items:flex-start; }
}

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