    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #f8fafc;
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: #1e293b;
      line-height: 1.5;
    }

    .glass-header {
      background: rgba(255, 255, 255, 0.7);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 5%;
    }

    .logo h1 {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #4f46e5, #6366f1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.2rem;
      margin-left: auto;
      margin-right: 2.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: #1e293b;
      font-weight: 500;
      font-size: 1.1rem;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.2s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 100%;
      height: 2.5px;
      background: #4f46e5;
      border-radius: 4px;
      transition: transform 0.25s ease;
    }

    .nav-links a:hover {
      color: #4f46e5;
    }

    .nav-links a:hover::after {
      transform: translateX(-50%) scaleX(1);
    }

    .cta-btn {
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      font-weight: 600;
      color: #1e293b;
      transition: 0.2s;
    }

    .cta-btn span {
      letter-spacing: 1px;
      font-size: 0.95rem;
      padding-bottom: 2px;
      border-bottom: 2px solid transparent;
      transition: border-color 0.25s;
    }

    .cta-btn i {
      font-size: 1.2rem;
      transition: transform 0.25s;
    }

    .cta-btn:hover span {
      border-bottom-color: #1e293b;
    }

    .cta-btn:hover i {
      transform: translateX(6px);
    }

.illustration-3d img {
    width: 112% !important;
    height: auto !important;
    transform: translateX(30px) scale(1.1);
    max-width: none !important;
    margin-left: -100px;
}

    .hero-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 140px 6% 70px 6%;
      max-width: 1400px;
      margin: 0 auto;
      gap: 30px;
    }

    .hero-content {
      flex: 1.2;
      max-width: 640px;
    }

    .hero-tagline {
      display: inline-block;
      color: #4f46e5;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.4px;
      margin-bottom: 12px;
      background: rgba(79, 70, 229, 0.06);
      padding: 4px 14px;
      border-radius: 40px;
    }

    .hero-main-title {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
      color: #1e1b4b;
      margin-bottom: 6px;
    }

    .hero-main-title span {
      color: #4f46e5;
    }

    .hero-brand-name {
      font-size: 2.4rem;
      font-weight: 800;
      color: #6366f1;
      margin-bottom: 20px;
    }

    .hero-text-desc {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #475569;
      max-width: 540px;
      margin-bottom: 34px;
    }

    .btn-primary-purple {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 34px;
      background: #6366f1;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      border-radius: 40px;
      box-shadow: 0 12px 24px -8px rgba(99, 102, 241, 0.25);
      transition: all 0.25s;
      border: none;
    }

    .btn-primary-purple i {
      font-size: 1.1rem;
    }

    .btn-primary-purple:hover {
      background: #4f46e5;
      transform: translateY(-3px);
      box-shadow: 0 20px 30px -10px rgba(99, 102, 241, 0.35);
    }

    .hero-image-side {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .illustration-3d img {
      max-width: 100%;
      width: 460px;
      height: auto;
      filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.06));
      animation: float 5s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
      100% { transform: translateY(0); }
    }

    .section-divider {
      text-align: center;
      margin: 50px 0 10px 0;
    }

    .divider-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #1e1b4b;
      display: inline-block;
      padding-bottom: 8px;
      border-bottom: 4px solid #6366f1;
      border-radius: 4px;
    }

    .section-title-wrapper {
      text-align: center;
      margin-bottom: 45px;
    }

    .sub-title {
      color: #6366f1;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.3px;
      display: inline-block;
      position: relative;
      padding-bottom: 6px;
    }

    .sub-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 30%;
      width: 40%;
      height: 2px;
      background: #6366f1;
      border-radius: 4px;
    }

    .main-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: #1e1b4b;
      margin-top: 6px;
    }

    .why-us-section {
      padding: 40px 6% 70px 6%;
      background: #ffffff;
    }

    .why-us-content {
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .why-us-image {
      flex: 1;
    }

    .why-us-image img {
      width: 100%;
      max-width: 460px;
      height: auto;
      display: block;
    }

    .why-us-features {
      flex: 1.2;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .feature-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .feature-icon-check {
      background: rgba(99, 102, 241, 0.08);
      color: #6366f1;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .feature-text h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1e1b4b;
      margin-bottom: 6px;
    }

    .feature-text p {
      color: #475569;
      line-height: 1.6;
      font-size: 0.98rem;
    }

    .counter-section {
      padding: 50px 6% 70px 6%;
      background: #f8fafc;
    }

    .counter-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .counter-card {
      background: #ffffff;
      padding: 32px 16px;
      text-align: center;
      border-radius: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
      transition: transform 0.2s;
    }

    .counter-card:hover {
      transform: translateY(-6px);
    }

    .counter-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 16px auto;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 1.7rem;
    }

    .card-purple .counter-icon { background: #f3e8ff; color: #a855f7; }
    .card-purple { background: linear-gradient(185deg, #ffffff, #faf5ff); }

    .card-blue .counter-icon { background: #e0f2fe; color: #0284c7; }
    .card-blue { background: linear-gradient(185deg, #ffffff, #f0f9ff); }

    .card-green .counter-icon { background: #dcfce7; color: #22c55e; }
    .card-green { background: linear-gradient(185deg, #ffffff, #f0fdf4); }

    .card-pink .counter-icon { background: #ffe4e6; color: #f43f5e; }
    .card-pink { background: linear-gradient(185deg, #ffffff, #fff1f2); }

    .counter-card h3 {
      font-size: 2rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 2px;
    }

    .counter-card p {
      color: #64748b;
      font-size: 0.9rem;
    }
    .benefits-section {
      padding: 60px 6% 80px 6%;
      background: #ffffff;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    .benefit-card {
      background: #ffffff;
      padding: 28px 22px;
      border-radius: 20px;
      border: 1px solid #f1f5f9;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
      transition: all 0.25s;
    }

    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(99, 102, 241, 0.06);
      border-color: #e0e7ff;
    }

    .benefit-icon-box {
      width: 48px;
      height: 48px;
      background: rgba(99, 102, 241, 0.07);
      color: #6366f1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .benefit-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1e1b4b;
      margin-bottom: 8px;
    }

    .benefit-card p {
      font-size: 0.9rem;
      color: #64748b;
      line-height: 1.6;
    }

    .goxost-footer {
      background: #ffffff;
      padding: 70px 6% 20px 6%;
      border-top: 1px solid #e9edf2;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 40px;
    }

    .footer-col {
      flex: 1;
    }

    .footer-col h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #4f46e5;
      margin-bottom: 20px;
    }

    .footer-col p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: #475569;
      margin-bottom: 14px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #64748b;
      font-size: 0.93rem;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: #4f46e5;
    }

    .footer-subscribe {
      flex: 1.3;
    }

    .footer-logo {
      font-size: 1.9rem;
      font-weight: 800;
      color: #4f46e5;
      margin-bottom: 12px;
    }

    .footer-logo span {
      background: #6366f1;
      color: #fff;
      padding: 0 8px;
      border-radius: 8px;
      font-size: 1rem;
      margin-left: 4px;
    }

    .subscribe-form {
      display: flex;
      margin: 20px 0 22px 0;
      border-radius: 40px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }

    .subscribe-form input {
      flex: 1;
      padding: 12px 20px;
      border: none;
      outline: none;
      font-size: 0.95rem;
      background: #fff;
    }

    .subscribe-form button {
      background: #6366f1;
      color: white;
      border: none;
      padding: 0 28px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      font-size: 0.9rem;
    }

    .subscribe-form button:hover {
      background: #4f46e5;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
    }

    .footer-socials a {
      width: 40px;
      height: 40px;
      border: 1px solid #e2e8f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #64748b;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    .footer-socials a:hover {
      background: #6366f1;
      color: #fff;
      border-color: #6366f1;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid #f1f5f9;
      font-size: 0.9rem;
      color: #94a3b8;
    }

    .footer-bottom strong {
      color: #4f46e5;
    }

    @media (max-width: 1024px) {
      .hero-wrap { flex-direction: column; text-align: center; padding-top: 120px; }
      .hero-content { max-width: 100%; }
      .hero-text-desc { max-width: 100%; }
      .hero-image-side { margin-top: 20px; }
      .why-us-content { flex-direction: column; }
      .counter-grid { grid-template-columns: repeat(2, 1fr); }
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-container { flex-wrap: wrap; }
    }

    @media (max-width: 700px) {
      .glass-header { flex-wrap: wrap; gap: 8px; }
      .nav-links { gap: 1.2rem; margin-right: 0; }
      .hero-main-title { font-size: 2.2rem; }
      .counter-grid { grid-template-columns: 1fr 1fr; }
      .benefits-grid { grid-template-columns: 1fr; }
      .footer-col { flex: 0 0 100%; }
    }

.cta-btn a{
  text-decoration: none;
  color: inherit;
}