/* Reset and Base Styles */
html {
  scroll-behavior: smooth;
}

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

:root {
  --bg-dark: #0a0a0a;
  --bg-dark-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --text-primary: #ffffff;
  --text-secondary: #bdbdbd;
  --accent-orange: #e17100;
  --accent-orange-hover: #e8851a;
  --border-color: #333333;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Headings - EB Garamond */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.problem-title,
.section-title,
.does-title,
.why-card-title,
.for-card-title {
  font-family: 'EB Garamond', serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Buttons */
.btn {
  font-family: 'Inter', sans-serif;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--text-primary);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-dark-secondary);
  border-color: var(--accent-orange);
}

.btn-white {
  background-color: #ffffff;
  color: var(--bg-dark);
  border: none;
  border-radius: 30px;
}

.btn-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 30px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  background-image: url('assets/hero-bg.png');
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  will-change: transform;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 80px;
  width: 100%;
  box-sizing: border-box;
}

.hero-title {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist-form {
  display: flex;
  width: 100%;
  max-width: 500px;
  margin: 40px auto 0;
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid #403f3f;
  border-radius: 42px;
  overflow: hidden;
  padding: 6px;
  gap: 6px;
  box-sizing: border-box;
}

.waitlist-input {
  flex: 2;
  padding: 12px 16px;
  background: transparent !important;
  background-color: transparent !important;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none !important;
}

.waitlist-input:-webkit-autofill,
.waitlist-input:-webkit-autofill:hover,
.waitlist-input:-webkit-autofill:focus,
.waitlist-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: var(--text-primary) !important;
  background-color: transparent !important;
  background-clip: padding-box;
  transition: background-color 5000s ease-in-out 0s;
}

.waitlist-input:-moz-autofill,
.waitlist-input:-moz-autofill:hover,
.waitlist-input:-moz-autofill:focus {
  background-color: transparent !important;
  color: var(--text-primary) !important;
}

.waitlist-input::placeholder {
  color: #5c5c5c;
}

.waitlist-button {
  flex: 1;
  padding: 12px 0px;
  background-color: var(--accent-orange);
  color: var(--text-primary);
  border: none;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.waitlist-button:hover {
  background-color: var(--accent-orange-hover);
}

.trusted-by {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px 0;
  text-align: center;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    transparent 100%
  );
  display: none;
}

.trusted-by-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-marquee-container {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.logo-marquee {
  display: flex;
  gap: 2rem;
  width: fit-content;
  animation: marquee 10s linear infinite;
}

.logo-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 80px;
}

.logo-marquee-item img {
  max-height: 40px;
  max-width: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.logo-marquee-item img:hover {
  opacity: 1;
}

.logo-marquee-item img.h-logo {
  filter: none;
  background-color: transparent;
}

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

/* Problem Section */
.problem-section {
  padding: 100px 0;
  text-align: center;
  background-color: var(--bg-dark);
}

.problem-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.problem-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 235px);
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background-color: #0d0d0d;
  width: 235px;
  height: 214px;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #2f2f2f;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.feature-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.feature-icon img,
.feature-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
  margin-top: auto;
}

/* Why Section */
.why-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.section-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.why-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  background-color: #0d0d0d;
  border-radius: 16px;
  border: 1px solid rgba(47, 47, 47, 0.6);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(225, 113, 0, 0.03) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 113, 0, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(225, 113, 0, 0.1);
}

.why-card:hover::before {
  opacity: 1;
}

.why-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85);
}

.why-card:hover .why-image {
  transform: scale(1.08);
  filter: brightness(0.95);
}

.why-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.4) 0%,
    rgba(13, 13, 13, 0.6) 50%,
    rgba(13, 13, 13, 0.85) 100%
  );
  transition: opacity 0.4s ease, background 0.4s ease;
  z-index: 1;
}

.why-card:hover .why-overlay {
  opacity: 0.3;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.1) 0%,
    rgba(13, 13, 13, 0.3) 50%,
    rgba(13, 13, 13, 0.7) 100%
  );
}

.why-card-title {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  padding: 28px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: var(--text-primary);
  transition: all 0.4s ease;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.why-card:hover .why-card-title {
  transform: translateY(-4px);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

/* Does Section */
.does-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.does-item-wrapper {
  margin-bottom: 48px;
}

.does-item-wrapper:last-child {
  margin-bottom: 0;
}

.does-item-card {
  background-color: #0d0d0d;
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  padding: 40px;
  position: relative;
}

.does-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 113, 0, 0.5),
    transparent
  );
  opacity: 1;
}

.does-item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.does-item-grid-reverse {
  direction: rtl;
}

.does-item-grid-reverse > * {
  direction: ltr;
}

.does-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.does-number {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.does-title {
  font-family: 'EB Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.does-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.does-list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #bdbdbd;
  line-height: 1.5;
}

.does-image-container {
  border-radius: 12px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.does-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  pointer-events: none;
}

.does-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
}

/* For Section */
.for-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.for-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.for-card:hover {
  transform: translateY(-5px);
}

.for-image-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

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

.for-card-title {
  font-family: 'EB Garamond', serif;
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 2;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.for-card-text {
  font-family: 'Inter', sans-serif;
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  z-index: 2;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background-color: #0d0d0d;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-company {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-name {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.contact-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
}

.hubspot-form-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hs-form-frame {
  width: 100%;
  border: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.form-checkbox input[type='checkbox'] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Logo Section */
.logo-section {
  padding: 60px 0;
  text-align: center;
  margin-bottom: -160px;
  position: relative;
  z-index: 1;
}

.cognition-logo {
  width: 100%;
  height: auto;
}

/* Footer */
.footer {
  padding: 60px 0;
  background-color: #121212;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-copyright p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent-orange);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-content {
    padding-bottom: 200px;
  }

  .does-item-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .does-item-grid-reverse {
    direction: ltr;
  }

  .does-item-card {
    padding: 32px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-card {
    width: 100%;
    max-width: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-card {
    aspect-ratio: 1;
  }

  .why-card-title {
    font-size: 24px;
    padding: 24px;
  }

  .for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .logo-section {
    padding: 50px 0;
    margin-bottom: -120px;
  }

  .cognition-logo {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 200px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 16px;
    padding: 0 10px;
    margin-bottom: 32px;
  }

  .waitlist-form {
    flex-direction: column;
    max-width: 100%;
    border-radius: 30px;
    padding: 12px;
    background: rgba(10, 10, 10, 0.3);
    border: 1px solid #403f3f;
    gap: 12px;
    margin: 0 auto;
  }

  .waitlist-input {
    padding: 16px 20px;
    border-radius: 30px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #403f3f;
    background: rgba(10, 10, 10, 0.6);
    margin: 0;
    min-height: 52px;
  }

  .waitlist-button {
    padding: 16px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    margin: 0;
    min-height: 52px;
  }

  .trusted-by {
    padding: 30px 0;
  }

  .nav {
    gap: 15px;
  }

  .nav-link {
    display: none;
  }

  .problem-section,
  .features-section,
  .why-section,
  .does-section,
  .for-section,
  .testimonials-section,
  .contact-section {
    padding: 60px 0;
  }

  .problem-title,
  .section-title {
    font-size: 24px;
  }

  .problem-description {
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 180px;
    padding: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    aspect-ratio: 1;
    max-width: 100%;
  }

  .why-card-title {
    font-size: 22px;
    line-height: 1.3;
    padding: 24px;
  }

  .for-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .for-image-wrapper {
    height: 350px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 32px;
  }

  .does-item-card {
    padding: 24px;
  }

  .does-item-grid {
    gap: 32px;
  }

  .does-title {
    font-size: 24px;
  }

  .does-list li {
    font-size: 16px;
    line-height: 1.5;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }

  .logo-section {
    padding: 40px 0;
    margin-bottom: -100px;
  }

  .cognition-logo {
    padding: 0 20px;
  }
}

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

  .header {
    padding: 16px 0;
  }

  .logo-image {
    height: 32px;
  }

  .hero {
    padding: 90px 0 50px;
  }

  .hero-content {
    padding-bottom: 180px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
    padding: 0 5px;
  }

  .hero-subtitle {
    font-size: 14px;
    padding: 0 5px;
  }

  .waitlist-form {
    border-radius: 25px;
    gap: 10px;
    padding: 10px;
  }

  .waitlist-input {
    padding: 14px 18px;
    border-radius: 25px;
    font-size: 14px;
    border: 1px solid #403f3f;
    background: rgba(10, 10, 10, 0.6);
    min-height: 48px;
  }

  .waitlist-button {
    padding: 14px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    min-height: 48px;
  }

  .trusted-by {
    padding: 24px 0;
  }

  .trusted-by-label {
    font-size: 12px;
  }

  .logo-marquee-item {
    width: 60px;
    height: 40px;
  }

  .logo-marquee-item img {
    max-height: 30px;
    max-width: 50px;
  }

  .problem-section,
  .features-section,
  .why-section,
  .does-section,
  .for-section,
  .testimonials-section,
  .contact-section {
    padding: 50px 0;
  }

  .problem-title,
  .section-title {
    font-size: 22px;
  }

  .problem-description {
    font-size: 13px;
  }

  .features-grid {
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
    min-height: 160px;
  }

  .feature-text {
    font-size: 13px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    aspect-ratio: 1;
    max-width: 100%;
  }

  .why-card-title {
    font-size: 20px;
    line-height: 1.3;
    padding: 20px;
  }

  .for-image-wrapper {
    height: 300px;
  }

  .for-card-title {
    font-size: 18px;
    top: 16px;
    left: 16px;
  }

  .for-card-text {
    font-size: 13px;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .does-title {
    font-size: 22px;
  }

  .does-list li {
    font-size: 15px;
  }

  .does-item-card {
    padding: 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-quote {
    font-size: 14px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .footer {
    padding: 40px 0;
  }

  .logo-section {
    padding: 30px 0;
    margin-bottom: -80px;
  }

  .cognition-logo {
    padding: 0 16px;
  }
}
