:root {
  --primary: #635dff;
  --secondary: #f2f6ff;
  --text: #222;
  --accent: #22c55e;
  --bg: #fff;
  --shadow: 0 8px 24px rgba(60,72,88,0.07);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--secondary);
  color: var(--text);
  margin: 0;
  padding: 0;
}

header.hero {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

nav {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem 0 1rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

nav a.cta {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

nav a:hover {
  opacity: 0.7;
}

.hero-content {
  max-width: 600px;
  margin: 6rem auto 2rem auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 1.2rem 0 2rem 0;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
  display: inline-block;
}

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

.hero-img {
  text-align: center;
  transform: translateY(-30px);
}

.hero-img img {
  width: 380px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.features {
  background: var(--bg);
  margin-top: -2rem;
  padding: 4rem 1rem 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(99,93,255,0.07);
}

.features h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2.3rem;
}

.feature-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-card {
  background: var(--secondary);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  max-width: 280px;
  text-align: center;
  margin-bottom: 2rem;
}

.feature-card img {
  width: 64px;
  margin-bottom: 1.1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.cta {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  color: #fff;
  padding: 3.5rem 1rem;
  text-align: center;
}

.cta-form {
  display: inline-flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.cta-form input[type="email"] {
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  border: none;
  font-size: 1.1rem;
  outline: none;
  min-width: 220px;
}

.cta-form button {
  border: none;
  border-radius: 25px;
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: var(--shadow);
}

.cta-form button:hover {
  background: var(--accent);
}

.disclaimer {
  font-size: 0.95rem;
  opacity: 0.8;
}

footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
}
.about-section {
  background: linear-gradient(90deg, #f2f6ff 0%, #e0e7ff 100%);
  box-shadow: 0 4px 24px rgba(99,93,255,0.07);
  margin: 4rem auto 2.5rem auto;
  border-radius: 22px;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
  max-width: 900px;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about-section p {
  font-size: 1.15rem;
  color: #332;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(99,93,255,0.09);
  padding: 2rem 2.5rem;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .about-section {
    padding: 2rem 0.5rem 2rem 0.5rem;
    max-width: 97vw;
  }
  .about-stats {
    gap: 1rem;
  }
  .stat {
    padding: 1.2rem 0.7rem;
    min-width: 110px;
  }
  .stat-value {
    font-size: 1.6rem;
  }
}
.feature-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(99, 93, 255, 0.1);
  padding: 2rem 2rem 2.5rem 2rem;
  max-width: 320px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(99, 93, 255, 0.15);
}

.feature-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.feature-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}
.trusted-partners {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 2.5rem 1rem;
  text-align: center;
  border-radius: 18px;
  background: #f9faff;
  box-shadow: 0 4px 24px rgba(99, 93, 255, 0.07);
}

.trusted-partners h2 {
  font-size: 1.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2rem;
}

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

.partner-logos img {
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
  cursor: default;
}

.partner-logos img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Responsive tweak for smaller screens */
@media (max-width: 600px) {
  .partner-logos {
    gap: 2rem;
  }
  .partner-logos img {
    max-height: 40px;
    max-width: 110px;
  }
}
.our-partners {
  max-width: 900px;
  margin: 0 auto 5rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f9fbff 0%, #e6e9f7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(99, 93, 255, 0.1);
  font-family: 'Inter', sans-serif;
}

.our-partners h2 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.7px;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.partner-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  max-width: 850px;
}

.partner-list li {
  background: #fff;
  box-shadow: 0 6px 20px rgba(99, 93, 255, 0.07);
  border-radius: 36px;
  padding: 0.9rem 2.3rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
  min-width: 190px;
  max-width: 230px;
  line-height: 1.3;
  transition: all 0.35s ease;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-list li:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(99, 93, 255, 0.22);
  transform: translateY(-6px);
}

/* Responsive tweaks */
@media (max-width: 700px) {
  .partner-list {
    gap: 1.3rem 2rem;
  }
  .partner-list li {
    min-width: 140px;
    max-width: 180px;
    font-size: 1rem;
    padding: 0.65rem 1.7rem;
    border-radius: 28px;
  }
}
/* Remove pricing and signup from nav - already done in HTML, so no CSS needed */

/* Hero image bigger and classy */
.classy-hero-img img {
  width: 480px;
  max-width: 90vw;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(99, 93, 255, 0.2);
  transition: transform 0.3s ease;
  display: block;
  margin: 1.5rem auto 2rem auto;
}

.classy-hero-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 48px rgba(99, 93, 255, 0.35);
}

/* Smooth scrolling offset for anchor links */
html {
  scroll-padding-top: 80px; /* Adjust if your nav height changes */
}

/* Contact Us Section */
.contact-us {
  max-width: 900px;
  margin: 4rem auto 5rem auto;
  padding: 3rem 1.5rem;
  background: #f0f4ff;
  border-radius: 22px;
  box-shadow: 0 6px 25px rgba(99, 93, 255, 0.1);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.contact-us h2 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-us p {
  font-size: 1.3rem;
  color: #222;
  margin: 0.8rem 0;
}

.contact-us a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.contact-us a:hover {
  color: #3a30c9;
  text-decoration: underline;
}

/* Adjust nav link styles */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  transition: color 0.2s ease;
  font-size: 1rem;
}

nav ul li a:hover {
  color: #ddd;
}
