:root {
  --primary: #2f80ed;
  --bg: #ffffff;
  --text: #222;
  --card: #f5f7fb;
}

body.dark {
  --bg: #0f172a;
  --text: #e5e7eb;
  --card: #1e293b;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: var(--card);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--text);
}

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

.signup-btn {
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
}

/* TOGGLE */
.toggle {
  position: relative;
  width: 42px;
  height: 22px;
}

.toggle input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: 0.3s;
}

.toggle input:checked + .slider {
  background: var(--primary);
}

.toggle input:checked + .slider::before {
  transform: translateX(20px);
}

/* HERO */
.hero {
  text-align: center;
}

.hero-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-title-wrapper h1 {
  font-size: 40px;
  max-width: 700px;
}

.hero-icon {
  width: 400px;   /* BIG icons as requested */
  height: auto;

}

/* SECTION */
.section {
  padding: 70px 40px;
}

.section.light {
  background: var(--card);
}

/* FEATURE SLIDER */
.feature-slider {
  overflow: hidden;
}

.feature-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.feature-card {
  min-width: 260px;
  background: var(--card);
  margin: 0 15px;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
}

.feature-card img {
  width: 50px;
  margin-bottom: 15px;
}

/* INFO */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-box {
  padding: 25px;
  background: var(--bg);
  border-radius: 12px;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.step {
  padding: 20px;
  background: var(--card);
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  background: var(--card);
}
.hero-title-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    align-items: center;


}
