:root {
  --navy: #071524;
  --charcoal: #111827;
  --ink: #172033;
  --muted: #5d6b7c;
  --line: #dbe4ec;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --blue: #2f80ed;
  --teal: #18b6a8;
  --gold: #c59a42;
  --shadow: 0 22px 70px rgba(7, 21, 36, 0.15);
  --radius: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 21, 36, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 0.78rem;
  box-shadow: 0 14px 36px rgba(24, 182, 168, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.section {
  padding: 104px 0;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(24, 182, 168, 0.16), transparent 34%),
    linear-gradient(135deg, #071524 0%, #111827 60%, #0b1d30 100%);
}

.section-light {
  background: #fff;
}

.section-muted {
  background: var(--soft);
}

.hero {
  padding: 98px 0 110px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-dark h2 {
  color: #fff;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.hero-support {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}

.hero-actions,
.local-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 16px 36px rgba(24, 182, 168, 0.28);
}

.button-primary:hover {
  background: #149e92;
  box-shadow: 0 22px 44px rgba(24, 182, 168, 0.38);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.local-proof {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.local-proof span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-card {
  position: relative;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.browser-card::before {
  content: "";
  position: absolute;
  inset: auto 34px -28px;
  height: 80px;
  background: rgba(24, 182, 168, 0.22);
  filter: blur(36px);
  z-index: 0;
}

.browser-top,
.mock-site {
  position: relative;
  z-index: 1;
}

.browser-top {
  display: flex;
  gap: 7px;
  padding: 5px 0 14px 4px;
}

.browser-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.mock-site {
  overflow: hidden;
  border-radius: 20px;
  background: #f8fbfd;
  color: var(--ink);
}

.mock-nav,
.mock-hero,
.mock-metrics,
.mock-services {
  margin: 18px;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.mock-nav span,
.mock-hero a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--charcoal);
  font-weight: 700;
  white-space: nowrap;
}

.mock-hero {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(7, 21, 36, 0.9), rgba(7, 21, 36, 0.48)),
    linear-gradient(135deg, #5d768b, #a8b8c4);
  color: #fff;
}

.mock-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.mock-hero h2 {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.mock-hero a {
  align-self: flex-start;
  background: var(--teal);
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-metrics div,
.mock-services span {
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.mock-metrics div {
  padding: 14px;
}

.mock-metrics strong,
.mock-metrics span {
  display: block;
}

.mock-metrics strong {
  font-size: 1.25rem;
}

.mock-metrics span {
  color: var(--muted);
  font-size: 0.75rem;
}

.mock-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 18px;
}

.mock-services span {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.about-copy,
.contact-copy > p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.problem-card,
.service-card,
.portfolio-card,
.contact-form,
.contact-note,
.about-card,
.cta-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(219, 228, 236, 0.88);
  background: #fff;
  box-shadow: var(--shadow);
}

.problem-card,
.service-card {
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.problem-card:hover,
.service-card:hover,
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 128, 237, 0.28);
  box-shadow: 0 28px 82px rgba(7, 21, 36, 0.18);
}

.problem-card p,
.service-card p,
.portfolio-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(47, 128, 237, 0.1);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-section {
  position: relative;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.process-step h3 {
  color: #fff;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

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

.portfolio-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.portfolio-preview {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  background: var(--charcoal);
}

.portfolio-preview span {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.76rem;
  font-weight: 800;
}

.portfolio-preview h3 {
  max-width: 280px;
  margin: 0;
  font-size: 1.55rem;
}

/* Unsplash: contractor/home services — swap URL if desired */
.portfolio-preview.landscaping {
  background:
    linear-gradient(180deg, rgba(7, 21, 36, 0.12), rgba(7, 21, 36, 0.82)),
    url("https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=600") center / cover no-repeat;
}

/* Unsplash: landscaping/outdoor services — swap URL if desired */
.portfolio-preview.sealing {
  background:
    linear-gradient(180deg, rgba(7, 21, 36, 0.12), rgba(7, 21, 36, 0.82)),
    url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=600") center / cover no-repeat;
}

/* Unsplash: cleaning/general service — swap URL if desired */
.portfolio-preview.roofing {
  background:
    linear-gradient(180deg, rgba(7, 21, 36, 0.12), rgba(7, 21, 36, 0.82)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=600") center / cover no-repeat;
}

.portfolio-body {
  padding: 24px;
}

.about-section {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.about-card {
  padding: 34px;
  background: var(--navy);
}

.about-card h2 {
  margin: 0;
  color: #fff;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  border-left: 4px solid var(--teal);
  background: #fff;
  border-radius: var(--radius);
}

.about-copy p {
  margin: 0;
}

.cta-section {
  padding: 78px 0;
  background: var(--soft);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(47, 128, 237, 0.1), rgba(24, 182, 168, 0.08)),
    #fff;
}

.cta-panel h2 {
  max-width: 760px;
}

.cta-panel p {
  max-width: 690px;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.contact-note {
  margin-top: 26px;
  padding: 22px;
  color: var(--muted);
  box-shadow: none;
}

.contact-note strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdff;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(47, 128, 237, 0.7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  min-height: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy);
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

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

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .nav {
    min-height: auto;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
    font-size: 0.86rem;
  }

  .section,
  .hero {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    min-width: 0;
  }

  .browser-card {
    padding: 10px;
    border-radius: 22px;
  }

  .mock-nav,
  .mock-hero,
  .mock-metrics,
  .mock-services {
    margin: 12px;
  }

  .mock-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .mock-hero {
    min-height: 230px;
    padding: 20px;
  }

  .mock-metrics,
  .card-grid,
  .services-grid,
  .portfolio-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-card,
  .service-card,
  .portfolio-body,
  .about-card,
  .about-copy,
  .cta-panel,
  .contact-form {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-right {
    align-items: flex-start;
  }
}

/* ── Portfolio enhancements ─────────────────────────────── */

.portfolio-mockup {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 84px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pm-bar {
  height: 6px;
  width: 55%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
}

.pm-hero-block {
  height: 26px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
}

.pm-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.pm-line--wide { width: 90%; }
.pm-line--medium { width: 65%; }

.pm-cta {
  height: 12px;
  width: 55%;
  border-radius: 6px;
  background: rgba(24, 182, 168, 0.6);
  margin-top: 3px;
}

.pm-form-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-field {
  height: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pm-field--tall {
  height: 16px;
}

.pm-table-row {
  height: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
}

.pm-table-row--header {
  height: 10px;
  background: rgba(255, 255, 255, 0.38);
}

.pm-table-row--muted {
  background: rgba(255, 255, 255, 0.1);
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 160ms ease, color 160ms ease;
}

.portfolio-link:hover {
  gap: 8px;
  color: var(--teal);
}

/* ── Pricing section ────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(219, 228, 236, 0.88);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 82px rgba(7, 21, 36, 0.18);
}

.pricing-card--featured {
  border-color: rgba(47, 128, 237, 0.38);
  background:
    linear-gradient(135deg, rgba(47, 128, 237, 0.04), rgba(24, 182, 168, 0.04)),
    #fff;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-tier {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.pricing-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-features {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

/* ── About section expansion ────────────────────────────── */

.about-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-top: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.28);
}

.about-photo-placeholder svg {
  width: 52px;
  height: 52px;
}

.about-photo {
  width: 140px;
  height: 140px;
  margin-top: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-name {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.about-copy > p:not(.about-name) {
  margin-bottom: 16px;
}

.about-skills {
  margin: 4px 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-skills li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1rem;
}

.about-skills li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0a66c2;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 160ms ease;
}

.about-linkedin:hover {
  opacity: 0.86;
}

.about-linkedin svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Footer expansion ───────────────────────────────────── */

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  margin: 0;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}

.footer-area {
  margin: 0;
  max-width: 400px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-email {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 160ms ease;
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 160ms ease, border-color 160ms ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.72);
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
}

.footer-top {
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.footer-top:hover {
  color: #fff;
}

/* ── Form states ────────────────────────────────────────── */

.form-status--success {
  color: var(--teal);
  font-weight: 600;
}

.form-status--error {
  color: #e05252;
}

.button[disabled] {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── New section responsive overrides ───────────────────── */

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

  .pricing-card--featured {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }
}

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

  .pricing-card--featured {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  .pricing-card {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-right {
    align-items: flex-start;
  }
}

/* ── Nav logo ───────────────────────────────────────────── */

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 8px;
}

/* ── Footer phone & legal links ─────────────────────────── */

.footer-phone {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.footer-phone:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.46);
  transition: color 160ms ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.72);
}
