/*
Theme Name: Prison Calling
Theme URI: https://prisoncalling.com.au
Description: Modern, fast, mobile-first theme for Prison Calling Australia
Author: Prison Calling Australia
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prison-calling
Tags: custom-menu, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --navy:        #2B55A0;   /* blue from logo */
  --navy-dark:   #22438A;
  --navy-deeper: #1A3470;
  --orange:      #6DC840;   /* lime green from logo */
  --orange-dark: #5BB033;
  --sky:         #EEF6FF;
  --sky-2:       #F5F9FF;
  --text:        #111827;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --white:       #FFFFFF;
  --green:       #16A34A;

  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow:    0 2px 12px rgba(11,58,99,.10);
  --shadow-md: 0 4px 24px rgba(11,58,99,.14);
  --shadow-lg: 0 8px 48px rgba(11,58,99,.18);

  --max-w: 1120px;
  --px: clamp(1rem, 4vw, 2rem);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.section { padding-block: clamp(3rem, 8vw, 5rem); }
.section--sky { background: var(--sky); }
.section--navy { background: var(--navy); color: var(--white); }
.section--sky2 { background: var(--sky-2); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.display-1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-eyebrow {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9375rem;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.75);
}
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}
.btn--nav {
  background: var(--orange);
  color: var(--white);
  padding: .55rem 1.25rem;
  font-size: .875rem;
}
.btn--nav:hover {
  background: var(--orange-dark);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .9rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 800;
}
.site-logo__main {
  font-size: 1.125rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.site-logo__sub {
  font-size: .6875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Phone number in header */
.header-phone {
  display: none;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
}
.header-phone svg { color: var(--orange); flex-shrink: 0; }
@media (min-width: 640px) { .header-phone { display: flex; } }

.header-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Nav menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 900px) { .nav-menu { display: flex; } }

.nav-menu a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  padding: .45rem .75rem;
  border-radius: 8px;
  transition: all .15s;
}
.nav-menu a:hover { background: var(--sky); color: var(--navy); }
.nav-menu a.current-menu-item { color: var(--navy); }

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
}
.menu-toggle:hover { background: var(--sky); }
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem var(--px) 1.5rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 55%, #3667b8 100%);
  color: var(--white);
  padding-block: clamp(3.5rem, 9vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(249,115,22,.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero .container { position: relative; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(249,115,22,.18);
  border: 1px solid rgba(249,115,22,.35);
  color: #FDBA74;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 750px;
}
.hero__title em {
  font-style: normal;
  color: #FDBA74;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.175rem);
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.hero__trust-item svg { color: #4ADE80; flex-shrink: 0; }

/* =============================================
   RATE BAR
   ============================================= */
.rate-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: .75rem var(--px);
  font-weight: 700;
  font-size: clamp(.8125rem, 2vw, .9375rem);
}
.rate-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   PRICING HIGHLIGHTS
   ============================================= */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.price-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.price-card__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-card__amount span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.price-card__label {
  margin-top: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.price-card__note {
  margin-top: .35rem;
  font-size: .8rem;
  color: var(--text-muted);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.step {
  position: relative;
  text-align: center;
}
.step__num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--navy);
}
.step__body {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   ORDER FORM SECTION
   ============================================= */
.form-section { background: var(--sky-2); }
.form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin-inline: auto;
}
.form-wrap h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.form-wrap .form-subtitle {
  color: var(--text-muted);
  font-size: .9375rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* ---- Generic form element styles (works with WPForms, GForms, CF7) ---- */
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="tel"],
.entry-content input[type="password"],
.entry-content input[type="number"],
.entry-content select,
.entry-content textarea,
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="number"],
.gform_wrapper select,
.gform_wrapper textarea,
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="password"],
.wpforms-form input[type="number"],
.wpforms-form select,
.wpforms-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.entry-content input:focus,
.entry-content select:focus,
.entry-content textarea:focus,
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus,
.wpforms-form input:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,58,99,.10);
}

/* Form labels */
.gform_wrapper label,
.wpforms-form label,
.wpcf7-form label,
.entry-content label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--text);
}

/* Form submit buttons */
.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"],
.wpforms-form input[type="submit"],
.wpforms-form button[type="submit"],
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"],
.entry-content input[type="submit"],
.entry-content button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2.25rem;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  width: auto;
}
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper button[type="submit"]:hover,
.wpforms-form input[type="submit"]:hover,
.wpforms-form button[type="submit"]:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover,
.entry-content input[type="submit"]:hover,
.entry-content button[type="submit"]:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

/* Checkbox / radio */
.entry-content input[type="checkbox"],
.entry-content input[type="radio"],
.gform_wrapper input[type="checkbox"],
.gform_wrapper input[type="radio"],
.wpforms-form input[type="checkbox"],
.wpforms-form input[type="radio"] {
  width: 1.1em;
  height: 1.1em;
  accent-color: var(--navy);
  margin-right: .4rem;
  cursor: pointer;
}

/* Gravity Forms overrides */
.gform_wrapper .gfield_label { font-size: .875rem; font-weight: 600; }
.gform_wrapper .gfield { margin-bottom: 1.25rem; }
.gform_wrapper .ginput_complex .ginput_full,
.gform_wrapper .ginput_complex .ginput_left,
.gform_wrapper .ginput_complex .ginput_right { padding-right: 0; }
.gform_wrapper .gform_footer { margin-top: 1.5rem; }

/* =============================================
   FAQ / ACCORDION
   ============================================= */
.faq-list { margin-top: 2rem; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary,
.faq-item > h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--navy);
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item > div,
.faq-item .faq-body {
  padding: 0 1.35rem 1.25rem;
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* Native details/summary support */
details.faq-item summary { cursor: pointer; }

/* =============================================
   PRISON LIST
   ============================================= */
.prison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.prison-state {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.prison-state summary {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: var(--sky-2);
}
.prison-state summary::-webkit-details-marker { display: none; }
.prison-state summary::after {
  content: '▾';
  font-size: .875rem;
  color: var(--text-muted);
  transition: transform .2s;
}
.prison-state[open] summary::after { transform: rotate(180deg); }
.prison-state ul {
  padding: .75rem 1.25rem 1rem;
  list-style: disc;
  padding-left: 2.25rem;
}
.prison-state li {
  font-size: .875rem;
  color: var(--text-muted);
  padding: .2rem 0;
  list-style: disc;
}

/* =============================================
   ENTRY CONTENT (Gutenberg / Classic editor)
   ============================================= */
.entry-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}
.entry-content > * + * { margin-top: 1.25rem; }
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: .5rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.entry-content h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.entry-content h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
.entry-content h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
.entry-content p { margin-bottom: 1rem; }
.entry-content a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--orange); }
.entry-content ul, .entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.entry-content ul li { list-style: disc; padding: .2rem 0; }
.entry-content ol li { list-style: decimal; padding: .2rem 0; }
.entry-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 1rem 1.5rem;
  background: var(--sky);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--navy);
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}
.entry-content table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: .75rem 1rem;
  text-align: left;
}
.entry-content table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
}
.entry-content table tr:nth-child(even) td { background: var(--sky-2); }
.entry-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
  color: var(--white);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.page-hero__sub {
  color: rgba(255,255,255,.75);
  font-size: 1.0625rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (min-width: 760px) {
  .contact-grid { grid-template-columns: 1fr 1.8fr; }
}
.contact-info-card {
  background: var(--sky-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: fit-content;
}
.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.contact-detail svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: .15rem;
}
.contact-detail strong { display: block; font-size: .875rem; color: var(--text-muted); margin-bottom: .15rem; }
.contact-detail a { font-weight: 700; color: var(--navy); font-size: 1rem; }
.contact-detail a:hover { color: var(--orange); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-deeper);
  color: rgba(255,255,255,.8);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) {
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand .site-logo__main { color: var(--white); font-size: 1.25rem; }
.footer-brand .site-logo__sub { color: rgba(255,255,255,.5); }
.footer-brand p {
  margin-top: 1rem;
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}
.footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  padding: .3rem 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-col .footer-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}

.footer-bottom {
  padding-block: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* =============================================
   NOTICE BAR
   ============================================= */
.notice-bar {
  background: var(--sky);
  border-bottom: 1px solid var(--border);
  padding: .5rem var(--px);
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* =============================================
   ALERTS & NOTICES
   ============================================= */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.alert--info { background: var(--sky); color: var(--navy); border-left: 3px solid var(--navy); }
.alert--success { background: #F0FDF4; color: #166534; border-left: 3px solid var(--green); }
.alert--warning { background: #FFFBEB; color: #92400E; border-left: 3px solid #F59E0B; }

/* =============================================
   404 PAGE
   ============================================= */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem var(--px);
}
.error-page__code {
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: .5rem;
}
.error-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.error-page__body {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-inline: auto;
}

/* =============================================
   SKIP LINK (ACCESSIBILITY)
   ============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: .875rem;
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.fw-700 { font-weight: 700; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
}
.badge--green { background: #F0FDF4; color: #166534; }
.badge--orange { background: #FFF7ED; color: #C2410C; }
.badge--navy { background: var(--sky); color: var(--navy); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .btn--lg { width: 100%; justify-content: center; }
}
@media (min-width: 900px) {
  .hero::after { height: 80px; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .site-header, .site-footer, .mobile-nav { display: none; }
  .hero { background: none; color: var(--text); padding: 1rem 0; }
  .hero::after { display: none; }
  body { font-size: 12pt; }
}
