/* Plain Logics Creative - Modern Luxury Studio Design System */
:root {
  --bg: #08090d;
  --bg-darker: #050608;
  --bg-glass: rgba(15, 16, 25, 0.65);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --accent: #7c5cff;
  --accent-secondary: #5ce1e6;
  --accent-gold: #e5a93c;
  --accent-glow: rgba(124, 92, 255, 0.25);
  --border: rgba(124, 92, 255, 0.25);
  --border-light: rgba(255, 255, 255, 0.08);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Film Grain Overlay */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Mouse Glow */
.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(10,10,15,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  mix-blend-mode: screen;
}

/* Typography */
h1, h2, h3, h4, .logo {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.text-center { text-align: center; }

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-glass);
}

.glass:hover {
  border-color: var(--border);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
  background: #6a44ff;
  box-shadow: 0 0 30px rgba(124, 92, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--border);
  background: rgba(124, 92, 255, 0.1);
  transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.full-width {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2rem;
  border-radius: 100px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.4rem;
  color: var(--text-main);
  text-decoration: none;
}

.brand-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(124, 92, 255, 0.4));
  mix-blend-mode: screen;
}

.logo em {
  color: var(--accent);
  font-style: italic;
}

.badge-creative {
  font-size: 0.65rem;
  background: rgba(229, 169, 60, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(229, 169, 60, 0.4);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 2rem;
  right: 2rem;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.2rem;
}

/* Hero */
.hero {
  padding: 10rem 0 5rem;
  position: relative;
}

.hero-bg-blobs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.4;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -200px;
  left: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  top: 100px;
  right: -100px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  background: rgba(229, 169, 60, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(229, 169, 60, 0.25);
}

.accent-glow-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheadline {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.trust-signals {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item i {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

.dot { color: var(--border); }

/* Marquee */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-darker);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--text-main);
  font-weight: 600;
}

.marquee-track.row-1 span {
  animation: marquee 35s linear infinite;
}

.marquee-track.row-2 span {
  animation: marquee-reverse 35s linear infinite;
  color: var(--accent-gold);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Services */
.services {
  padding: 8rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.service-icon {
  font-size: 2.5rem;
}

.service-number {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Selected Works & Stack */
.works {
  padding: 8rem 0;
  background: var(--bg-darker);
}

.projects-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  padding: 3rem;
  border-radius: 24px;
  align-items: center;
}

.project-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.project-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(124, 92, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.project-badge {
  font-size: 0.75rem;
  color: var(--accent-gold);
  background: rgba(229, 169, 60, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.showcase-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.showcase-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.showcase-stack {
  position: relative;
  min-height: 380px;
}

.stack-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #000;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.browser-dot-bar {
  background: #12131a;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.url {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stack-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.stack-frame.back-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  z-index: 1;
  opacity: 0.85;
  filter: brightness(0.85);
}

.stack-frame.front-frame {
  position: absolute;
  top: 60px;
  left: 0;
  width: 85%;
  z-index: 2;
}

.showcase-card:hover .stack-frame.back-frame {
  transform: translate(15px, -15px);
  opacity: 1;
  filter: brightness(1);
}

.showcase-card:hover .stack-frame.front-frame {
  transform: translate(-10px, 10px);
}

/* Pricing / Packages */
.pricing {
  padding: 8rem 0;
}

.pricing-sub {
  margin: 0 auto;
  max-width: 600px;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border);
  box-shadow: 0 20px 40px -15px rgba(124, 92, 255, 0.15);
}

.pricing-card.highlight {
  border-color: var(--accent);
  background: rgba(18, 19, 30, 0.7);
  box-shadow: 0 20px 50px -10px rgba(124, 92, 255, 0.25);
  transform: translateY(-8px);
}

.pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 15px rgba(124, 92, 255, 0.4);
}

.tier-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.tier-tag.accent-tag {
  color: var(--accent);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.price-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--border-light);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-val {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

.price-val.accent-val {
  color: var(--accent);
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing-features i {
  color: var(--accent);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Pricing Advisory Help Box */
.pricing-help-box {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: rgba(20, 21, 32, 0.6);
  transition: var(--transition);
}

.pricing-help-box:hover {
  border-color: var(--border);
  box-shadow: 0 15px 35px -10px rgba(124, 92, 255, 0.15);
}

.help-box-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.help-icon i {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.help-text {
  flex-grow: 1;
}

.help-text h4 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.help-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.help-btn {
  gap: 0.5rem;
  white-space: nowrap;
}

/* Founders / Team Section */
.about-founder {
  padding: 8rem 0;
  background: var(--bg-darker);
}

.founder-card {
  padding: 3.5rem;
  border-radius: 24px;
}

.founder-bio {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

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

.founder-box {
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.founder-role-tag {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.founder-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.founder-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.margin-top-15 {
  margin-top: 1.5rem;
}

.skills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.skill-pill i {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.founder-ctas {
  display: flex;
  gap: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 8rem 0;
  background: var(--bg);
}

.featured-testimonial-container {
  max-width: 860px;
  margin: 0 auto;
}

.featured-testimonial-card {
  padding: 3.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.quote-icon i {
  width: 36px;
  height: 36px;
  color: var(--accent);
  opacity: 0.8;
}

.featured-quote {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
}

.author-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.author-details strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.author-details span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact */
.contact {
  padding: 8rem 0;
}

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

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(10px);
  border-color: var(--border);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.form-wrapper {
  padding: 3rem;
  border-radius: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.glass-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.glass-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-note i {
  width: 14px;
  height: 14px;
  color: #27c93f;
}

/* Footer */
.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive Design & Mobile Optimization */
@media (max-width: 960px) {
  .container {
    padding: 0 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .services-grid-6, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .pricing-card.highlight {
    transform: none;
  }

  .showcase-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(2rem, 7.5vw, 2.6rem);
    margin-bottom: 1rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  p {
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .services, .works, .testimonials, .pricing, .contact, .about-founder {
    padding: 3.5rem 0;
  }

  .nav-container {
    padding: 0.75rem 1.15rem;
  }

  .nav-links, .navbar .btn-primary {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    top: 72px;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
  }
  
  .services-grid-6, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card, .pricing-card, .showcase-card, .founder-card, .form-wrapper {
    padding: 1.5rem 1.25rem;
  }

  .showcase-title {
    font-size: 1.5rem;
  }
  
  .showcase-stack {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
  }
  
  .stack-frame.back-frame,
  .stack-frame.front-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none !important;
    opacity: 1;
    filter: none;
  }

  .stack-frame img {
    max-height: 240px;
  }

  .pricing-help-box {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .help-box-content {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    align-items: center;
  }

  .help-icon {
    display: flex;
    justify-content: center;
  }

  .help-text h4 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
  }

  .help-text p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .help-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  
  .footer-links {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.15rem;
  }

  .hero {
    padding: 5.5rem 0 2.25rem;
  }

  h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.5rem;
  }

  .subheadline {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-ctas, .founder-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .founder-ctas .btn-primary,
  .founder-ctas .btn-secondary {
    width: 100%;
  }

  .trust-signals {
    gap: 0.5rem 0.75rem;
    justify-content: center;
  }

  .marquee-section {
    padding: 1.25rem 0;
  }

  .marquee-track {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .skills-wrapper {
    gap: 0.4rem;
  }

  .skill-pill {
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
  }

  .pricing-help-box {
    padding: 1.25rem 1rem;
  }

  .help-text h4 {
    font-size: 1rem;
  }

  .help-text p {
    font-size: 0.85rem;
  }
}
