    :root {
      --bg: #070304;
      --bg-soft: #120608;
      --card: rgba(18, 8, 10, 0.82);
      --card-2: rgba(30, 10, 14, 0.9);
      --line: rgba(255, 255, 255, 0.08);
      --text: #ffffff;
      --muted: #d6c3c8;
      --muted-2: #9f8b90;
      --primary: #d61f43;
      --primary-2: #ff4166;
      --deep-red: #7f071f;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --container: 1220px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      background:
        radial-gradient(circle at 10% 20%, rgba(214, 31, 67, 0.18), transparent 26%),
        radial-gradient(circle at 85% 18%, rgba(255, 65, 102, 0.13), transparent 22%),
        radial-gradient(circle at 50% 80%, rgba(138, 0, 32, 0.18), transparent 30%),
        linear-gradient(180deg, #090304 0%, #120507 55%, #060203 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
      pointer-events: none;
      opacity: 0.3;
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      width: 540px;
      height: 540px;
      left: -160px;
      top: -100px;
      background: radial-gradient(circle, rgba(214, 31, 67, 0.22), transparent 65%);
      filter: blur(30px);
      pointer-events: none;
      z-index: -1;
      animation: floatGlow 10s ease-in-out infinite alternate;
    }

    @keyframes floatGlow {
      0% { transform: translateY(0) translateX(0) scale(1); }
      100% { transform: translateY(25px) translateX(20px) scale(1.08); }
    }

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

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

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

    .site-shell {
      position: relative;
    }

    .topbar {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      background: rgba(9, 3, 4, 0.72);
      backdrop-filter: blur(14px);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 84px;
      gap: 18px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .logo-badge {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background:
        linear-gradient(145deg, rgba(255,65,102,0.22), rgba(214,31,67,0.08)),
        rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 10px 30px rgba(214,31,67,0.18);
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }

    .logo-badge::before {
      content: "";
      position: absolute;
      inset: -1px;
      background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 45%, rgba(255,65,102,0.22));
      opacity: 0.8;
    }

    .logo-badge span {
      position: relative;
      font-size: 1rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.06em;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .logo-text strong {
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.03em;
    }

    .logo-text small {
      color: var(--muted-2);
      font-size: 0.76rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .online-counter {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
      color: #fff;
      font-size: 0.93rem;
      font-weight: 600;
    }

    .online-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ff4f72;
      box-shadow: 0 0 0 0 rgba(255,79,114,0.75);
      animation: pulseDot 1.8s infinite;
      flex-shrink: 0;
    }

    @keyframes pulseDot {
      0% { box-shadow: 0 0 0 0 rgba(255,79,114,0.7); }
      70% { box-shadow: 0 0 0 12px rgba(255,79,114,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,79,114,0); }
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .nav-links a {
      padding: 11px 15px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 600;
      transition: 0.25s ease;
    }

    .nav-links a:hover {
      color: #fff;
      background: rgba(255,255,255,0.05);
    }

    .hero {
      position: relative;
      padding: 72px 0 36px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(360px, 490px);
      gap: 34px;
      align-items: center;
    }

    .hero-copy {
      padding-right: 10px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: #ffe8ee;
      font-size: 0.84rem;
      font-weight: 700;
      margin-bottom: 20px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(180deg, #ff5d7d, #d61f43);
      box-shadow: 0 0 18px rgba(255, 82, 116, 0.7);
    }

    .hero-copy h1 {
      font-size: clamp(2.4rem, 5vw, 4.8rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
      font-weight: 800;
      max-width: 760px;
    }

    .hero-copy h1 .accent {
      background: linear-gradient(180deg, #ffffff 0%, #ff8da4 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-copy p {
      font-size: 1.06rem;
      line-height: 1.8;
      color: var(--muted);
      max-width: 690px;
      margin-bottom: 28px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 32px;
    }

    .hero-points span {
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 58px;
      padding: 0 24px;
      border-radius: 18px;
      font-weight: 700;
      font-size: 0.98rem;
      border: 1px solid transparent;
      transition: 0.3s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, #ff3f67 0%, #b9092c 100%);
      box-shadow:
        0 18px 35px rgba(214, 31, 67, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow:
        0 24px 45px rgba(214, 31, 67, 0.42),
        inset 0 1px 0 rgba(255,255,255,0.22);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.045);
      border-color: rgba(255,255,255,0.08);
      color: #fff;
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.08);
    }

    .chat-card {
      position: relative;
      border-radius: 30px;
      padding: 26px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
        rgba(15, 6, 8, 0.92);
      border: 1px solid rgba(255,255,255,0.09);
      box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255,255,255,0.08);
      overflow: hidden;
    }

    .chat-card::before {
      content: "";
      position: absolute;
      inset: -40% auto auto -10%;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(255, 70, 106, 0.18), transparent 65%);
      pointer-events: none;
    }

    .chat-card::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      right: -30px;
      bottom: -30px;
      background: radial-gradient(circle, rgba(255, 70, 106, 0.14), transparent 70%);
      filter: blur(10px);
      pointer-events: none;
    }

    .chat-card-head {
      position: relative;
      z-index: 1;
      margin-bottom: 18px;
    }

    .chat-card-head h2 {
      font-size: 1.55rem;
      line-height: 1.2;
      margin-bottom: 8px;
      font-weight: 800;
    }

    .chat-card-head p {
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    .chat-form {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
    }

    .input-group {
      display: grid;
      gap: 9px;
    }

    .input-group label {
      font-size: 0.88rem;
      color: #f5dde3;
      font-weight: 600;
      padding-left: 4px;
    }

    .field,
    .select {
      width: 100%;
      min-height: 60px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02)),
        rgba(255,255,255,0.02);
      color: #fff;
      outline: none;
      padding: 0 18px;
      font-size: 0.98rem;
      font-weight: 600;
      transition: 0.25s ease;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    select.select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      cursor: pointer;
      background-image:
        linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%);
      background-position:
        calc(100% - 24px) calc(50% - 3px),
        calc(100% - 18px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
      padding-right: 50px;
    }

    .field:focus,
    .select:focus {
      border-color: rgba(255, 80, 117, 0.8);
      box-shadow:
        0 0 0 4px rgba(255, 76, 111, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.06);
      transform: translateY(-1px);
    }

    .chat-submit {
      margin-top: 6px;
      min-height: 62px;
      border-radius: 20px;
      border: none;
      background: linear-gradient(135deg, #ff3f67 0%, #b9092c 100%);
      color: #fff;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      cursor: pointer;
      box-shadow:
        0 16px 34px rgba(214,31,67,0.34),
        inset 0 1px 0 rgba(255,255,255,0.2);
      transition: 0.3s ease;
    }

    .chat-submit:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow:
        0 22px 40px rgba(214,31,67,0.42),
        inset 0 1px 0 rgba(255,255,255,0.22);
    }

    .chat-note {
      font-size: 0.84rem;
      color: var(--muted-2);
      line-height: 1.7;
      text-align: center;
      margin-top: 4px;
    }

    .section {
      padding: 42px 0;
    }

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

    .section-title h2 {
      font-size: clamp(1.9rem, 3vw, 3rem);
      line-height: 1.15;
      margin-bottom: 14px;
      letter-spacing: -0.03em;
    }

    .section-title p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 1rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 28px;
    }

    .feature-card {
      position: relative;
      padding: 26px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025)),
        rgba(15, 6, 8, 0.85);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 95, 126, 0.28);
      box-shadow:
        0 22px 42px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255, 95, 126, 0.08);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(255,65,102,0.22), rgba(214,31,67,0.08));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
      font-size: 1.5rem;
    }

    .feature-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .feature-card p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.97rem;
    }

    .content-grid {
      display: grid;
      gap: 22px;
      margin-top: 26px;
    }

    .content-card {
      padding: 30px;
      border-radius: 26px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        rgba(10, 5, 6, 0.9);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow);
    }

    .content-card h3 {
      font-size: 1.45rem;
      margin-bottom: 14px;
      letter-spacing: -0.02em;
    }

    .content-card p {
      color: var(--muted);
      line-height: 1.9;
      font-size: 1rem;
      margin-bottom: 14px;
    }

    .content-card p:last-child {
      margin-bottom: 0;
    }

    .cta-box {
      margin-top: 20px;
      padding: 34px;
      border-radius: 28px;
      background:
        radial-gradient(circle at left top, rgba(255, 75, 111, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
        rgba(16, 6, 8, 0.94);
      border: 1px solid rgba(255,255,255,0.09);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
    }

    .cta-box h3 {
      font-size: clamp(1.6rem, 2.4vw, 2.3rem);
      margin-bottom: 10px;
      letter-spacing: -0.03em;
    }

    .cta-box p {
      color: var(--muted);
      line-height: 1.8;
      max-width: 760px;
    }

    .faq-wrap {
      margin-top: 26px;
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        rgba(12, 5, 7, 0.92);
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: 0.25s ease;
    }

    .faq-item.active {
      border-color: rgba(255, 88, 121, 0.3);
      box-shadow:
        0 24px 50px rgba(0,0,0,0.42),
        0 0 30px rgba(214,31,67,0.12);
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: none;
      color: #fff;
      text-align: left;
      padding: 22px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      cursor: pointer;
    }

    .faq-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .faq-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      background: linear-gradient(135deg, rgba(255,65,102,0.22), rgba(214,31,67,0.08));
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 1.2rem;
    }

    .faq-question strong {
      font-size: 1rem;
      line-height: 1.45;
      font-weight: 700;
    }

    .faq-toggle {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      position: relative;
      flex-shrink: 0;
      transition: 0.3s ease;
    }

    .faq-toggle::before,
    .faq-toggle::after {
      content: "";
      position: absolute;
      background: #fff;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border-radius: 2px;
      transition: 0.3s ease;
    }

    .faq-toggle::before {
      width: 16px;
      height: 2px;
    }

    .faq-toggle::after {
      width: 2px;
      height: 16px;
    }

    .faq-item.active .faq-toggle {
      background: rgba(255, 70, 106, 0.12);
      border-color: rgba(255, 95, 126, 0.34);
      transform: rotate(180deg);
    }

    .faq-item.active .faq-toggle::after {
      height: 0;
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: 0.35s ease;
    }

    .faq-item.active .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer-inner {
      overflow: hidden;
    }

    .faq-answer p {
      padding: 0 24px 22px 88px;
      color: var(--muted);
      line-height: 1.85;
      font-size: 0.98rem;
    }

    .footer {
      padding: 36px 0 50px;
      border-top: 1px solid rgba(255,255,255,0.07);
      margin-top: 26px;
      background: rgba(7, 3, 4, 0.45);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 28px;
    }

    .footer-brand p,
    .footer-col p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .footer-brand strong,
    .footer-col h4 {
      display: block;
      margin-bottom: 14px;
      font-size: 1.02rem;
      font-weight: 800;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      transition: 0.25s ease;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-bottom {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--muted-2);
      font-size: 0.9rem;
    }

    @media (max-width: 1080px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        order: 2;
        padding-right: 0;
      }

      .chat-card {
        order: 1;
      }

      .feature-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 768px) {
      .nav {
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      .nav-right {
        width: 100%;
        justify-content: flex-start;
      }

      .hero {
        padding-top: 34px;
      }

      .hero-grid {
        gap: 20px;
      }

      .chat-card {
        padding: 22px;
      }

      .hero-copy {
        order: 2;
      }

      .chat-card {
        order: 1;
      }

      .section {
        padding: 34px 0;
      }

      .content-card,
      .cta-box {
        padding: 24px;
      }

      .faq-answer p {
        padding: 0 20px 20px 20px;
      }

      .faq-left {
        align-items: flex-start;
      }

      .faq-icon {
        width: 42px;
        height: 42px;
      }
    }

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

      .hero-copy h1 {
        font-size: 2.25rem;
      }

      .hero-copy p {
        font-size: 1rem;
      }

      .hero-actions,
      .hero-points {
        flex-direction: column;
      }

      .btn,
      .chat-submit {
        width: 100%;
      }

      .online-counter {
        width: 100%;
        justify-content: center;
      }

      .nav-links {
        width: 100%;
      }

      .nav-links a {
        flex: 1 1 auto;
        text-align: center;
      }
    }
.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;
  }
}