:root {
  --background: #f8fafc;
  --foreground: #0f172a;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --popover: #ffffff;
  --popover-foreground: #0f172a;
  --primary: #0f172a;
  --primary-foreground: #ffffff;
  --secondary: #f1f5f9;
  --secondary-foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #10b981;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #f8fafc;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #10b981;
  --radius: 0.625rem;
  --emerald: #10b981;
  --navy: #0f172a;
  --navy-light: #1e293b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.small {
  max-width: 820px;
}

.text-emerald {
  color: var(--emerald);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
}

.nav-main {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-main a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-main a:hover {
  color: var(--foreground);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--foreground);
}

.nav-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta .ghost {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-cta .ghost:hover {
  color: var(--foreground);
}

.nav-cta .solid {
  background: var(--emerald);
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.nav-cta .solid:hover {
  opacity: 0.9;
}

.main-content {
  padding-top: 72px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
}

.mobile-nav-inner a {
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
  background: transparent;
}

.mobile-nav-inner a:hover {
  background: var(--secondary);
}

.mobile-nav-inner .mobile-nav-primary {
  background: var(--emerald);
  color: #ffffff;
  text-align: center;
  margin-top: 0.5rem;
}

/* Hero */
.hero-home {
  background: var(--card);
  padding: 8rem 0 5rem;
  overflow: hidden;
  position: relative;
}

.hero-home .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.hero-badge span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--emerald);
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--foreground);
  max-width: 64rem;
}

h1 em {
  color: var(--emerald);
  font-style: normal;
}

h2 {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--muted-foreground);
  line-height: 1.625;
}

.hero-home p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  max-width: 42rem;
}

.hero-note {
  font-size: 0.875rem !important;
  opacity: 0.7;
  margin-top: 0.75rem !important;
}

.hero-prepaid {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
  color: var(--emerald);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

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

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-main,
.btn-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-main {
  background: var(--emerald);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
}

.btn-main:hover {
  opacity: 0.9;
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
}

.btn-alt {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
}

.btn-alt:hover {
  background: var(--secondary);
}

.hero-shot {
  margin-top: 4rem;
  position: relative;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--background);
}

.section-card {
  background: var(--card);
}

.section-dark {
  background: var(--navy);
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--emerald);
}

.section-head h2 {
  margin-top: 0.75rem;
}

.section-head p {
  margin-top: 1rem;
  font-size: 1.125rem;
}

/* Benefits */
.benefits-grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

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

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.05);
}

.feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  margin-bottom: 1rem;
}

.feature-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

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

.feature-card p {
  font-size: 0.875rem;
  margin: 0;
}

.privacy-highlight {
  margin-top: 2rem;
  background: var(--navy);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .privacy-highlight {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }
}

.privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  flex-shrink: 0;
}

.privacy-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.privacy-content {
  flex: 1;
}

.privacy-highlight h3 {
  color: #ffffff;
  font-size: 1.125rem;
}

.privacy-highlight p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}

.privacy-highlight a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald);
  transition: background 0.2s;
  white-space: nowrap;
}

.privacy-highlight a:hover {
  background: rgba(16, 185, 129, 0.1);
}

/* Showcase */
.showcase {
  display: grid;
  gap: 6rem;
}

@media (min-width: 1024px) {
  .showcase {
    gap: 8rem;
  }
}

.showcase-row {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .showcase-row {
    flex-direction: row;
    gap: 4rem;
  }

  .showcase-row.reverse {
    flex-direction: row-reverse;
  }
}

.showcase-content {
  flex: 1;
}

.showcase-image {
  flex: 1;
}

.showcase-image img {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
}

.incognito {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--navy);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .incognito {
    flex-direction: row;
    padding: 4rem;
    gap: 4rem;
  }
}

.incognito > div {
  flex: 1;
}

.incognito-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 1rem;
}

.incognito-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

.incognito h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .incognito h3 {
    font-size: 1.875rem;
  }
}

.incognito p {
  color: rgba(255, 255, 255, 0.7);
}

.incognito-trust {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.incognito-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.incognito-trust-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--emerald);
  flex-shrink: 0;
}

.incognito-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.diagram-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-light);
  padding: 1.25rem;
}

.diagram-box.emerald {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
}

.diagram-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  flex-shrink: 0;
}

.diagram-icon.muted {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.diagram-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.diagram-content p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.diagram-content span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.diagram-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}

.diagram-line {
  width: 1px;
  height: 1.5rem;
  background: rgba(16, 185, 129, 0.4);
}

.diagram-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.25rem 0.75rem;
}

.diagram-badge svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--emerald);
}

.diagram-badge span {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--emerald);
}

/* Audience */
.section-dark .section-head h2 {
  color: #ffffff;
}

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

.audience-grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

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

.audience-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-light);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.2s;
}

.audience-grid article:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  margin-bottom: 1.25rem;
}

.audience-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.audience-grid h3 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.audience-grid p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.b2b-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Pricing */
.pricing-toggle {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-container {
  display: inline-flex;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 0.25rem;
}

.toggle-btn {
  border: none;
  background: transparent;
  border-radius: 0.375rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

.toggle-btn.active {
  background: var(--card);
  color: var(--foreground);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.toggle-btn:hover:not(.active) {
  color: var(--foreground);
}

.pricing-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.plan {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: visible;
}

.featured-plan {
  border-color: var(--emerald);
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1);
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0)) top/100% 7rem no-repeat,
    var(--card);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  background: var(--emerald);
  color: #ffffff;
  font-weight: 600;
}

.plan h3 {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}

.plan-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
}

.plan-desc {
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
  min-height: 2.75rem;
}

.price {
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  line-height: 1;
}

.price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.plan li::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.prepaid-wrapper {
  margin-top: 4rem;
}

.prepaid-box {
  margin-top: 3rem;
  border: 1px solid rgba(16, 185, 129, 0.6);
  border-radius: 1rem;
  padding: 2rem;
  background: var(--card);
  position: relative;
  overflow: hidden;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.28);
}

@media (min-width: 768px) {
  .prepaid-box {
    padding: 2.5rem 3rem;
  }
}

.prepaid-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 0 0 0 100%;
}

.prepaid-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 1rem;
}

.prepaid-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

.prepaid-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .prepaid-box h3 {
    font-size: 1.875rem;
  }
}

.prepaid-box ul {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.prepaid-box li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.prepaid-box li::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.prepaid-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  max-width: 40rem;
}

.hidden {
  display: none !important;
}

/* Status Page */
.status-header {
  background: var(--navy);
  padding: 4rem 0 5rem;
  text-align: center;
}

.status-header h1 {
  color: #ffffff;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
}

.status-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  font-size: 1.125rem;
}

.status-current {
  background: var(--background);
  padding: 3rem 0;
}

.status-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.status-banner.status-ok {
  border: 2px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
}

.status-icon {
  flex-shrink: 0;
  color: var(--emerald);
}

.status-icon svg {
  width: 2rem;
  height: 2rem;
}

.status-banner h2 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--foreground);
}

.status-banner p {
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
  color: var(--muted-foreground);
}

.status-list {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  overflow: hidden;
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .status-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.status-item:last-child {
  border-bottom: none;
}

.status-item.external {
  background: rgba(241, 245, 249, 0.5);
}

.status-info h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--foreground);
}

.status-info p {
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
  color: var(--muted-foreground);
}

.status-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.external-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
}

.external-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.operational {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}

.status-badge span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: currentColor;
}

.status-history {
  border-top: 1px solid var(--border);
  background: var(--secondary);
  padding: 4rem 0;
}

.status-history h2 {
  font-size: 1.5rem;
  margin: 0;
}

.history-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0.5rem 0 2rem;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.history-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.history-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .history-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.history-header h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--foreground);
}

.history-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.history-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.history-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.history-badge.resolved {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}

.history-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.history-item p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.status-footer {
  background: var(--background);
  padding: 3rem 0;
  text-align: center;
}

.status-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.status-note svg {
  width: 1rem;
  height: 1rem;
}

.status-note p {
  font-size: 0.875rem;
  margin: 0;
}

/* Help Center */
.help-hero {
  background: var(--navy);
  padding: 5rem 0 7rem;
  text-align: center;
}

.help-hero .container {
  max-width: 52rem;
}

.help-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.help-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.help-search {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
}

.help-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
}

.help-search input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 0.75rem;
  border: none;
  background: var(--card);
  font-size: 1rem;
  color: var(--foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.help-search input:focus {
  outline: 2px solid var(--emerald);
}

.help-search-summary {
  margin: 1rem auto 0;
  font-size: 0.875rem !important;
  max-width: 32rem;
}

.help-search-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1rem auto 0;
  max-width: 36rem;
}

.help-tag {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.help-tag:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.help-categories {
  background: var(--background);
  padding: 5rem 0;
}

.help-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.help-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s;
}

.help-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.help-card.hidden {
  display: none;
}

.help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  margin-bottom: 1rem;
}

.help-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.help-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.help-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.help-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.help-card a {
  font-size: 0.875rem;
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.2s;
}

.help-card a:hover {
  text-decoration: underline;
}

.help-search-empty {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
}

.contact-form-section {
  margin-top: 2rem;
}

.contact-form-card {
  max-width: 960px;
}

.contact-form {
  margin-top: 1.25rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.contact-field span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--foreground);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--input);
  border-radius: 16px;
  background: var(--card);
  color: var(--foreground);
  padding: 0.95rem 1rem;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 1rem;
}

.contact-alert {
  border-radius: 14px;
  padding: 0.95rem 1rem;
  margin-top: 1rem;
  font-weight: 600;
}

.contact-alert-success {
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #047857;
}

.contact-alert-error {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #b91c1c;
}

/* Blog */
.blog-hero {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.blog-hero .eyebrow {
  color: var(--emerald);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.blog-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.blog-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.blog-content {
  padding: 4rem 0;
  background: var(--background);
}

.blog-featured {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 3rem;
  transition: box-shadow 0.2s;
}

.blog-featured:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .blog-featured {
    flex-direction: row;
  }
}

.blog-featured-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

@media (min-width: 1024px) {
  .blog-featured-image {
    width: 50%;
    aspect-ratio: auto;
  }
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--emerald);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-featured-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .blog-featured-content {
    width: 50%;
    padding: 2.5rem;
  }
}

.blog-category {
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-featured-content h2 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .blog-featured-content h2 {
    font-size: 1.875rem;
  }
}

.blog-featured-content p {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald);
  text-decoration: none;
}

.blog-read-more svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.blog-read-more:hover svg {
  transform: translateX(0.25rem);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  border: none;
  background: var(--secondary);
  color: var(--muted-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: var(--border);
  color: var(--foreground);
}

.filter-btn.active {
  background: var(--navy);
  color: #ffffff;
}

.blog-grid {
  display: grid;
  gap: 2rem;
}

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

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/9;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-content h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--foreground);
}

.blog-card-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
  flex: 1;
}

.blog-newsletter {
  margin-top: 4rem;
  background: var(--navy);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-newsletter {
    flex-direction: row;
    text-align: left;
    padding: 3rem;
  }
}

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  flex-shrink: 0;
}

.newsletter-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.newsletter-content h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 24rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  background: var(--emerald);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Article Page */
.article-header {
  background: var(--secondary);
  padding: 3rem 0 4rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--foreground);
}

.breadcrumbs .current {
  color: var(--foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-category {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.article-header h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--foreground);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

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

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.author-avatar svg {
  width: 1.25rem;
  height: 1.25rem;
}

.author-info p {
  margin: 0;
  line-height: 1.2;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.author-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.article-date {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.read-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.read-time svg {
  width: 0.875rem;
  height: 0.875rem;
}

.article-container {
  display: flex;
  gap: 3rem;
  padding: 3rem 0 5rem;
}

.article-main {
  flex: 1;
  min-width: 0;
}

.article-hero-image {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/9;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin: 2rem 0 1rem;
}

.article-content h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin: 1.5rem 0 0.75rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-cta {
  background: var(--navy);
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 2rem 0;
}

.article-cta h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald);
  text-decoration: none;
}

.back-link svg {
  width: 1rem;
  height: 1rem;
}

.article-sidebar {
  display: none;
  width: 18rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    display: block;
  }
}

.sidebar-sticky {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.sidebar-widget h4 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--foreground);
}

.sidebar-widget p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.sidebar-widget .btn-main {
  width: 100%;
  padding: 0.625rem;
  font-size: 0.875rem;
}

.popular-posts h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

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

.popular-item {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.popular-image {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.popular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-content {
  min-width: 0;
}

.popular-content h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: var(--foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.popular-item:hover h4 {
  color: var(--emerald);
}

.popular-content p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* FAQ */
.faq-wrap details {
  margin-top: 1rem;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--foreground);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-wrap summary::-webkit-details-marker {
  display: none;
}

.faq-wrap summary::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s;
}

.faq-wrap details[open] summary::after {
  transform: rotate(180deg);
}

.faq-wrap details p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.faq-wrap details.hidden {
  display: none;
}

/* Final CTA */
.final-cta {
  background: var(--navy);
  text-align: center;
  padding: 5rem 0;
}

.final-cta h2 {
  color: #ffffff;
  font-size: clamp(1.875rem, 4vw, 3rem);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
}

.final-cta .btn-main {
  margin-top: 2.5rem;
}

.final-cta .hero-note {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

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

.footer-brand img {
  width: auto;
  height: 2rem;
}

.footer-brand > p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  max-width: 20rem;
}

.footer-meta {
  margin-top: 1.5rem;
}

.footer-meta p {
  margin: 0.25rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer h4 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-footer a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 4rem;
  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 {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.status-live {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.status-live:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.status-live span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--emerald);
}

/* Mobile Nav */
@media (max-width: 1024px) {
  .container {
    width: min(100%, 92%);
    padding: 0 1rem;
  }

  .nav-main {
    display: none;
  }

  .nav-wrap {
    min-height: 64px;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .hero-home {
    padding: 7rem 0 4rem;
  }

  .section-head p {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .brand img {
    height: 28px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .nav-cta .solid {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }

  .nav-cta .ghost {
    display: none;
  }

  .hero-home {
    padding: 6.5rem 0 3.5rem;
  }

  .hero-home p {
    font-size: 1rem;
  }

  .help-hero {
    padding: 4rem 0 5rem;
  }

  .help-search-tags {
    gap: 0.5rem;
  }

  .help-tag {
    padding: 0.4375rem 0.75rem;
    font-size: 0.75rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .plan {
    padding: 1.5rem;
  }

  .plan-desc {
    min-height: 0;
  }

  .badge {
    top: 1rem;
    left: 1rem;
    transform: none;
  }

  .prepaid-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
  }

  .prepaid-box::before {
    width: 7rem;
    height: 7rem;
  }

  .prepaid-box h3 {
    font-size: 1.5rem;
    max-width: none;
  }

  .prepaid-box .price {
    font-size: 2rem;
  }
}
