/* .hero__logo is visually hidden, but define for clarity */

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #a5b4fc;
  --secondary-color: #f8fafc;
  --accent-color: #06b6d4;
  --accent-light: #67e8f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #94a3b8;
  --background: #ffffff;
  --background-secondary: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background Pattern - Optimized for performance */
.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    linear-gradient(135deg,
      rgba(99, 102, 241, 0.12) 0%,
      rgba(255, 255, 255, 1) 30%,
      rgba(255, 255, 255, 1) 70%,
      rgba(6, 182, 212, 0.08) 100%
    ),
    radial-gradient(circle at 40% 60%, rgba(165, 180, 252, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* Accessibility helper */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Header */
.header {
  position: relative;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav {
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav__logo {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  display: flex;
  align-items: center;
  position: relative;
}

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

.hero__badge {
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.hero__title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__title--accent {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 90%;
}

.hero__cta {
  display: flex;
  gap: 1rem;
}

/* Enhanced Phone Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 320px;
  height: 640px;
  background: linear-gradient(145deg, #929292, #d3d3d3);
  border-radius: 35px;
  padding: 8px;
  position: relative;
  box-shadow:
    var(--shadow-xl),
    8px 8px 0px -2px rgba(211, 211, 211, 0.9),
    12px 12px 0px -4px rgba(211, 211, 211, 0.9),
    16px 16px 0px -6px rgba(15, 23, 42, 0);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
  /* Prevent selection highlight */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Simple hover animation: 3D by default, flat on hover */
.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: var(--shadow-xl);
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: #efeae2;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.phone-mockup__notch {
  position: absolute;
  top: 15px;
  right: 25px;
  width: 18px;
  height: 18px;
  background: #1e293b;
  border-radius: 50%;
  z-index: 10;
}

/* WhatsApp-like styling */
.whatsapp-header {
  background: #075e54;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
}

.whatsapp-header__avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.whatsapp-header__info {
  flex: 1;
}

.whatsapp-header__name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.whatsapp-header__status {
  font-size: 0.75rem;
  opacity: 0.8;
}

.whatsapp-chat {
  background-image: url("whatsapp-background.jpg");
  background-size: cover;
  height: calc(100% - 72px);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}


/* Individual icon rotations using nth-child-like behavior */

.whatsapp-message {
  background: #ffffff;
  border-radius: 12px 12px 12px 12px;
  padding: 0.75rem;
  max-width: 85%;
  align-self: flex-start;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  border: 1px solid #e5e7eb;
}

.whatsapp-message__content {
  margin-bottom: 0.25rem;
  text-align: left;
}

.whatsapp-message__content p {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0.375rem;
  color: #1f2937;
  text-align: left;
}

.whatsapp-message__content p:last-child {
  margin-bottom: 0;
}

.whatsapp-link {
  color: #1976d2;
  text-decoration: underline;
  font-size: 0.8rem;
}

.whatsapp-message__time {
  font-size: 0.6875rem;
  color: #667085;
  text-align: right;
  margin-top: 0.25rem;
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background-color: var(--background);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background-color: var(--background-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn-small {
  padding: 0.875em 0.875em;
}

/* Enhanced Sections */
.section__title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features__header {
  margin-bottom: 4rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card__description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* Enhanced Benefits Section */
.benefits {
  padding: 4rem 0;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card__stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.benefit-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
  padding: 4rem 0 2rem 0;
}

.pricing__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing__card {
  background: var(--background);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  margin: 3rem auto 1.5rem auto;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing__card:hover::before {
  transform: scaleX(1);
}

.pricing__header {
  margin-bottom: 2rem;
}

.pricing__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.pricing__amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing__period {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.pricing__features {
  margin-bottom: 2rem;
  text-align: left;
}

.pricing__feature {
  padding: 0.75rem 0;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.pricing__feature:last-child {
  border-bottom: none;
}

.pricing__note {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Enhanced Early Access Section */
.early-access {
  padding: 4rem 0;
}

/* Reviews Section */
.reviews {
  padding: 4rem 0;
}

.reviews__header {
  margin-bottom: 3rem;
}

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

@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  /* Add blue bar on top, hidden by default */
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.review-card__profession {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.review-card__text {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.early-access__content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.early-access__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.early-access__form {
  margin: 3rem auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  max-width: 800px;
}

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

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

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--background);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.early-access__note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1.5rem;
}

/* Form message styles */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: slideInFromTop 0.3s ease-out;
}

.form-message--success {
  background-color: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-message--error {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Footer */
.footer {
  color: var(--text-primary);
  padding: 4rem 0;
}

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

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 1.125rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.footer__social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer__copyright {
  color: var(--text-secondary);
}

/* Slick fancy link styling */
.fancy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.0625rem 0.25rem;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
  transition: var(--transition);
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: text-bottom;
  margin-bottom: -0.25rem;
}

.fancy-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.fancy-link:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
}

.fancy-link:hover::before {
  left: 100%;
}

.fancy-link:active {
  transform: translateY(0);
}

/* Simple Modal - Pure CSS with :target */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

.modal:target {
  display: block;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 999;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 95%;
  max-width: 800px;
  height: 95%;
  max-height: 640px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.modal-content iframe {
  width: 100%;
  height: calc(100% + 100px);
  border: none;
  margin-top: -100px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--text-secondary);
  font-size: 2rem;
  text-decoration: none;
  line-height: 1;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 1);
}

/* Modal responsive styles */
@media (min-width: 600px) {
    .mobile-break { display: none; }
}

@media (max-width: 768px) {
  .modal-content {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .modal-content iframe {
    height: calc(100% + 40px);
    margin-top: -40px;
  }
}

/* iPad Portrait - Benefits Grid Only */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    padding: 1.25rem 0;
  }

  .nav__brand {
    font-size: 1.25rem;
    gap: 0.75rem;
  }

  .nav__logo {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero__title {
    font-size: 2.75rem;
  }

  .hero__subtitle {
    text-align: center;
    max-width: 100%;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
  }

  .whatsapp-header {
    text-align: left;
  }

  .whatsapp-header__info {
    text-align: left;
  }

  .whatsapp-link {
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.4;
  }

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

  .feature-card {
    padding: 2rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .feature-card__icon {
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 0.1rem;
    flex-shrink: 0;
  }

  .feature-card__content {
    flex: 1;
    min-width: 0;
  }

  .feature-card__title {
    display: block;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .benefits {
    padding: 3rem 0;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: none;
  }

  .benefit-card {
    padding: 1.5rem;
    text-align: left;
    min-height: auto;
  }

  .benefit-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    float: left;
    margin-right: 0.75rem;
    line-height: 1.2;
    margin-top: 0.2rem;
  }

  .benefit-card__stat {
    display: block;
    margin-bottom: 0.5rem;
    overflow: hidden;
    line-height: 1.2;
  }

  .benefit-card__text {
    font-size: 1rem;
    line-height: 1.5;
    overflow: hidden;
  }

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

  .footer__content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__social {
    order: 1;
  }

  .footer__copyright {
    order: 2;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .section__subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .features {
    padding: 3rem 0;
  }

  .benefits {
    padding: 3rem 0;
  }

  .pricing {
    padding: 3rem 0 1.5rem 0;
  }

  .early-access {
    padding: 3rem 0;
  }

  .feature-card {
    transition: none;
  }

  .benefit-card {
    transition: none;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .feature-card {
    transition: none;
  }

  .benefit-card {
    transition: none;
  }

  .pricing__card {
    padding: 2rem;
    margin: 2rem auto;
  }

  .pricing__amount {
    font-size: 2.5rem;
  }

  .early-access__form {
    padding: 1.5rem;
  }
}

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

  .nav__brand {
    font-size: 1.125rem;
    gap: 0.5rem;
  }

  .nav__logo {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .hero {
    padding: 2.5rem 0 4rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    text-align: center;
    max-width: 100%;
  }

  .whatsapp-header {
    text-align: left;
  }

  .whatsapp-header__info {
    text-align: left;
  }

  .whatsapp-link {
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.4;
  }

  .section__title {
    font-size: 2rem;
  }

  .section__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .features {
    padding: 2rem 0;
  }

  .benefits {
    padding: 2rem 0;
  }

  .pricing {
    padding: 2rem 0;
  }

  .early-access {
    padding: 2rem 0;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .early-access__form {
    padding: 1.5rem;
  }

  .features__grid {
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .feature-card__icon {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-top: 0.05rem;
    flex-shrink: 0;
  }

  .feature-card__content {
    flex: 1;
    min-width: 0;
  }

  .feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1.3;
  }

  .feature-card__description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

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

  .benefit-card {
    padding: 1.25rem;
    text-align: left;
  }

  .benefit-card__icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
    float: left;
    margin-right: 0.5rem;
    line-height: 1.2;
    margin-top: 0.15rem;
  }

  .benefit-card__stat {
    font-size: 2rem;
    margin-bottom: 0.375rem;
    display: block;
    overflow: hidden;
    line-height: 1.1;
  }

  .benefit-card__text {
    font-size: 0.9rem;
    line-height: 1.5;
    overflow: hidden;
  }

  .benefit-card__text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.cookie-consent {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    background: rgba(255,255,255,0.98);
    color: #222;
    border-radius: 1.2em;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
    padding: 1em 1.5em;
    display: flex;
    align-items: center;
    gap: 1em;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    min-width: 220px;
    max-width: 320px;
    animation: fadeInUp 0.5s;
}

.cookie-consent__text {
    flex: 1;
}

.cookie-consent__btn:hover {
    background: #2563eb;
}

@media (max-width: 600px) {
    .cookie-consent {
        position: fixed;
        right: 0.5rem;
        bottom: 0.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
