@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #00A6C6;
  /* Cyan from mockup */
  --primary-glow: rgba(0, 166, 198, 0.4);
  --bg-dark: #020810;
  --text-white: #FFFFFF;
  --text-muted: #8E9AAF;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --input-bg: rgba(255, 255, 255, 0.05);
  --btn-dark: #122B48;
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Background System */
.background-system {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  background-image: url("New background .JPG");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  /* Darken to match mockup */
  transform: scale(1.05);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 166, 198, 0.1), transparent 40%),
    linear-gradient(180deg, rgba(2, 8, 16, 0.5) 0%, rgba(2, 8, 16, 0.9) 100%);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

/* Header */
.site-header {
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition);
}

.site-nav a:hover {
  color: var(--text-white);
}

.logo-icon {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-badge {
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #F8FBFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 760px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.header-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 166, 198, 0.12), rgba(255, 255, 255, 0.18), rgba(0, 166, 198, 0.12));
  transform: skewX(-20deg);
  animation: badge-glow 4s ease-in-out infinite;
  z-index: 0;
}

.header-badge {
  z-index: 1;
}

.header-badge span,
.header-badge em,
.header-badge strong {
  position: relative;
  z-index: 2;
}

@keyframes badge-glow {
  0% {
    left: -40%;
    opacity: 0.2;
  }
  50% {
    left: 100%;
    opacity: 0.55;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(96%, 940px);
  background: rgba(2, 8, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner p a {
  color: #00D4FF;
  text-decoration: underline;
}

.cookie-banner button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 166, 198, 0.12);
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-banner button:hover {
  background: rgba(0, 166, 198, 0.2);
}

/* Hero Section */
.hero {
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-content h1 br {
  display: block;
  content: "";
  margin-top: 8px;
}

.hero-subtext {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.6;
}

/* Signup Forms (Mockup Style) */
.signup-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--input-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 500px;
  backdrop-filter: blur(12px);
  margin-bottom: 16px;
}

.signup-box input,
.signup-box textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  color: var(--text-white);
  font-size: 16px;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.signup-box input:focus,
.signup-box textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.signup-box textarea {
  resize: vertical;
  min-height: 100px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.consent-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.consent-checkbox a {
  color: #00D4FF;
  text-decoration: underline;
}

.consent-checkbox a:hover {
  color: #fff;
}

.signup-box button {
  background: linear-gradient(135deg, #00A6C6, #00D4FF);
  color: var(--text-white);
  border: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 4px;
  box-shadow: 0 18px 35px rgba(0, 166, 198, 0.25);
}

.signup-box button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(0, 166, 198, 0.32);
}

.input-note {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 500px;
}

.laptop-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
}

.laptop-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
}

/* Sections Common */
.section-tag {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.section-head {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* Problem/Solution Layout */
.feature-info-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 800px;
}

.icon-box {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
}

.feature-preview,
.feature-item-preview {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-top: 8px;
}

.feature-item-preview {
  font-size: 14px;
  color: var(--text-muted);
}

/* Key Features Grid */
.dual-section-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.features-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.feature-item-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.feature-item-card:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
}

.small-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-item-name {
  font-size: 16px;
  font-weight: 600;
}

.feature-item-content {
  display: flex;
  flex-direction: column;
}

.feature-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* Who It's For */
.target-para {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.target-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  padding: 80px 0 60px;
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-badges {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--text-white);
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #4A5568;
}

.legal-page {
  padding: 100px 0;
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  color: #fff;
}

.legal-page h1 {
  font-size: 34px;
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 18px;
}

.legal-page p,
.legal-page li,
.legal-page td,
.legal-page th {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin: 16px 0;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.legal-page th,
.legal-page td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 14px;
  text-align: left;
}

.legal-page th {
  background: rgba(255,255,255,0.04);
}

.legal-page .legal-note {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  border-radius: 12px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .legal-page {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .legal-page .container {
    padding: 0 16px;
  }
}

.legal-page {
  padding: 100px 0;
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  color: #fff;
}

.legal-page h1 {
  font-size: 34px;
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 18px;
}

.legal-page p,
.legal-page li,
.legal-page td,
.legal-page th {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin: 16px 0;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.legal-page th,
.legal-page td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 14px;
  text-align: left;
}

.legal-page th {
  background: rgba(255,255,255,0.04);
}

.legal-page .legal-note {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  border-radius: 12px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .legal-page {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .legal-page .container {
    padding: 0 16px;
  }
}

/* Collapsible Content */
.feature-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  will-change: max-height, opacity;
}

.collapsible-content.open {
  max-height: 1200px;
  opacity: 1;
}

.expand-trigger,
.expand-trigger-feature {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  transition: var(--transition);
  font-family: inherit;
}

.expand-trigger:hover,
.expand-trigger-feature:hover {
  color: #00D4FF;
}

.expand-chevron {
  transition: transform 0.4s ease;
}

.expand-trigger.open .expand-chevron,
.expand-trigger-feature.open .expand-chevron {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-grid,
  .dual-section-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .laptop-wrapper {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 600px) {
  .signup-box {
    background: transparent;
    border: none;
    padding: 0;
  }

  .signup-box input,
  .signup-box textarea,
  .signup-box button {
    width: 100%;
    border: 1px solid var(--glass-border);
    margin-bottom: 12px;
    border-radius: var(--radius);
  }

  .signup-box button {
    padding: 18px 0;
  }

  .features-box-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}