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

    body {
      font-family: 'Inter', sans-serif;
      background: #06070A;
      color: #F5F7FA;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    .container {
      width: 92%;
      max-width: 1220px;
      margin: auto;
    }

    section {
      padding: 110px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: #06070A;
    }

    .hero-layout {
      display:grid;
      grid-template-columns:1fr 1.1fr;
      align-items:center;
      gap:64px;
    }

    .hero-mockup {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-mockup img {
      width: 100%;
      max-width: 760px;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 30px 80px rgba(0,0,0,0.45);
      transform: perspective(1800px) rotateY(-6deg) rotateX(2deg);
      animation: floatMockup 7s ease-in-out infinite, glowPulse 6s ease-in-out infinite;
    }

    @keyframes floatMockup {
      0% {
        transform: perspective(1800px) rotateY(-6deg) rotateX(2deg) translateY(0px);
      }
      50% {
        transform: perspective(1800px) rotateY(-6deg) rotateX(2deg) translateY(-10px);
      }
      100% {
        transform: perspective(1800px) rotateY(-6deg) rotateX(2deg) translateY(0px);
      }
    }

    @keyframes glowPulse {
      0% {
        box-shadow: 0 30px 80px rgba(0,0,0,0.45);
      }
      50% {
        box-shadow: 0 40px 100px rgba(20,90,255,0.12);
      }
      100% {
        box-shadow: 0 30px 80px rgba(0,0,0,0.45);
      }
    }

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

    @media(max-width:768px){
      .hero-mockup img {
        transform:none;
        animation:none;
      }
    }

    .hero-content {
      max-width: 860px;
      padding: 100px 0;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: #0D1117;
      color: #9FB0C5;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 28px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    h1 {
      font-size: clamp(3.2rem, 7vw, 6.2rem);
      line-height: 0.95;
      font-weight: 800;
      letter-spacing: -2.4px;
      margin-bottom: 30px;
      max-width: 1000px;
    }

    .hero p {
      font-size: 1.22rem;
      color: #9BA6B2;
      max-width: 760px;
      margin-bottom: 42px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 16px 24px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      transition: 0.25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background: #FFFFFF;
      color: #06070A;
    }

    .btn-primary:hover {
      opacity: 0.92;
    }

    .btn-secondary {
      background: #10151D;
      color: #D8E0EA;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .btn-secondary:hover {
      background: #151B24;
    }

    .section-title {
      font-size: 3rem;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -2px;
      margin-bottom: 18px;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: #9BA6B2;
      max-width: 760px;
      margin-bottom: 60px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
    }

    .grid-4{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:24px;
      margin-top:40px;
    }

.card{
      background: linear-gradient(180deg, rgba(15,20,28,1) 0%, rgba(10,14,20,1) 100%);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset, 0 10px 30px rgba(0,0,0,0.35);
      border-radius: 22px;
      padding: 34px;
      transition: 0.25s ease;
    }

    .card:hover {
      border-color: rgba(255,255,255,0.14);
      transform: translateY(-4px);
    }

    .card h3 {
      font-size: 1.35rem;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .card p,
    .card li {
      color: #9BA6B2;
      font-size: 0.98rem;
    }

    .card ul {
      margin-top: 16px;
      padding-left: 18px;
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 55px;
    }

    .metric-box {
      background: #0D1117;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 22px;
      padding: 34px;
    }

    .metric-box h2 {
      font-size: 3rem;
      margin-bottom: 10px;
      letter-spacing: -2px;
    }

    .metric-box p {
      color: #9BA6B2;
    }

    .cta {
      text-align: center;
    }

    .cta h2 {
      font-size: 3.2rem;
      line-height: 1;
      margin-bottom: 20px;
      letter-spacing: -2px;
    }

    .cta p {
      max-width: 760px;
      margin: auto;
      margin-bottom: 40px;
      color: #9BA6B2;
    }

    form {
      max-width: 760px;
      margin: auto;
      display: grid;
      gap: 16px;
      margin-top: 42px;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 18px;
      background: #0D1117;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      color: white;
      font-size: 15px;
      outline: none;
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(255,255,255,0.2);
    }

    .seo-block {
      margin-top: 70px;
      padding: 34px;
      border-radius: 22px;
      background: #0D1117;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .seo-block h3 {
      margin-bottom: 18px;
      font-size: 1.3rem;
    }

    .seo-block p {
      color: #9BA6B2;
      margin-bottom: 12px;
    }

    footer {
      padding: 50px 0;
      text-align: center;
      color: #7F8A96;
      font-size: 0.92rem;
    }

    @media(max-width:1200px){
      .grid-4{
        grid-template-columns:repeat(2,1fr);
      }
    }

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

    @media(max-width: 768px) {
      h1 {
        font-size: 3.4rem;
      }

      .section-title,
      .cta h2 {
        font-size: 2.2rem;
      }

      section {
        padding: 80px 0;
      }
    }