/* ===== GLOBAL ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

:root {
  --blue: #3a84ff;
  --blue-light: #87CEFA;
  --blue-active: #00BFFF;
  --dark: #000000;
  --light: #111111;
  --error: #ff4444;
  --gray: #aaaaaa;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--white);
  background: #000000;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #0a0a0a;
  box-shadow: 0 2px 10px rgba(58,132,255,0.15);
  border-bottom: 1px solid rgba(58,132,255,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

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

.navbar-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a, .nav-menu span {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue-active);
}

.nav-menu .dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d0d0d;
  box-shadow: 0 8px 24px rgba(58,132,255,0.2);
  min-width: 200px;
  border-top: 3px solid var(--blue);
  z-index: 999;
}

.dropdown-menu a {
  padding: 12px 20px;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.dropdown-menu a:hover {
  background: #1a1a1a;
  color: var(--blue);
}

.nav-menu > li:hover .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(58,132,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(58,132,255,0.4);
  margin: 0 auto 24px;
  display: block;
  box-shadow: 0 0 40px rgba(58,132,255,0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--blue-active);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===== HERO SPLIT LAYOUT ===== */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  padding: 80px 60px;
}

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

.hero-text .hero-logo {
  margin: 0 0 24px 0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  width: 480px;
  filter: drop-shadow(0 0 30px rgba(58,132,255,0.25));
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
  }
  .hero-text { max-width: 100%; }
  .hero-text .hero-logo { margin: 0 auto 24px; }
  .hero-image img { width: 300px; }
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  padding: 80px 24px;
  background: #050505;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 48px;
  color: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto 40px;
}

.card {
  background: #0d0d0d;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(58,132,255,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--blue);
  border: 1px solid rgba(58,132,255,0.15);
  border-top: 4px solid var(--blue);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-active));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

.highlights-footer {
  text-align: center;
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 24px;
  background: #000000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 28px;
  color: var(--white);
}

.contact-info p {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray);
}

.contact-info .icon {
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(58,132,255,0.3);
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  background: #111;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea {
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.form-checkbox label {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.5;
}

.form-error {
  color: var(--error);
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0a1628, #1a2a4a);
  color: var(--white);
  padding: 70px 24px 50px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 80px 24px;
  background: #000;
}

.about-split {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.about-image img {
  max-width: 100%;
  width: 440px;
  filter: drop-shadow(0 0 24px rgba(58,132,255,0.2));
}

.about-split .about-content {
  flex: 1;
  text-align: left;
}

@media (max-width: 900px) {
  .about-split {
    flex-direction: column;
  }
  .about-image img { width: 300px; }
  .about-split .about-content { text-align: center; }
}

.about-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--blue-light);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.cta-block {
  background: linear-gradient(135deg, var(--blue), var(--blue-active));
  color: var(--white);
  padding: 60px 40px;
  text-align: center;
  border-radius: 12px;
  max-width: 760px;
  margin: 60px auto 0;
}

.cta-block h4 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.cta-block p {
  font-size: 1rem;
  margin-bottom: 28px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-white:hover {
  background: var(--light);
}

.btn-outline-white {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
}

/* ===== APP PAGE ===== */
.app-section {
  padding: 80px 24px;
  background: #000;
}

.app-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.app-intro .lead {
  font-size: 1.15rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.app-intro p {
  color: var(--gray);
  line-height: 1.8;
}

.features-list {
  max-width: 860px;
  margin: 0 auto;
}

.features-list h2 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--white);
  text-align: center;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-left: 4px solid var(--blue);
  margin-bottom: 20px;
  background: #0d0d0d;
  border-radius: 0 8px 8px 0;
}

.feature-item .num {
  background: var(--blue);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-item .feature-text h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--white);
}

.feature-item .feature-text p {
  font-size: 0.92rem;
  color: var(--gray);
}

.app-hero-split {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.app-hero-split .app-intro {
  flex: 1;
  margin-bottom: 0;
}

.app-hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-hero-img img {
  max-width: 100%;
  width: 480px;
  filter: drop-shadow(0 0 28px rgba(58,132,255,0.2));
}

@media (max-width: 900px) {
  .app-hero-split {
    flex-direction: column;
  }
  .app-hero-img img { width: 300px; }
}

.app-why {
  background: var(--dark);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}

.app-why h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--blue-light);
}

.app-why p {
  max-width: 700px;
  margin: 0 auto 16px;
  opacity: 0.85;
  line-height: 1.8;
}

.flow-text {
  background: rgba(58,132,255,0.15);
  border: 1px solid rgba(58,132,255,0.3);
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 24px auto;
  font-size: 0.95rem;
  color: var(--blue-light);
  letter-spacing: 0.05em;
}

/* ===== TERMS / PRIVACY PAGE ===== */
.legal-section {
  padding: 60px 24px;
  background: #000;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--blue);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light);
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 20px 0 8px;
}

.legal-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}

footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

footer ul li a:hover {
  color: var(--blue-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.84rem;
  max-width: 1140px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    gap: 0;
  }

  .nav-menu.open { display: flex; }

  .nav-menu > li { width: 100%; }

  .nav-menu a, .nav-menu span {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 4px solid var(--blue);
    margin-left: 24px;
    width: calc(100% - 24px);
    background: #111;
  }

  .nav-menu > li:hover .dropdown-menu { display: block; }

  .hamburger { display: flex; }

  .hero h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 40px 24px; }
}

/* ===== CONSENT MODAL ===== */
.consent-modal {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid rgba(58,132,255,0.3);
  box-shadow: 0 8px 40px rgba(58,132,255,0.15);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 9999;
}

.consent-modal.show { display: block; }

.consent-modal p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.consent-buttons {
  display: flex;
  gap: 10px;
}

.btn-consent-accept {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.88rem;
  transition: background 0.2s;
}

.btn-consent-accept:hover { background: var(--blue-active); }

.btn-consent-reject {
  background: transparent;
  color: var(--gray);
  border: 1px solid #ddd;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.88rem;
  transition: all 0.2s;
}

.btn-consent-reject:hover { border-color: var(--error); color: var(--error); }

/* ===== VIDEO PLACEHOLDER ===== */
.video-consent {
  background: var(--light);
  border: 1px dashed #ccc;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 32px auto;
}

.video-consent p {
  color: var(--gray);
  margin-bottom: 16px;
}
