/* ============================================================
   The Silver Tech Guy — styles.css
   Elder Technologist LLC | https://www.silvertechguy.com
   ============================================================ */

/* ------------------------------------------------------------
   0. SELF-HOSTED FONTS
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Variable-Italic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Slab';
  src: url('fonts/RobotoSlab-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --color-primary:       #1A3A5C;
  --color-secondary:     #39658C;
  --color-accent:        #904724;
  --color-accent-light:  #C87B3A;
  --color-bg-dark:       #222E46;
  --color-bg-light:      #F5F0E8;
  --color-bg-white:      #FAFAF8;
  --color-text-dark:     #0A0A14;
  --color-text-light:    #FFFFFF;
  --color-text-muted:    #4A5568;
  --color-silver:        #D0D0C8;
  --color-border:        #E2DDD4;

  /* Typography */
  --font-heading: 'Roboto Slab', serif;
  --font-main:    'Open Sans', sans-serif;
  --text-xs:      14px;
  --text-sm:      16px;
  --text-base:    18px;
  --text-lg:      20px;
  --text-xl:      24px;
  --text-2xl:     30px;
  --text-3xl:     36px;
  --text-4xl:     48px;
  --text-5xl:     56px;
  --line-height:  1.7;

  /* Spacing */
  --section-pad:      80px;
  --section-pad-sm:   48px;
  --container-max:    1100px;
  --card-pad:         28px;
  --radius-sm:        4px;
  --radius-md:        8px;
  --radius-lg:        12px;

  /* Shadows */
  --shadow-card:   0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-nav:    0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-btn:    0 2px 6px rgba(200, 123, 58, 0.35);
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: var(--text-base);
}

body {
  font-family: var(--font-main);
  font-size: var(--text-base);
  line-height: var(--line-height);
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-secondary);
}

a:focus-visible {
  outline: 3px solid var(--color-accent-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

ul, ol {
  padding-left: 1.5rem;
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-weight: 600; }

p {
  margin-bottom: 1rem;
  max-width: 680px;
}

p:last-child {
  margin-bottom: 0;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 0.5rem;
}

blockquote {
  border-left: 4px solid var(--color-accent-light);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-style: italic;
  background: var(--color-bg-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
}

/* Light text overrides (on dark backgrounds) */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark p,
.bg-dark .eyebrow,
.bg-dark li {
  color: var(--color-text-light);
}

.bg-dark .eyebrow {
  color: var(--color-accent-light);
}

/* ------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   ------------------------------------------------------------ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background-color: var(--color-bg-light);
}

.bg-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-primary);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-light);
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text-light);
}

.nav-links a.active {
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background-color: var(--color-accent-light);
  color: var(--color-text-light);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, transform 0.1s ease;
  min-height: 48px;
  white-space: nowrap;
}

.nav-phone a:hover {
  background-color: var(--color-accent);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  background-color: var(--color-bg-dark);
  padding: 16px 24px 24px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile-phone {
  display: block;
  text-align: center;
  padding: 14px;
  background-color: var(--color-accent-light);
  color: var(--color-text-light);
  font-size: var(--text-lg);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 52px;
  font-family: var(--font-main);
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent-light);
  outline-offset: 3px;
}

.btn-primary {
  background-color: var(--color-accent-light);
  color: var(--color-text-light);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 123, 58, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-lg {
  padding: 18px 36px;
  font-size: var(--text-lg);
  min-height: 60px;
}

/* ------------------------------------------------------------
   7. HERO SECTION
   ------------------------------------------------------------ */
.hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(57, 101, 140, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  color: var(--color-text-light);
  font-size: var(--text-5xl);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-content .hero-sub {
  font-size: var(--text-xl);
  color: var(--color-accent-light);
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: block;
}

.hero-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  border-radius: var(--radius-lg);
  max-height: 420px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Hero image placeholder */
.hero-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
}

/* ------------------------------------------------------------
   8. TRUST BAR
   ------------------------------------------------------------ */
.trust-bar {
  background-color: var(--color-bg-dark);
  padding: 24px 0;
}

.trust-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-weight: 600;
}

.trust-item .trust-icon {
  font-size: 20px;
  color: var(--color-accent-light);
}

/* ------------------------------------------------------------
   9. SERVICE CARDS
   ------------------------------------------------------------ */
.card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: var(--card-pad);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--color-accent-light);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: var(--text-xl);
}

.card p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: 1rem;
}

.card-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Service detail card (used on services.html) */
.service-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-accent-light);
}

.service-card h3 {
  margin-bottom: 0.25rem;
  font-size: var(--text-2xl);
}

.service-card .service-tagline {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  font-style: italic;
}

.service-card p {
  color: var(--color-text-muted);
  max-width: 100%;
}

.service-card ul {
  margin: 12px 0;
  color: var(--color-text-muted);
}

.service-card ul li {
  margin-bottom: 6px;
}

.service-good-for {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

/* ------------------------------------------------------------
   10. TESTIMONIALS
   ------------------------------------------------------------ */
.testimonial-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: var(--card-pad);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  line-height: 1;
  color: var(--color-accent-light);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text-dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-top: 20px;
}

.testimonial-attribution {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-service {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: 12px;
}

/* ------------------------------------------------------------
   11. PRICING TABLE
   ------------------------------------------------------------ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pricing-table thead {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.pricing-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background-color: var(--color-bg-light);
}

.pricing-table tbody td {
  padding: 18px 24px;
  color: var(--color-text-dark);
}

.pricing-table tbody td:nth-child(2) {
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--text-lg);
  white-space: nowrap;
}

.pricing-highlight {
  background-color: var(--color-bg-light) !important;
}

.pricing-highlight td:first-child::after {
  content: ' ★ Most Popular';
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent-light);
  margin-left: 8px;
}

.pricing-rate-card {
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.pricing-rate-card .rate-amount {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.pricing-rate-card .rate-label {
  font-size: var(--text-lg);
  font-weight: 600;
  color: white;
  display: block;
  margin-bottom: 8px;
}

.pricing-rate-card .rate-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  max-width: 100%;
}

/* ------------------------------------------------------------
   12. CONTACT FORM
   ------------------------------------------------------------ */
.contact-form {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-main);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 52px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(57, 101, 140, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3A5C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-helper {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 16px;
  text-align: center;
}

/* ------------------------------------------------------------
   13. CONTACT INFO BLOCKS
   ------------------------------------------------------------ */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-accent-light);
}

.contact-info-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text p {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin: 0;
  max-width: 100%;
}

.contact-info-text a:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

/* ------------------------------------------------------------
   14. SERVICE AREA
   ------------------------------------------------------------ */
.area-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--color-accent-light);
}

.area-card h3 {
  margin-bottom: 0.25rem;
}

.area-card .area-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  display: block;
  margin-bottom: 12px;
}

.area-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 100%;
}

/* ------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  max-width: 300px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  color: var(--color-accent-light);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--color-accent-light);
}

.footer-col p,
.footer-col address {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  font-style: normal;
  line-height: 1.8;
  max-width: 100%;
}

.footer-col a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-accent-light);
}

.footer-tagline {
  display: block;
  margin-top: 12px;
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-accent-light);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ------------------------------------------------------------
   16. PAGE HERO (interior pages)
   ------------------------------------------------------------ */
.page-hero {
  background-color: var(--color-primary);
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-text-light);
  font-size: var(--text-4xl);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: var(--text-lg);
  margin: 0 auto;
  max-width: 580px;
}

/* ------------------------------------------------------------
   17. UTILITIES
   ------------------------------------------------------------ */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 40px 0;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-bronze {
  background: rgba(200, 123, 58, 0.15);
  color: var(--color-accent);
}

.badge-navy {
  background: rgba(26, 58, 92, 0.12);
  color: var(--color-primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.payment-badge {
  padding: 6px 14px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

/* CTA banner */
.cta-banner {
  background: var(--color-primary);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: var(--text-lg);
  margin: 0 auto 2rem;
}

.cta-banner .btn-secondary {
  border-color: rgba(255,255,255,0.5);
}

/* ------------------------------------------------------------
   18. RESPONSIVE — TABLET (max 900px)
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  :root {
    --text-5xl: 44px;
    --text-4xl: 36px;
    --text-3xl: 30px;
  }

  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-placeholder {
    max-width: 100%;
    aspect-ratio: 16/9;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar-inner {
    gap: 24px;
  }
}

/* ------------------------------------------------------------
   19. RESPONSIVE — MOBILE (max 600px)
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  :root {
    --text-5xl: 36px;
    --text-4xl: 30px;
    --text-3xl: 26px;
    --text-xl: 22px;
    --section-pad: var(--section-pad-sm);
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .service-card {
    padding: 24px;
  }

  .service-card-header {
    flex-direction: column;
    gap: 12px;
  }

  .contact-form {
    padding: 24px;
  }

  .pricing-table thead th:nth-child(3),
  .pricing-table tbody td:nth-child(3) {
    display: none;
  }

  .btn-lg {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding: 48px 0 40px;
  }

  .page-hero h1 {
    font-size: 30px;
  }
}
