:root {
  /* Palette sampled directly from the uploaded GP WindowScreens logo */
  --ink: #010d1c;
  --navy: #0d2239;
  --navy-mid: #0d345c;
  --blue: #094d8c;
  --blue-bright: #4177ba;
  --green-dark: #206f1d;
  --green: #56a032;
  --lime: #8cc64d;
  --lime-soft: #c8e596;
  --silver: #c7cbd0;
  --steel: #657685;
  --white: #ffffff;
  --off-white: #f5f7f8;
  --text: #172638;
  --muted: #657685;
  --line: #d7dde1;
  --shadow: 0 20px 60px rgba(1, 13, 28, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(1,13,28,.10);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.header-logo { width: 64px; height: 64px; object-fit: contain; }
.brand-copy { display: grid; }
.brand-name { color: var(--ink); font-weight: 950; font-size: 1.06rem; line-height: 1.05; }
.brand-tag { color: var(--steel); font-size: .72rem; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 24px; font-weight: 800; color: var(--navy); }
.nav a:hover { color: var(--green); }
.nav-cta {
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--lime), var(--green-dark));
  color: white !important;
  box-shadow: inset 0 1px rgba(255,255,255,.35);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 25%, rgba(65,119,186,.28), transparent 25%),
    radial-gradient(circle at 72% 85%, rgba(140,198,77,.14), transparent 28%),
    linear-gradient(135deg, #010d1c 0%, #0d2239 52%, #0d345c 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green-dark), var(--lime), var(--blue-bright), var(--green-dark));
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(199,203,208,.75) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,203,208,.75) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, transparent 10%, rgba(0,0,0,.25) 54%, black 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: center;
  padding: 76px 0;
}
.eyebrow {
  display: inline-block;
  color: var(--lime);
  font-weight: 950;
  letter-spacing: .15em;
  font-size: .76rem;
}
.eyebrow.dark { color: var(--green-dark); }
.hero h1 {
  color: white;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .97;
  letter-spacing: -.055em;
  margin: 16px 0 24px;
}
.hero h1 span {
  background: linear-gradient(180deg, var(--lime-soft), var(--lime) 45%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  color: #d4dde5;
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 9px;
  font-weight: 950;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #a8d968, var(--lime) 48%, var(--green-dark));
  color: #06111c;
  border: 1px solid #b9e57f;
  box-shadow: 0 10px 24px rgba(86,160,50,.24), inset 0 1px rgba(255,255,255,.65);
}
.btn-secondary {
  border: 1px solid rgba(199,203,208,.55);
  color: white;
  background: rgba(255,255,255,.05);
}
.trust-row {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: #b9c5cf;
  font-size: .9rem;
  font-weight: 750;
}
.logo-showcase {
  display: grid;
  place-items: center;
  min-height: 420px;
}
.logo-showcase img {
  width: min(100%, 465px);
  filter: drop-shadow(0 28px 26px rgba(0,0,0,.34));
  border-radius: 18px;
}

.section { padding: 92px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h2, .why h2, .quote h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 10px 0 16px;
}
.section-heading > p, .why-intro { color: var(--muted); font-size: 1.05rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  transition: .2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-dark), var(--lime), var(--blue));
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(86,160,50,.35);
}
.service-number {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #eaf5dd, var(--lime-soft));
  color: var(--green-dark);
  border: 1px solid #b7d88d;
  font-weight: 950;
}
.service-card h3 { color: var(--ink); font-size: 1.28rem; margin: 22px 0 10px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.why {
  background:
    linear-gradient(rgba(245,247,248,.94), rgba(245,247,248,.94)),
    repeating-linear-gradient(0deg, transparent, transparent 17px, rgba(13,34,57,.04) 18px),
    repeating-linear-gradient(90deg, transparent, transparent 17px, rgba(13,34,57,.04) 18px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.feature-list { display: grid; gap: 16px; }
.feature {
  display: flex; gap: 20px; padding: 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
}
.feature > span { color: var(--blue); font-weight: 950; font-size: .85rem; }
.feature h3 { margin: 0 0 5px; color: var(--ink); }
.feature p { margin: 0; color: var(--muted); }


/* Stetson Valley promotion */
.special {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(1,13,28,.96), rgba(1,13,28,.96)),
    repeating-linear-gradient(60deg, transparent 0 18px, rgba(140,198,77,.08) 19px 20px);
  border-top: 1px solid rgba(140,198,77,.35);
  border-bottom: 1px solid rgba(65,119,186,.35);
}
.special-card {
  display: grid;
  grid-template-columns: .65fr 1.55fr .8fr;
  gap: 34px;
  align-items: center;
  padding: 38px 42px;
  border: 1px solid rgba(140,198,77,.65);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 50%, rgba(140,198,77,.18), transparent 28%),
    linear-gradient(135deg, rgba(13,34,57,.92), rgba(1,13,28,.98));
  box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 5px 0 var(--lime);
}
.special-discount { display: flex; align-items: flex-end; gap: 8px; white-space: nowrap; }
.special-percent { color: var(--lime); font-size: clamp(4.2rem, 8vw, 7rem); line-height: .78; font-weight: 1000; letter-spacing: -.08em; }
.special-off { color: white; font-size: 1.45rem; line-height: 1; font-weight: 950; padding-bottom: 8px; }
.special-copy h2 { color: white; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.02; letter-spacing: -.04em; margin: 8px 0 12px; }
.special-copy p { color: #d4dde5; margin: 0; font-size: 1.05rem; }
.special-copy strong { color: var(--lime-soft); }
.special-action { display: grid; gap: 12px; }
.special-phone { color: white; text-align: center; font-weight: 900; }
.special-phone:hover { color: var(--lime); }
.hero-special {
  display: inline-block;
  margin-top: 22px;
  padding: 11px 14px;
  border-left: 4px solid var(--lime);
  background: rgba(140,198,77,.10);
  color: #e9f3df;
  font-size: .92rem;
}
.hero-special strong { color: var(--lime); }

.quote { background: white; }
.quote-box {
  border-radius: 18px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
  background:
    radial-gradient(circle at 95% 5%, rgba(140,198,77,.24), transparent 27%),
    linear-gradient(135deg, #f7f9fa, #eef2f4);
  border: 1px solid var(--silver);
  box-shadow: inset 0 5px 0 var(--navy);
}
.quote-copy p { color: var(--muted); max-width: 650px; }
.quote-actions { display: grid; gap: 12px; }
.wide { width: 100%; }
.btn-email {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: white;
}

footer {
  background: #010d1c;
  color: white;
  padding: 38px 0 22px;
  border-top: 5px solid var(--green);
}
.footer-wrap { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; }
.footer-wrap strong { font-size: 1.2rem; }
.footer-wrap p { color: #aeb9c3; margin: 6px 0 0; }
.footer-contact { display: grid; gap: 6px; text-align: right; }
.footer-contact a { color: var(--lime); font-weight: 850; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 18px;
  color: #71808e;
  font-size: .84rem;
}

@media (max-width: 860px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero-grid, .why-grid, .quote-box, .special-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 22px; padding: 58px 0; }
  .logo-showcase { min-height: auto; }
  .logo-showcase img { max-width: 390px; }
  .card-grid { grid-template-columns: 1fr; }
  .quote-box { padding: 36px; gap: 28px; }
  .special-card { padding: 34px 28px; gap: 24px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-logo { width: 54px; height: 54px; }
  .brand-tag { display: none; }
  .brand-name { font-size: .92rem; }
  .nav-cta { padding: 9px 13px; font-size: .86rem; }
  .hero h1 { font-size: 3.1rem; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; gap: 8px; }
  .section { padding: 68px 0; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
}


/* Lead / intake form */
.quote-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.quote-heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 10px 0 16px;
}
.quote-heading p { color: var(--muted); font-size: 1.05rem; }

.lead-form {
  background: linear-gradient(145deg, #ffffff, #f4f6f7);
  border: 1px solid var(--silver);
  border-top: 6px solid var(--green);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.lead-form label > span,
.lead-form legend {
  display: block;
  color: var(--ink);
  font-weight: 850;
  margin-bottom: 8px;
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form textarea {
  width: 100%;
  border: 1px solid #bdc7ce;
  border-radius: 9px;
  background: white;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  outline: none;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(65,119,186,.14);
}
.lead-form fieldset {
  border: 0;
  padding: 0;
  margin: 30px 0 0;
}
.lead-form legend { font-size: 1.05rem; }
.field-help {
  margin: -3px 0 13px;
  color: var(--muted);
  font-size: .9rem;
}
.choice-grid {
  display: grid;
  gap: 10px;
}
.choice-grid.three { grid-template-columns: repeat(3, 1fr); }
.choice-grid.windows { grid-template-columns: repeat(5, 1fr); }
.choice {
  cursor: pointer;
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice span {
  height: 100%;
  min-height: 52px;
  display: grid !important;
  place-items: center;
  text-align: center;
  padding: 10px;
  margin: 0 !important;
  border: 1px solid #bdc7ce;
  border-radius: 9px;
  background: white;
  color: var(--navy) !important;
  transition: .15s ease;
}
.choice input:checked + span {
  border-color: var(--green-dark);
  background: linear-gradient(180deg, #eaf5dd, var(--lime-soft));
  box-shadow: inset 0 0 0 2px var(--green);
  color: var(--ink) !important;
}
.full-field { display: block; margin-top: 28px; }
.lead-form textarea { resize: vertical; min-height: 110px; }
.form-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}
.submit-btn { border: 0; cursor: pointer; font-size: 1rem; }
.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  max-width: 470px;
}
.form-message {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #edf6e4;
  border: 1px solid #b9d994;
  color: #24581d;
}
.direct-contact {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
}
.direct-contact a { color: var(--blue); font-weight: 850; }
.direct-contact .dot { color: var(--silver); }

@media (max-width: 860px) {
  .choice-grid.three { grid-template-columns: 1fr; }
  .choice-grid.windows { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .lead-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .choice-grid.windows { grid-template-columns: repeat(2, 1fr); }
  .form-footer { align-items: stretch; flex-direction: column; }
  .submit-btn { width: 100%; }
}

.form-message.success {
  background: #edf6e4;
  border-color: #b9d994;
  color: #24581d;
}
.form-message.error {
  background: #fff0ef;
  border-color: #e5aaa5;
  color: #7c251f;
}
.form-message.error a { font-weight: 900; text-decoration: underline; }
.submit-btn:disabled { opacity: .65; cursor: wait; transform: none; }


.turnstile-wrap {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.cf-turnstile {
  max-width: 100%;
}

.turnstile-note {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.service-area {
  padding-top: 30px;
  background: var(--white);
}
.service-area-box {
  padding: 44px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4f7f8, #eef4e8);
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
}
.service-area h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 10px 0 16px;
}
.service-area p { color: var(--muted); max-width: 800px; }
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.city-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid #cbd4d9;
  color: var(--navy);
  font-weight: 800;
}
