:root {
  --primary: #0066b3;
  --primary-dark: #004d8a;
  --accent: #ffb800;
  --accent-light: #ffe066;
  --success: #22c55e;
  --text-dark: #1a1a2e;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --gradient-hero: linear-gradient(
    135deg,
    #0066b3 0%,
    #004d8a 50%,
    #003366 100%
  );
  --gradient-accent: linear-gradient(135deg, #ffb800 0%, #ff9500 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(0, 102, 179, 0.3);
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
}

body {
  color: var(--text-dark);
  background-color: #fff;
  padding-top: 70px;
  /* Space for fixed header */
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
} */

.logo img{
  height: 50px;
}

/* .logo span {
  color: var(--accent);
} */

.header-cta {
  background: linear-gradient(135deg, #ffb800 0%, #ff9500 100%);
  color: #1a1a2e;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: #1a1a2e;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0066b3 0%, #004d8a 50%, #003366 100%);
  color: #fff;
  padding: 60px 0 80px;
  text-align: center;
  position: relative;
}

/* .hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 184, 0, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
} */

.hero-content {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #f8fafc, transparent);
}
.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}

.badge-dot {
  height: 8px;
  width: 8px;
  background-color: #4caf50;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}

.hero h1 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

.price-box {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  margin: 30px auto 0;
  max-width: 350px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: "LIMITED OFFER";
  position: absolute;
  top: 25px;
  right: -35px;
  background: #ef4444;
  color: white;
  padding: 4px 40px;
  font-size: 0.7rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
}

.price-old {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-new {
  font-size: 3rem;
  font-weight: 800;
  color: var(--success);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.price-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Tests Section */
.tests-section {
  padding: 60px 0;
  background: var(--light-bg);
}
.test-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-weight: 700;
  color: var(--primary-dark);
}

.test-category {
  background: #f8fafc;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border-left: 4px solid #3b82f6;
}
.test-category.posterior {
  border-left-color: #22c55e;
}
.test-category.vision {
  border-left-color: #ef4444;
}

.test-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.test-category.anterior {
  border-left-color: #3b82f6;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.category-icon {
  font-size: 2rem;
  margin-right: 15px;
  background: #e0f7fa;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.category-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.category-count {
  font-size: 0.8rem;
  color: #777;
}

.test-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* .test-list .test-item {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
} */

.test-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4caf50;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-right: 10px;
}

/* Bonus Section */
.bonus-section {
  background: #fff8e1;
  padding: 30px 0;
  border-top: 2px dashed #ffc107;
  border-bottom: 2px dashed #ffc107;
  text-align: center;
}

.bonus-content {
  max-width: 700px;
  margin: 0 auto;
}

.bonus-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.bonus-title {
  color: #d35400;
  font-weight: 700;
  font-size: 1.5rem;
}

.bonus-text {
  margin: 0;
  color: #5d4037;
}

/* Trust Section */
.trust-section {
  padding-bottom: 50px;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Form Section */
.form-section {
  padding: 60px 0;
  background: var(--gradient-hero);
  position: relative;
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg-light), transparent);
}

.form-header h2, p{
  color: #fff;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

.form-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 139, 153, 0.1);
}

.submit-btn {
  width: 100%;
  background: var(--gradient-accent);
  color: var(--text-dark);
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e68a00;
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 15px;
}

/* Footer */
.footer {
  background: #fff;
  color: #000;
  padding-top: 40px;
  padding-bottom: 70px;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-info a {
  color: #000;
}

.footer-info a:hover {
  text-decoration: none;
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  color: #fff;
  margin: 0 10px;
  opacity: 0.6;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.floating-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 16px;
}

.floating-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.floating-price-old {
  text-decoration: line-through;
  font-size: 0.85rem;
  color: #999;
}

.floating-price-new {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.floating-btn {
  background: var(--gradient-accent);
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.floating-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
  background: #e68a00;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
