/* Blog-specific overrides — base tokens, reset, fonts, body and global elements
   come from ../tokens.css and ../styles.css. Only blog content classes live here.

   Bridge tokens: blog content was authored against legacy var names. Map them
   onto the unified design system so this file does not need a global rewrite. */

/* Blog index — grid + card layout. Colors come from .card-cream applied on
   the article element; this file only handles structure + typography. */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-thumb {
  height: 200px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.blog-card .blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-card .blog-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .blog-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
.blog-card .blog-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-on-light);
}
.blog-card .read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card .read-more:hover {
  text-decoration: underline;
}

/* Blog index hero — small, no fight with the now-fixed site header */
.blog-hero {
  padding: clamp(120px, 14vw, 160px) var(--gutter) clamp(40px, 6vw, 64px);
  text-align: center;
}
.blog-hero .hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 16px;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-100);
  margin: 0 0 20px;
}
.blog-hero p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--text-300);
  font-size: var(--fs-lead);
}

:root {
  --black: var(--bg-0);
  --black-soft: var(--bg-1);
  --black-mute: var(--bg-2);
  --gold: var(--gold-300);
  --gold-light: var(--gold-100, #f0d98c);
  --gold-dark: var(--gold-500, #aa8c2c);
  --gold-dim: rgba(212, 175, 90, 0.15);
  --white: var(--text-100);
  --cream: var(--surface-cream, #f7f3ea);
  --cream-soft: #fbfbf9;
  --cream-dim: #e8e8e3;
  --text-main: var(--text-100);
  --text-muted: var(--text-300);
  --text-dark: #050505;
  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shine: rgba(255, 255, 255, 0.03);
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(212, 175, 90, 0.15);
}

/* --- NEO BANANA PATTERNS --- */
:root {
  --neon-banana: #FFE135;
  --neon-banana-dark: #b8a005;
}

.thumb-ai {
  background-color: #050505;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 225, 53, 0.15) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 225, 53, 0.05) 10px, rgba(255, 225, 53, 0.05) 20px);
}

.thumb-security {
  background-color: #050505;
  background-image:
    linear-gradient(135deg, #000 25%, var(--neon-banana-dark) 25%, var(--neon-banana-dark) 50%, #000 50%, #000 75%, var(--neon-banana-dark) 75%, var(--neon-banana-dark) 100%);
  background-size: 40px 40px;
  box-shadow: inset 0 0 50px #000;
}

.thumb-collab {
  background-color: #050505;
  background-image:
    radial-gradient(circle at 30% 30%, var(--neon-banana) 0%, transparent 20%),
    radial-gradient(circle at 70% 70%, var(--neon-banana-dark) 0%, transparent 20%);
  background-size: 50px 50px;
}

.thumb-sheets {
  background-color: #050505;
  background-image:
    linear-gradient(var(--neon-banana) 1px, transparent 1px),
    linear-gradient(90deg, var(--neon-banana) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center;
  box-shadow: inset 0 0 100px #000;
}

.thumb-meet {
  background-color: #050505;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #050505 20px),
    repeating-linear-gradient(var(--neon-banana-dark), var(--neon-banana));
  opacity: 0.8;
}

.thumb-news {
  background-color: #050505;
  background-image: radial-gradient(var(--neon-banana) 2px, transparent 2px);
  background-size: 20px 20px;
}

/* --- UTILITIES --- */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 600px) {
  .page {
    padding: 0 24px;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-highlight {
  color: var(--gold-dark);
  /* For light bg */
  font-weight: 600;
}

.dark .text-highlight {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}


/* --- HERO --- */
.hero-wrap {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }
}

.hero-copy {
  flex: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
}

.hero-eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .hero-cta-row {
    justify-content: center;
  }
}

.btn-hero-main {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all 0.2s;
}

.btn-hero-main:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-badge-row {
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-badge .star {
  color: var(--gold);
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-tags {
    justify-content: center;
  }
}

.hero-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

/* --- ABOUT --- */
.about-wrap {
  padding: 80px 0;
  background: var(--black-soft);
}

.about {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
  }
}

.about-photo {
  flex: 0 0 450px;
}

.about-photo img {
  width: 100%;
  border-radius: 20px;
  /* border: 1px solid var(--gold-dim); */
}

.about-copy {
  flex: 1;
}

.about-heading {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--white);
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-sign {
  margin-top: 32px;
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
}

.about-sign strong {
  font-size: 1.1rem;
  color: var(--gold);
}

.about-logo img {
  width: 200px;
  margin-top: 24px;
  opacity: 0.8;
}

/* --- SECTIONS (CREAM) --- */
.section-cream-wrap {
  background: var(--black-mute);
  padding: 100px 0;
  color: var(--white);
}



.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-body {
  padding: 32px;
}

.service-eyebrow {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.service-text {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-service {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-service:hover {
  background: var(--gold);
  color: var(--black);
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

.plan-card.highlight {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 1) 100%);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

@media (max-width: 900px) {
  .plan-card.highlight {
    transform: none;
  }
}

.plan-badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.plan-card.highlight .plan-badge {
  color: var(--gold);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.plan-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
}

.plan-card.highlight .plan-price {
  color: var(--gold);
}

.plan-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 32px;
  color: #666;
}

.plan-card.highlight .plan-desc {
  color: #bbb;
}

.plan-list {
  margin-bottom: 32px;
  flex: 1;
}

.plan-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.plan-list .dot {
  color: var(--gold-dark);
  font-weight: 700;
}

.plan-card.highlight .plan-list .dot {
  color: var(--gold);
}

.plan-cta button {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--white);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  color: var(--white);
}

.plan-cta button:hover {
  background: var(--white);
  color: var(--black);
}

.plan-card.highlight .plan-cta button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.plan-card.highlight .plan-cta button:hover {
  background: var(--gold-light);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.review-stars {
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.review-title {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.review-meta {
  font-size: 0.85rem;
  color: #888;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.faq-q {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--black);
}

.faq-a {
  color: #666;
}

/* Contact */
.contact-wrap {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

@media (max-width: 600px) {
  .contact-wrap {
    padding: 60px 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: none;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: none;
}

@media (max-width: 600px) {
  .contact-heading h2 {
    font-size: 1.75rem;
  }
}

.contact-heading p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: none;
}

.input,
textarea.input {
  width: 100%;
  max-width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  /* Prevents iOS zoom */
  margin-top: 8px;
}

textarea.input {
  resize: vertical;
  min-height: 120px;
}

.input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

select.input option {
  background-color: var(--black);
  color: var(--white);
}

.btn-contact {
  background: var(--gold);
  color: var(--black);
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  min-height: 52px;
  /* Ensure good touch target */
}

.btn-contact:hover {
  background: var(--gold-light);
}

.contact-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

.contact-alt ul {
  margin-top: 24px;
}

.contact-alt li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.contact-alt a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-es {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.contact-es-title {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}


/* --- GLASS CARD (Used in Troubleshooter) --- */
.glass-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
}

/* --- QUICK FIX & AI SECTIONS --- */
.section-dark-wrap {
  padding: 80px 0;
  background: var(--black-mute);
  border-top: 1px solid var(--glass-border);
  color: var(--white);
}

.ai-box {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .ai-box {
    flex-direction: column;
    text-align: center;
  }
}

.ai-thumb {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: #222;
  /* Fallback */
}

.link-gold {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.link-gold:hover {
  color: var(--gold-light);
}

.quick-fix-wrap {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.quick-fix-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--cream);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
  .quick-fix-box {
    flex-direction: column;
    text-align: center;
  }
}

.quick-fix-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.quick-fix-content p {
  color: #666;
  font-size: 1rem;
}

.quick-fix-price {
  font-weight: 700;
  color: var(--gold-dark);
}

.btn-quick,
.quick-fix-cta button {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 1rem;
}

.quick-fix-cta button:hover,
.btn-quick:hover {
  background: var(--black);
  color: var(--white);
}

/* Mobile Box Fixes */
@media (max-width: 600px) {

  .quick-fix-box,
  .glass-card,
  .plan-card,
  .contact-es,
  .contact-grid,
  .contact-alt,
  .service-body {
    padding: 24px !important;
  }

  .quick-fix-box {
    gap: 20px;
  }
}

/* --- CONTACT FORM MOBILE FIXES --- */
.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px !important;
  /* Prevents iOS zoom */
  box-sizing: border-box;
  /* Prevents padding from adding to width */
  max-width: 100%;
}

.input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

textarea.input {
  min-height: 120px;
  resize: vertical;
}

.btn-contact {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 600px) {
  .btn-contact {
    width: auto;
  }
}

.btn-contact:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* --- MOBILE LAYOUT OVERFLOW FIXES --- */
@media (max-width: 600px) {
  .contact-grid {
    display: block !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 0 !important;
  }

  /* Reset any grid columns */
  .contact-grid>* {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 32px !important;
  }

  .contact-heading h2 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
  }

  .contact-heading p {
    max-width: 100% !important;
  }

  .contact-form-grid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .input,
  textarea.input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Global overflow fix - removed to prevent scroll trap */
  .page {
    width: 100% !important;
  }
}