:root {
  --navy: #0d2138;
  --navy-light: #173b5e;
  --blue: #287bb5;
  --blue-light: #eaf5fc;
  --orange: #f17b32;
  --orange-dark: #d9631b;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --light-gray: #edf1f5;
  --gray: #687789;
  --dark-gray: #263646;
  --border: #dce4eb;
  --success: #26a269;
  --shadow: 0 18px 50px rgba(13, 33, 56, 0.12);
  --shadow-small: 0 8px 26px rgba(13, 33, 56, 0.08);
  --radius: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.65;
}

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

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 95px 0;
}

.section-light {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-heading p {
  color: var(--gray);
  font-size: 1.07rem;
}

.section-dark .section-heading h2, .section-dark .section-heading p {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button-blue {
  background: var(--blue);
}

.button-blue:hover {
  background: var(--navy-light);
}

/* TOP BAR */

.topbar {
  padding: 9px 0;
  background: #071626;
  color: var(--white);
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.topbar-note {
  color: #dbe6ee;
}

.topbar-contact {
  display: flex;
  gap: 19px;
  font-weight: 700;
}

.topbar a:hover {
  color: var(--orange);
}

/* NAVIGATION */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 900;
}

.brand-name {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-name span {
  color: var(--orange);
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: var(--dark-gray);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--orange);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: linear-gradient( 90deg, rgba(7, 22, 38, 0.98) 0%, rgba(13, 33, 56, 0.94) 48%, rgba(13, 33, 56, 0.60) 100% ), url("ceiling-patch-repair.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -190px;
  width: 580px;
  height: 580px;
  border: 100px solid rgba(255,255,255,0.035);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 58px;
}

.hero-content {
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: #edf5fa;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  margin-bottom: 23px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.99;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 27px;
  color: #e1ebf3;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 32px;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  max-width: 650px;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 27px;
  color: #e9f0f5;
  font-size: 0.96rem;
  font-weight: 700;
}

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

/* HERO FORM */

.estimate-card {
  padding: 31px;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 20px;
  background: rgba(255,255,255,0.98);
  color: var(--dark-gray);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.estimate-card h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.16;
}

.estimate-card > p {
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 0.93rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark-gray);
  outline: none;
}

.form-group textarea {
  min-height: 88px;
  resize: vertical;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40,123,181,0.11);
}

.estimate-card .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  font-size: 0.78rem !important;
  text-align: center;
}

/* TRUST */

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 0.98rem;
}

.trust-item span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* DAMAGE TYPES */

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

.repair-card {
  position: relative;
  padding: 31px 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition: 0.2s ease;
}

.repair-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.repair-icon {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 13px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
}

.repair-card h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 1.22rem;
}

.repair-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* BEFORE / AFTER */

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}

.result-photo {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(rgba(13,33,56,0.06),rgba(13,33,56,0.06)), url("finished-ceiling-patch.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.result-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 9px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  box-shadow: var(--shadow-small);
}

.result-copy h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
}

.result-copy p {
  margin-bottom: 18px;
  color: var(--gray);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  font-weight: 700;
}

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

/* PROCESS */

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

.process-card {
  position: relative;
  padding: 30px 25px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
}

.process-number {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.process-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.15rem;
}

.process-card p {
  color: #c9d5df;
  font-size: 0.93rem;
}

/* WHY */

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

.why-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--blue-light);
}

.why-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.why-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* PHOTO ESTIMATE */

.photo-estimate {
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  box-shadow: var(--shadow);
}

.photo-estimate-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  padding: 55px;
}

.photo-estimate h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.photo-estimate p {
  max-width: 660px;
  color: #cfdae5;
}

.photo-guide {
  display: grid;
  gap: 11px;
  list-style: none;
}

.photo-guide li {
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
}

/* FAQ */

.faq-wrap {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 13px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.faq-item summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 17px;
  right: 21px;
  color: var(--orange);
  content: "+";
  font-size: 1.55rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--gray);
}

/* CTA */

.cta {
  padding: 78px 0;
  background: linear-gradient(90deg, rgba(13,33,56,0.98), rgba(40,123,181,0.9)), url("smooth-ceiling-after-repair.jpg") center / cover no-repeat;
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.cta h2 {
  max-width: 700px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.1;
}

.cta p {
  color: #dfe9f1;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* FOOTER */

.footer {
  padding: 55px 0 24px;
  background: #071626;
  color: #aebdca;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 50px;
  padding-bottom: 38px;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.08rem;
}

.footer p {
  max-width: 430px;
}

.footer ul {
  display: grid;
  gap: 7px;
  list-style: none;
}

.footer a:hover {
  color: var(--orange);
}

.copyright {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.09);
  color: #8495a5;
  font-size: 0.84rem;
  text-align: center;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid, .result-grid, .photo-estimate-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .estimate-card {
    max-width: 650px;
  }
}

@media (max-width: 980px) {
  .repairs-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .trust-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 980px) {
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 68px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 68px 0;
  }
}

@media (max-width: 700px) {
  .topbar-inner {
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .topbar-contact {
    gap: 12px;
  }
}

@media (max-width: 700px) {
  .header .button {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 70px 0;
  }
}

@media (max-width: 700px) {
  .hero-list, .repairs-grid, .why-grid, .process-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 700px) {
  .hero-buttons, .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .hero-buttons .button, .cta-buttons .button {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 700px) {
  .trust-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .result-photo {
    min-height: 390px;
  }
}

@media (max-width: 700px) {
  .photo-estimate-inner {
    padding: 35px 25px;
  }
}

@media (max-width: 700px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 900;
    box-shadow: 0 -8px 25px rgba(7,22,38,0.2);
  }
}

body {
  font-family: 'Marcellus';
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Marcellus SC';
}

