/* ===================================
   1 TECHNOLOGY DRIVE LLC - Main Styles
   Colors: Blue, Green, White, Black
   =================================== */

/* --- CSS Variables --- */
:root {
  --blue-900: #063070;
  --blue-700: #0a3d8f;
  --blue-600: #0d4fba;
  --blue-500: #1a5ec4;
  --blue-100: #dce8f8;
  --blue-50: #f0f6ff;

  --green-600: #0d8a4a;
  --green-500: #0f9d58;
  --green-400: #14b866;
  --green-100: #d4f5e2;
  --green-50: #ecfbf3;

  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #d6dce5;
  --gray-300: #b0bac8;
  --gray-400: #8896a7;
  --gray-500: #64748b;
  --gray-600: #4a5568;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --black: #0a0a0a;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;

  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

/* --- 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-sans);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.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;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--black);
}

/* --- HEADER --- */
.top-bar {
  background-color: var(--blue-700);
  color: var(--white);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8125rem;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-contacts a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.top-bar-contacts a:hover {
  color: var(--white);
}

.top-bar-contacts svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-address {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background-color: var(--blue-700);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  font-family: var(--font-heading);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  font-family: var(--font-heading);
}

.logo-text-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition), background-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-700);
  background-color: var(--blue-50);
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--black);
  transition: background-color var(--transition);
}

.mobile-toggle:hover {
  background-color: var(--gray-100);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition), background-color var(--transition);
}

.mobile-menu a:hover {
  color: var(--blue-700);
  background-color: var(--blue-50);
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .top-bar-address { display: none; }
}

@media (max-width: 639px) {
  .top-bar-contacts span { display: none; }
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--black);
  color: var(--white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

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

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--blue-700);
  color: var(--white);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem 5rem;
}

@media (min-width: 768px) {
  .hero-inner { padding: 7rem 1rem; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

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

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 640px;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; align-items: center; }
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--green-500);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color var(--transition);
}

.btn-green:hover {
  background-color: var(--green-600);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

/* --- SERVICES SECTION --- */
.services {
  background-color: var(--white);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .services { padding: 7rem 0; }
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 2.25rem; }
}

.section-header p {
  margin-top: 1rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: rgba(10,61,143,0.3);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background-color: var(--blue-50);
  color: var(--blue-700);
  margin-bottom: 1.25rem;
  transition: background-color var(--transition), color var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--blue-700);
  color: var(--white);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- ABOUT SECTION --- */
.about {
  background-color: var(--blue-50);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .about { padding: 7rem 0; }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.about-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .about-text h2 { font-size: 2.25rem; }
}

.about-text p {
  margin-top: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stats .stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--blue-700);
}

.about-stats .stat-number.green {
  color: var(--green-500);
}

.about-stats .stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.about-panel {
  border-radius: 1rem;
  background-color: var(--blue-700);
  padding: 2rem;
  color: var(--white);
}

.about-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-panel-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-panel-list .list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green-500);
  flex-shrink: 0;
  margin-top: 6px;
}

.about-panel-list span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--white);
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .cta-section { padding: 7rem 0; }
}

.cta-box {
  border-radius: 1rem;
  background-color: var(--blue-700);
  padding: 2rem 2rem;
  text-align: center;
  color: var(--white);
}

@media (min-width: 768px) {
  .cta-box { padding: 3rem; }
}
@media (min-width: 1024px) {
  .cta-box { padding: 4rem; }
}

.cta-box h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 768px) {
  .cta-box h2 { font-size: 2.25rem; }
}

.cta-box > p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
}

.cta-address {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
}

/* --- POLICY PAGES --- */
.policy-hero {
  background-color: var(--blue-700);
  color: var(--white);
}

.policy-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem 4rem;
}

@media (min-width: 768px) {
  .policy-hero-inner { padding: 5rem 1rem; }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  margin-bottom: 1.5rem;
}

.back-link:hover {
  color: var(--white);
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.policy-hero h1 {
  font-size: 1.875rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .policy-hero h1 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .policy-hero h1 { font-size: 3rem; }
}

.policy-hero .last-updated {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.policy-body {
  background-color: var(--blue-50);
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

.policy-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .policy-content { padding: 2.5rem; }
}
@media (min-width: 1024px) {
  .policy-content { padding: 3rem; }
}

.policy-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .policy-content h2 { font-size: 1.5rem; }
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.policy-content a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content a:hover {
  color: var(--blue-600);
}

.policy-content strong {
  color: var(--black);
}

/* --- OPT-IN/OUT PAGE --- */
.optin-hero-desc {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
}

.status-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.status-message.success {
  border: 2px solid var(--green-500);
  background-color: var(--green-50);
}

.status-message.neutral {
  border: 2px solid var(--gray-300);
  background-color: var(--gray-50);
}

.status-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.status-message.success svg { color: var(--green-500); }
.status-message.neutral svg { color: var(--gray-400); }

.status-message h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.status-message p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.status-message button {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.optin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .optin-grid { grid-template-columns: 1fr 1fr; }
}

.optin-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .optin-card { padding: 2rem; }
}

.optin-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.optin-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
}

.optin-card-icon.green {
  background-color: var(--green-50);
  color: var(--green-500);
}

.optin-card-icon.gray {
  background-color: var(--gray-50);
  color: var(--gray-400);
}

.optin-card-icon svg {
  width: 20px;
  height: 20px;
}

.optin-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.optin-card > p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
  color: var(--gray-300);
}

.form-input:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 2px rgba(10,61,143,0.15);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue-700);
  flex-shrink: 0;
}

.checkbox-group span {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.checkbox-group a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit-green {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.625rem;
  border-radius: var(--radius-lg);
  background-color: var(--green-500);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), opacity var(--transition);
}

.btn-submit-green:hover {
  background-color: var(--green-600);
}

.btn-submit-green:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-submit-outline {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.625rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition), opacity var(--transition);
}

.btn-submit-outline:hover {
  background-color: var(--gray-50);
}

.btn-submit-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.alt-methods {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.alt-methods h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.alt-methods li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.alt-methods svg {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.alt-methods span {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.alt-methods strong {
  color: var(--black);
}

.alt-methods a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .info-cards { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.info-card svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-card p {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- PAGE WRAPPER --- */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper main {
  flex: 1;
}
