:root {
  --primary-blue: #0056d6;
  --primary-blue-hover: #0046b0;
  --accent-yellow: #fff06a;
  --bg-light-blue: #e0f2fe;
  --bg-white: #ffffff;
  --bg-dark: #0f172a;
  --text-navy: #001e4c;
  --text-gray: #475569;
  --text-light: #94a3b8;
  --border-light: #e2e8f0;
  --success: #10b981;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-navy);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--text-navy);
  letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-container img {
  height: 32px;
  object-fit: contain;
}

.company-name {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-blue);
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-navy);
}

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

.btn-primary {
  background: var(--primary-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--primary-blue-hover);
}

.btn-yellow {
  background: var(--accent-yellow);
  color: var(--text-navy);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: filter 0.2s;
}

.btn-yellow:hover {
  filter: brightness(0.95);
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  background-color: var(--bg-light-blue);
  padding: 6rem 5% 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  min-height: 60vh;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--text-navy);
}

.hero-rating svg {
  color: #fbbf24;
  width: 20px;
  height: 20px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-outline {
  border: 2px solid var(--text-navy);
  color: var(--text-navy);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0,0,0,0.05);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 8px;
  background: var(--success);
}

.trust-badge-float {
  position: absolute;
  top: 20px;
  right: -20px;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-navy);
}

/* Trust Section */
.trust-logos {
  padding: 4rem 5%;
  text-align: center;
  background: white;
}

.trust-logos h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.trust-logos p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.logos-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.logo-item {
  font-weight: 800;
  font-size: 1.5rem;
  color: #cbd5e1;
}

/* Yellow Theme Section */
.theme-section {
  background-color: var(--accent-yellow);
  padding: 6rem 5%;
  text-align: center;
}

.theme-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Features Grid */
.features-container {
  background: white;
  padding: 6rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-container h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
  text-align: center;
}

.features-layout {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 4rem;
  align-items: center;
}

.features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-accordion {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.feature-accordion:first-child {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.feature-accordion h4 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
}

.feature-accordion p {
  margin-top: 1rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.features-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.features-image-box {
  background: var(--bg-light-blue);
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 20px;
  position: relative;
}

.feature-img-view {
  animation: fadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

/* Refund Forum / Form */
.refund-section {
  background: #f8fafc;
  padding: 6rem 5%;
}

.refund-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
}

.refund-header {
  text-align: center;
  margin-bottom: 3rem;
}

.refund-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.refund-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-navy);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-navy);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  background: white;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 214, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 2.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.fine-print {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-align: center;
  margin-top: 2rem;
}

.fine-print a {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Footer Section */
.footer-light {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 4rem 5% 2rem;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-links-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-left: 4rem;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--text-navy);
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-rating {
    justify-content: center;
  }
  .features-layout {
    flex-direction: column;
  }
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-links-grid {
    margin-left: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Pricing & Cards Styling */
.pricing-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  border-radius: 20px;
  width: 100%;
  max-width: 350px;
  text-align: left;
  transition: transform 0.3s ease, shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.pricing-card.dark {
  background: var(--bg-dark);
  color: white;
  border: none;
}

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

.pricing-card.dark h3 {
  color: white;
}

.price-box {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.price-currency {
  font-size: 1.25rem;
  vertical-align: top;
  color: var(--text-gray);
}

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

.card-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.container-small {
  max-width: 800px;
  margin: 0 auto;
}