/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
:root {
  --g1: #aae568;
  --g2: #75d02b;
  --g3: #4ca911;
  --g4: #2d7a00;
  --ink: #0c1209;
  --muted: #3d4a52;
  --bg: #f7f8f7;
  --white: #ffffff;
  --border: rgba(76, 169, 17, 0.13);
  --nav-h: 68px;
  --radius-card: 24px;
  --radius-btn: 100px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 28px 60px rgba(0, 0, 0, 0.1);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
  margin-top: var(--nav-h);
}
::-webkit-scrollbar-thumb {
  background: var(--g2);
  border-radius: 3px;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: rgba(170, 229, 104, 0.55);
  color: var(--ink);
}

a {
  text-decoration: none;
  color: var(--g3);
}
a:hover {
  color: var(--g4);
  text-decoration: underline;
}

/* ─── UTILITY ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.section {
  padding: clamp(60px, 10vw, 110px) 0;
}
.tag-pill {
  display: inline-block;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g3);
  background: rgba(117, 208, 43, 0.1);
  padding: 5px 13px;
  border-radius: var(--radius-btn);
  margin-bottom: 14px;
}
.sec-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(246, 252, 240, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
#navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(76, 169, 17, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo:hover {
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.nav-logo-name em {
  color: var(--g3);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: all var(--transition);
}
.nav-links a:hover {
  background: rgba(117, 208, 43, 0.1);
  color: var(--g3);
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background var(--transition);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.hamburger:hover {
  background: rgba(117, 208, 43, 0.1);
}
.ham-line {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── SIDEBAR (Mobile) ─── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(300px, 85vw);
  background: var(--white);
  z-index: 900;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 0 48px rgba(0, 0, 0, 0.13);
  overflow-y: auto;
}
.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sidebar-brand {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.sidebar-brand em {
  color: var(--g3);
  font-style: normal;
}
.sidebar-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.sidebar-close:hover {
  background: rgba(117, 208, 43, 0.15);
}
.sidebar-close svg {
  width: 15px;
  height: 15px;
  stroke: var(--muted);
}

.sidebar-tagline {
  font-size: 12px;
  color: var(--muted);
  padding: 12px 20px 0;
  font-weight: 300;
  line-height: 1.5;
}

.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  gap: 2px;
}
.sidebar-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 13px 14px;
  border-radius: 12px;
  transition: all var(--transition);
  display: block;
}
.sidebar-link:hover,
.sidebar-link.sidebar-active {
  background: rgba(117, 208, 43, 0.1);
  text-decoration: none;
  color: var(--g3);
}
.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 14px;
}

.sidebar-footer {
  padding: 16px 20px 32px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  background: var(--g3);
  color: #fff;
  border-radius: var(--radius-btn);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
  margin-bottom: 16px;
}
.sidebar-cta-btn:hover {
  background: var(--g4);
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(76, 169, 17, 0.28);
}
.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.sidebar-info span {
  font-size: 11px;
  color: var(--muted);
}

/* Login button + dropdown */
.login-wrap {
  position: relative;
}
.login-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--g3);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.login-btn:hover {
  background: var(--g4);
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(76, 169, 17, 0.3);
}
.login-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.login-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px var(--border);
  padding: 22px;
  width: 310px;
  animation: dropIn 0.22s ease;
  z-index: 300;
}
.login-dropdown.open {
  display: block;
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.login-dropdown h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.login-dropdown p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.school-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #ddf0c0;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 8px;
  color: var(--ink);
  background: var(--bg);
}
.school-input:focus {
  border-color: var(--g2);
}
.school-list {
  max-height: 170px;
  overflow-y: auto;
  border: 1.5px solid #ddf0c0;
  border-radius: 10px;
}
.school-item {
  padding: 10px 13px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #edfad0;
  transition: background 0.15s;
}
.school-item:last-child {
  border-bottom: none;
}
.school-item:hover {
  background: #edfad0;
}
.school-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g2);
  flex-shrink: 0;
}
.school-proceed {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: var(--g3);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.school-proceed:hover {
  background: var(--g4);
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
}
.hero-blob-1 {
  width: clamp(300px, 55vw, 680px);
  height: clamp(300px, 55vw, 680px);
  background: radial-gradient(var(--g1), transparent);
  top: -15%;
  right: -5%;
}
.hero-blob-2 {
  width: clamp(220px, 35vw, 480px);
  height: clamp(220px, 35vw, 480px);
  background: radial-gradient(var(--g2), transparent);
  bottom: -5%;
  left: -5%;
  opacity: 0.18;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(76, 169, 17, 0.12) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 90px) 0;
  width: 100%;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(117, 208, 43, 0.12);
  border: 1px solid rgba(117, 208, 43, 0.3);
  padding: 5px 13px;
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 500;
  color: var(--g4);
  margin-bottom: 22px;
  animation: fadeUp 0.55s both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--g2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}
.hero-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 22px;
  animation: fadeUp 0.55s 0.08s both;
}
.hero-title .hl {
  color: var(--g3);
  position: relative;
  display: inline-block;
}
.hero-title .hl::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--g1);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.7;
}
.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.55s 0.16s both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.55s 0.24s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--g3);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--g4);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(76, 169, 17, 0.32);
  text-decoration: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--g2);
  color: var(--g3);
  text-decoration: none;
  background: rgba(117, 208, 43, 0.07);
}
.hero-stats {
  display: flex;
  gap: clamp(18px, 3vw, 32px);
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  animation: fadeUp 0.55s 0.32s both;
}
.hero-stat-n {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--g3);
  line-height: 1;
}
.hero-stat-l {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* App mock */
.hero-visual {
  position: relative;
  animation: fadeUp 0.55s 0.18s both;
}
.app-mock {
  background: var(--white);
  border-radius: 22px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.11),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.mock-topbar {
  background: var(--g3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-logo-box {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 13px;
}
.mock-dots {
  margin-left: auto;
  display: flex;
  gap: 5px;
}
.mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.mock-body {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 255px;
}
.mock-sidebar {
  background: #f4fce8;
  border-right: 1px solid #e4f5c8;
  padding: 14px 0;
}
.sb-item {
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sb-item.on {
  background: rgba(117, 208, 43, 0.13);
  color: var(--g3);
  font-weight: 600;
}
.sb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.mock-content {
  padding: 16px;
}
.mock-head {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}
.t-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 9px;
  background: #f4fce8;
  margin-bottom: 7px;
  transition: all 0.2s;
}
.t-row:hover {
  background: rgba(117, 208, 43, 0.15);
  transform: translateX(2px);
}
.t-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  font-size: 10px;
  font-weight: 800;
  color: var(--g4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-info {
  flex: 1;
  min-width: 0;
}
.t-name {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}
.t-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}
.tag-new {
  background: rgba(117, 208, 43, 0.2);
  color: #2d7a00;
}
.tag-wip {
  background: rgba(255, 165, 0, 0.15);
  color: #b37400;
}
.tag-done {
  background: rgba(0, 0, 0, 0.06);
  color: #777;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-card-1 {
  bottom: -18px;
  left: -28px;
  animation: float 4s ease-in-out infinite;
}
.float-card-2 {
  top: -14px;
  right: -18px;
  animation: float 4s 2s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.fc-label {
  font-size: 10px;
  color: var(--muted);
}
.fc-value {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 13px;
}

/* ─── FEATURES ─── */
#features {
  background: var(--white);
}
.feat-header {
  margin-bottom: clamp(40px, 6vw, 64px);
  text-align: center;
}
.base-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g1), var(--g2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.base-highlight:hover::before {
  transform: scaleX(1);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g1), var(--g2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feat-card:hover::before {
  transform: scaleX(1);
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(117, 208, 43, 0.18);
}
.feat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--g3);
}
.feat-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
}

/* ─── PREVIEW (dark) ─── */
#preview {
  background: var(--ink);
  padding: clamp(60px, 9vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
#preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 110%,
    rgba(76, 169, 17, 0.14),
    transparent
  );
}
.prev-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.prev-inner .tag-pill {
  color: var(--g1);
  background: rgba(170, 229, 104, 0.1);
}
.prev-inner .sec-title {
  color: var(--white);
}
.prev-inner .sec-sub {
  color: rgba(255, 255, 255, 0.45);
  margin: 0 auto clamp(40px, 6vw, 60px);
  max-width: 500px;
}
.scr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.scr-card {
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.scr-card:nth-child(2) {
  transform: translateY(-20px);
}
.scr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(170, 229, 104, 0.05), transparent);
}
.scr-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(170, 229, 104, 0.3);
  transform: translateY(-8px) !important;
}
.scr-icon {
  font-size: 36px;
  opacity: 0.45;
}
.scr-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}
.scr-caption {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 0 16px;
}

/* ─── PRICING CTA ─── */
#preise-cta {
  background: linear-gradient(135deg, var(--g3) 0%, var(--g4) 100%);
  padding: clamp(60px, 8vw, 90px) 0;
  position: relative;
  overflow: hidden;
}
#preise-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 80% 50%,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}
#preise-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}
.price-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.price-cta-inner .tag-pill {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.price-cta-inner .sec-title {
  color: #fff;
}
.price-cta-inner .sec-sub {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}
.price-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
}
.price-cta-note strong {
  color: #fff;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--g3);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: var(--g4);
}
.btn-white svg {
  width: 18px;
  height: 18px;
}
.price-features {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.price-feat-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.price-feat-item::before {
  content: "✓";
  font-weight: 700;
  color: var(--g1);
}

/* ─── TEAM ─── */
#team {
  background: var(--white);
}
.team-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(24px, 4vw, 40px);
  max-width: 860px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-7px);
}
.team-av-wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  position: relative;
}
.team-av {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(76, 169, 17, 0.12);
  transition: all var(--transition);
  overflow: hidden;
  background: linear-gradient(135deg, var(--g1), var(--g2));
}
.team-card:hover .team-av {
  box-shadow: 0 14px 36px rgba(76, 169, 17, 0.18);
}
.team-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(var(--g2), var(--g1), var(--g3), var(--g2));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}
.team-card:hover .team-ring {
  opacity: 0.6;
}
.team-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 4px;
}
.team-role {
  font-size: 11px;
  color: var(--g3);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── FAQ ─── */
#faq {
  background: var(--bg);
  position: relative;
}
.faq-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(76, 169, 17, 0.07) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}
.faq-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 56px);
  position: relative;
  z-index: 1;
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.faq-item {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.25s;
}
.faq-item.open {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
  border-color: rgba(117, 208, 43, 0.18);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 2.5vw, 24px) clamp(18px, 3vw, 28px);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--ink);
  flex: 1;
}
.faq-arrow {
  width: 34px;
  height: 34px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.28s;
}
.faq-item.open .faq-arrow {
  background: var(--g3);
  transform: rotate(180deg);
}
.faq-arrow svg {
  width: 13px;
  height: 13px;
  stroke: #888;
  transition: stroke 0.28s;
}
.faq-item.open .faq-arrow svg {
  stroke: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 clamp(18px, 3vw, 28px);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 clamp(18px, 3vw, 28px) clamp(18px, 2.5vw, 24px);
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  border-top: 1px solid #edfad0;
  padding-top: 18px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(56px, 8vw, 80px) 0 clamp(28px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g2), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: clamp(40px, 5vw, 60px);
}
.footer-brand-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.footer-brand-name em {
  color: var(--g2);
  font-style: normal;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(117, 208, 43, 0.1);
  border: 1px solid rgba(117, 208, 43, 0.2);
  padding: 7px 13px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--g1);
}
.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--g1);
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: clamp(24px, 3vw, 32px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.8;
}
.footer-legal {
  max-width: 640px;
}
.footer-legal h5 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}
.footer-legal p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.75;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1090px) {
  /* Hero-Section nicht mehr auf volle Bildschirmhöhe zwingen */
  #hero {
    min-height: unset;
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 36px 0 28px;
  }
  .hero-visual {
    display: none;
  }
  /* "Webbasiert"-Stat auf Handy ausblenden */
  .hero-stats > div:nth-child(1) {
    display: none;
  }
  /* Navbar: Links und Preise-Button ausblenden, Hamburger zeigen */
  .nav-links {
    display: none;
  }
  .nav-actions .btn-secondary {
    display: none;
  }
  /* Nur den Login-Button ausblenden, Login-Wrap im DOM behalten */
  .login-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .float-card {
    display: none;
  }
  .scr-card:nth-child(2) {
    transform: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    justify-content: center;
  }
  .hero-stats {
    gap: 16px;
  }
  .price-cta-note {
    text-align: center;
  }
  .price-features {
    flex-direction: column;
    align-items: center;
  }
}

/* ─── LOGIN DROPDOWN ALS BOTTOM-SHEET AUF HANDY ─── */
@media (max-width: 1090px) {
  .login-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
    padding: 28px 24px 40px;
    z-index: 950;
  }
  .login-dropdown::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    margin: 0 auto 20px;
  }
}

/* Sidebar Anmelden-Button */
.sidebar-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-btn);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 10px;
}
.sidebar-login-btn:hover {
  border-color: var(--g2);
  color: var(--g3);
  background: rgba(117, 208, 43, 0.07);
}
.sidebar-login-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   LARGE SCREEN (≥ 1600px · großes Desktop)
   ════════════════════════════════════════════ */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
  .hero-title {
    font-size: clamp(68px, 5.5vw, 86px);
  }
  .hero-desc {
    font-size: clamp(18px, 1.8vw, 21px);
  }
  .sec-title {
    font-size: clamp(32px, 3.2vw, 52px);
  }
  .hero-visual {
    zoom: 1.12;
  }
}

/* ════════════════════════════════════════════
   EXTRA LARGE (≥ 1920px · Full HD+)
   ════════════════════════════════════════════ */
@media (min-width: 1920px) {
  .container {
    max-width: 1760px;
  }
  .hero-title {
    font-size: clamp(86px, 5.5vw, 108px);
  }
  .hero-desc {
    font-size: clamp(20px, 1.6vw, 24px);
  }
  .sec-title {
    font-size: clamp(40px, 3vw, 62px);
  }
  .sec-sub {
    font-size: 18px;
  }
  .hero-visual {
    zoom: 1.28;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    padding: 14px 30px;
  }
}

/* ════════════════════════════════════════════
   ULTRA WIDE (≥ 2560px · 2K / 4K)
   ════════════════════════════════════════════ */
@media (min-width: 2560px) {
  .container {
    max-width: 2200px;
  }
  .hero-title {
    font-size: clamp(108px, 5.5vw, 140px);
  }
  .hero-desc {
    font-size: clamp(22px, 1.4vw, 28px);
  }
  .sec-title {
    font-size: clamp(52px, 3vw, 80px);
  }
  .sec-sub {
    font-size: 22px;
  }
  .hero-visual {
    zoom: 1.55;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 18px;
    padding: 16px 36px;
  }
  .nav-logo-name {
    font-size: 22px;
  }
  .nav-links a {
    font-size: 16px;
  }
}
