:root {
  --blue: #0797ee;
  --blue-strong: #0477c7;
  --ink: #0d1f3c;
  --muted: #5e708a;
  --line: #dbe8f4;
  --soft: #f4f9fd;
  --white: #ffffff;
  --green: #79a645;
  --shadow: 0 18px 45px rgba(11, 43, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 232, 244, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 24px;
}

.brand img {
  width: 128px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 650;
  color: #172844;
}

.main-nav a {
  position: relative;
  padding: 31px 0 28px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.45);
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue-strong);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 12px 28px rgba(7, 151, 238, 0.28);
}

.btn-secondary {
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--blue);
}

.btn-light {
  color: var(--blue-strong);
  background: var(--white);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 32%, rgba(255, 255, 255, 0.24) 58%, rgba(255, 255, 255, 0) 100%),
    url("assets/hero-awning.jpg") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  content: "";
  background: linear-gradient(0deg, var(--white), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 680px;
}

.hero-copy {
  max-width: 560px;
  padding: 86px 0 130px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--blue);
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 34px;
  color: #243751;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -72px;
  padding-bottom: 42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(219, 232, 244, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 12px 22px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.icon,
.card-icon,
.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #eef7ff;
  border: 1px solid #d5ecff;
  flex: 0 0 auto;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.icon svg,
.card-icon svg,
.process-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact h2,
.cta-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p:last-child,
.about-copy p,
.contact p {
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.offer-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(11, 43, 74, 0.07);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.card-icon {
  width: 62px;
  height: 62px;
  margin: -31px auto 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 151, 238, 0.16);
}

.offer-card h3 {
  margin: 0 24px 12px;
  font-size: 18px;
  line-height: 1.25;
}

.offer-card p {
  min-height: 98px;
  margin: 0 24px 24px;
  color: var(--muted);
  font-size: 14px;
}

.offer-card a {
  display: inline-flex;
  margin: 0 24px 28px;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 800;
}

.offer-card a::after {
  content: "->";
  margin-left: 8px;
}

.about-band {
  background:
    radial-gradient(circle at 92% 76%, rgba(7, 151, 238, 0.13), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 76px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 12px 0 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #203550;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.about-image {
  position: relative;
}

.about-image::before {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 180px;
  height: 180px;
  content: "";
  background-image: radial-gradient(var(--blue) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.5;
}

.about-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}

.process-step {
  position: relative;
  padding: 0 18px;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 50px;
  right: -32px;
  width: 54px;
  height: 1px;
  content: "";
  background: #bfd7ea;
}

.process-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
}

.process-icon svg {
  width: 34px;
  height: 34px;
}

.process-step strong {
  display: block;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 12px;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  padding: 10px 0 80px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 250px;
  padding: 54px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 151, 238, 0.92), rgba(7, 151, 238, 0.66) 42%, rgba(7, 151, 238, 0.08)),
    url("assets/hero-awning.jpg") center right / cover no-repeat;
}

.cta-panel .eyebrow,
.cta-panel h2 {
  color: var(--white);
}

.cta-panel h2 {
  margin: 0;
}

.contact {
  background: #f7fbff;
}

.service-area {
  padding-top: 82px;
  padding-bottom: 82px;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
  align-items: start;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.service-area-grid p {
  color: var(--muted);
}

.service-area-grid a {
  color: var(--blue-strong);
  font-weight: 800;
}

.faq {
  padding-top: 76px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.faq-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(11, 43, 74, 0.06);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.28;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-list a,
.contact-list p {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  color: #1d3554;
}

.contact-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(11, 43, 74, 0.08);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #19314f;
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cadbea;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 151, 238, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 58px 0 22px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr 1fr;
  gap: 62px;
}

.footer-grid img {
  width: 132px;
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 14px;
}

.footer-grid p a {
  font-size: inherit;
}

.footer-grid nav,
.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.footer-cta {
  justify-self: start;
  padding: 11px 22px;
  margin-top: 10px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--blue);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 150px auto auto;
  }

  .main-nav {
    gap: 14px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .faq-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item + .trust-item {
    border-left: 0;
  }

  .trust-item:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .brand img {
    width: 112px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 44%, rgba(255, 255, 255, 0.92)),
      url("assets/hero-awning.jpg") center / cover no-repeat;
  }

  .hero-grid {
    min-height: 610px;
  }

  .hero-copy {
    padding: 72px 0 130px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .trust-grid,
  .offer-grid,
  .about-grid,
  .service-area-grid,
  .process-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    padding: 16px;
  }

  .trust-item,
  .trust-item:nth-child(2n) {
    border-left: 0;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .about-grid,
  .service-area-grid,
  .contact-grid {
    gap: 42px;
  }

  .offer-card p {
    min-height: auto;
  }

  .cta-panel {
    display: grid;
    justify-items: start;
    padding: 34px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  .hero-grid {
    min-height: 560px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .hero-actions .btn,
  .quote-form .btn {
    width: 100%;
  }

  .btn {
    padding: 0 18px;
  }

  .trust-strip {
    margin-top: -58px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .quote-form,
  .cta-panel {
    padding: 24px;
  }
}

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