/* Georgia Web Co — Service subpages */

:root {
  --ink: #111827;
  --navy: #0f1626;
  --navy-mid: #1a2438;
  --orange: #fd761a;
  --orange-dark: #b84a00;
  --muted: #5a6272;
  --line: #d5dbe5;
  --surface: #eef2f6;
  --paper: #f3f5f8;
  --paper-bright: #fafbfd;
  --container: 1080px;
  --header-height: 76px;
  --radius: 8px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --ease: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(253, 118, 26, 0.07), transparent 50%),
    var(--paper);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1.375rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--orange);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(15, 22, 38, 0.08);
  background: rgba(243, 245, 248, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.header-nav {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.header-nav a:hover {
  color: var(--navy);
}

.back-home {
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */

.svc-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(72vh, 620px);
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--navy);
}

.svc-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 22, 38, 0.35) 0%, rgba(15, 22, 38, 0.78) 55%, rgba(15, 22, 38, 0.94) 100%),
    linear-gradient(90deg, rgba(15, 22, 38, 0.55) 0%, transparent 60%);
}

.svc-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.875rem;
  color: #ffb074;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.svc-hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 16ch;
}

.svc-hero .lede {
  margin-top: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  max-width: 34rem;
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Sections */

.section {
  padding: clamp(3.75rem, 7vw, 5.5rem) 0;
}

.section-dark {
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(253, 118, 26, 0.12), transparent 50%),
    var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

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

.section-muted {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.section-head p {
  margin-top: 0.875rem;
  color: var(--muted);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .eyebrow {
  color: #ffb074;
}

/* Logo / tool grids */

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 7.5rem;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(15, 22, 38, 0.08);
  border-radius: var(--radius);
  background: var(--paper-bright);
  text-align: center;
}

.logo-card img {
  height: 2rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
}

.logo-card span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.tool-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.tool-pill {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-bright);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-dark .tool-pill {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Feature list */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.5rem 0;
  border-top: 2px solid var(--orange);
}

.feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.9875rem;
}

.section-dark .feature p {
  color: rgba(255, 255, 255, 0.62);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  padding-top: 1rem;
  border-top: 3px solid var(--orange);
}

.step-num {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(253, 118, 26, 0.35);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9375rem;
}

.section-dark .step p {
  color: rgba(255, 255, 255, 0.62);
}

/* Sibling services */

.sibling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sibling {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
  transition: border-color var(--ease), transform var(--ease);
}

.sibling:hover {
  border-color: rgba(253, 118, 26, 0.5);
  transform: translateY(-2px);
}

.sibling strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.sibling span {
  color: var(--muted);
  font-size: 0.875rem;
}

/* CTA */

.cta-band {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(253, 118, 26, 0.16), transparent 50%),
    var(--navy);
  text-align: center;
  color: #fff;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cta-band p {
  max-width: 32rem;
  margin: 0.875rem auto 1.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-form {
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}

.cta-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cta-form label {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.cta-form label span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cta-form button {
  width: 100%;
  margin-top: 0.25rem;
}

.cta-form .form-note {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Footer */

.site-footer {
  padding: 2rem 0;
  background: #0a101c;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

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

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

  .logo-wall,
  .feature-grid,
  .steps,
  .sibling-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 801px) and (max-width: 980px) {
  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps,
  .sibling-grid {
    grid-template-columns: 1fr 1fr;
  }
}
