:root {
  --bg: #f3ede4;
  --bg-soft: #fffaf3;
  --card: #ffffff;
  --text: #202531;
  --muted: #647089;
  --line: #dbe1ea;
  --blue: #2d8cff;
  --blue-dark: #1668d4;
  --blue-soft: #e9f3ff;
  --orange: #ff8a1e;
  --shadow: 0 20px 60px rgba(30, 43, 68, 0.14);
  --shadow-soft: 0 10px 30px rgba(30, 43, 68, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 140, 255, 0.07), transparent 20%),
    radial-gradient(circle at top right, rgba(255, 138, 30, 0.08), transparent 20%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: linear-gradient(90deg, #eef5ff 0%, #fff5ea 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.top-strip-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.top-strip-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-strip-actions a {
  font-size: 14px;
  color: #3f4a60;
  font-weight: 600;
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3ca7ff 0%, #1f6feb 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(31, 111, 235, 0.25);
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.brand-name {
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1.5px;
}

.brand-fun {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
}

.header-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #111827;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  color: #3f4a60;
  font-weight: 700;
  font-size: 15px;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(22, 104, 212, 0.2);
}

.hero-shell {
  padding: 34px 0 28px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,251,255,0.96) 100%);
  border: 1px solid rgba(70, 89, 120, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 26px;
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(45, 140, 255, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 138, 30, 0.10), transparent 24%);
  pointer-events: none;
}

.hero-mini,
.hero-head,
.hero-info-grid,
.friendly-box,
.start-area {
  position: relative;
  z-index: 1;
}

.hero-mini {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-mini span {
  background: #f4f8ff;
  border: 1px solid #dbe8ff;
  color: #41618f;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-head {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-head h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -1.7px;
}

.hero-lead {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 760px;
}

.hero-badge-card {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  border: 1px solid #dce9ff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.badge-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5f7aa6;
  font-weight: 800;
  margin-bottom: 10px;
}

.badge-number {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.badge-text {
  color: var(--muted);
  font-size: 15px;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.hero-info-box {
  background: rgba(255,255,255,0.78);
  border: 1px solid #e4e9f1;
  border-radius: 18px;
  padding: 20px;
}

.hero-info-box h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.hero-info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.friendly-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, #dcebff 0%, #cfe5ff 100%);
  border: 1px solid #b8d5ff;
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 24px;
}

.friendly-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ff9f3d 0%, #ff7c08 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 124, 8, 0.22);
}

.friendly-content h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.friendly-content p {
  margin: 0;
  color: #304763;
  font-size: 16px;
}

.start-area {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.start-left,
.start-right {
  background: rgba(255,255,255,0.82);
  border: 1px solid #e4e8ef;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.start-left h2,
.start-right h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.start-left p,
.start-right p {
  margin: 0 0 18px;
  color: var(--muted);
}

.interest-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.interest-form input {
  flex: 1;
  height: 58px;
  border-radius: 16px;
  border: 1px solid #d7deea;
  background: #fff;
  padding: 0 18px;
  font-size: 16px;
  outline: none;
  transition: 0.25s ease;
}

.interest-form input:focus {
  border-color: #92c0ff;
  box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.12);
}

.interest-form button {
  height: 58px;
  border: 0;
  border-radius: 16px;
  padding: 0 22px;
  background: linear-gradient(180deg, #f59f45 0%, #f08212 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.interest-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f7fc;
  color: #4d6280;
  border: 1px solid #dde6f3;
  font-size: 14px;
  font-weight: 700;
}

.chat-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px 0 14px;
}

.chat-btn {
  min-width: 160px;
  height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.chat-btn:hover {
  transform: translateY(-2px);
}

.text-btn {
  background: linear-gradient(180deg, #54adff 0%, #1d7cf0 100%);
}

.video-btn {
  background: linear-gradient(180deg, #b0b0b0 0%, #7e7e7e 100%);
}

.or {
  font-size: 30px;
  font-weight: 800;
  color: #4b5a73;
}

.loading-text {
  text-align: center;
  font-size: 15px;
}

.spy-mode {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #74b6ff 0%, #4f97f0 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.content-section {
  padding: 38px 0;
}

.section-heading {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 24px;
}

.section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: #4a6893;
  border: 1px solid #dce8ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid #e2e7ef;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.content-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-band {
  padding: 10px 0 38px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e1e8f3;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.88);
  border: 1px solid #e1e7ef;
  border-radius: 18px;
  padding: 0 20px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  padding-right: 34px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 26px;
  color: var(--blue);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  margin-top: 20px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3ca7ff 0%, #1f6feb 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #3f4a60;
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-nav {
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 16px;
  }

  .hero-head,
  .start-area,
  .content-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-info-grid {
    grid-template-columns: 1fr;
  }

  .header-title {
    text-align: right;
  }
}

@media (max-width: 768px) {
  .top-strip-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 0;
  }

  .brand {
    justify-content: center;
  }

  .header-title {
    text-align: center;
    font-size: 28px;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 0;
  }

  .brand-name {
    font-size: 34px;
  }

  .brand-fun {
    font-size: 21px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 22px;
  }

  .friendly-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .interest-form {
    flex-direction: column;
  }

  .chat-actions {
    flex-direction: column;
  }

  .chat-btn {
    width: 100%;
    min-width: 0;
    font-size: 30px;
  }

  .or {
    font-size: 22px;
  }

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

  .footer-links {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .start-left,
  .start-right,
  .content-card,
  .feature-card {
    padding: 18px;
  }

  .friendly-content h2,
  .start-left h2,
  .start-right h2 {
    font-size: 30px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .hero-lead,
  .section-heading p {
    font-size: 16px;
  }
}
.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e1e8f3;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(30, 43, 68, 0.12);
  border-color: #cfe0fb;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 26px;
  background: linear-gradient(180deg, #eef5ff 0%, #dcebff 100%);
  border: 1px solid #d7e6ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}
.responsive-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
  object-fit: cover;
}

@media (max-width: 600px) {
  .responsive-image {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
  }
}
.cookie-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.cookie-notice.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-notice.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  pointer-events: none;
}

.cookie-notice__inner {
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,255,0.96) 100%);
  border: 1px solid rgba(70, 89, 120, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(30, 43, 68, 0.18);
  backdrop-filter: blur(12px);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cookie-notice__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.cookie-notice__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: linear-gradient(180deg, #eef5ff 0%, #dcebff 100%);
  border: 1px solid #d7e6ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.cookie-notice__text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.cookie-notice__text p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.cookie-notice__text a {
  color: var(--blue-dark);
  font-weight: 700;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  min-height: 52px;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 14px 28px rgba(22, 104, 212, 0.18);
}

.cookie-btn--ghost {
  color: #304763;
  background: #eef4fb;
  border: 1px solid #d8e3f0;
}

@media (max-width: 900px) {
  .cookie-notice__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-notice__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 220px;
  }
}

@media (max-width: 640px) {
  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-notice__inner {
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-notice__content {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-notice__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 16px;
    font-size: 22px;
  }

  .cookie-notice__text h3 {
    font-size: 18px;
  }

  .cookie-btn {
    width: 100%;
  }
}