@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: #050816;
  color: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

:root {
  --primary: #00e5ff;
  --secondary: #7c3aed;
  --gold: #ffd54a;
  --gold-dark: #f59e0b;

  --dark: #050816;
  --card: #111827;

  --text: #ffffff;
  --paragraph: #bfc7d8;

  --border: rgba(255, 255, 255, 0.08);

  --glass: rgba(255, 255, 255, 0.05);

  --transition: 0.35s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 600;

  transition: var(--transition);
}

.btn-primary {
  color: #000;

  background: linear-gradient(135deg, var(--gold), var(--gold-dark));

  box-shadow: 0 15px 40px rgba(255, 213, 74, 0.25);
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 55px rgba(255, 213, 74, 0.45);
}

.btn-outline {
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);

  color: var(--primary);

  transform: translateY(-4px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(5, 8, 22, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary);
}

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

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

.nav-links li a {
  color: var(--paragraph);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links li a:hover {
  color: var(--primary);
}

.nav-links li a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--primary);

  transition: var(--transition);
}

.nav-links li a:hover::after {
  width: 100%;
}

.header-btn {
  padding: 14px 28px;

  border-radius: 50px;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #fff;

  font-size: 15px;
  font-weight: 600;

  transition: var(--transition);
}

.header-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 229, 255, 0.35);
}

.menu-btn {
  display: none;

  width: 48px;
  height: 48px;

  border-radius: 10px;

  background: var(--glass);

  border: 1px solid var(--border);

  color: #fff;

  font-size: 28px;

  transition: var(--transition);
}

.menu-btn:hover {
  background: var(--primary);
}

.mobile-btn {
  display: none;
}

.desktop-btn {
  display: inline-flex;
}

/*=====================================
HERO SECTION
======================================*/

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1);
  transition: transform 8s linear;
}

.slide.active img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(5, 8, 22, 0.75) 10%,
    rgba(5, 8, 22, 0.45) 45%,
    rgba(5, 8, 22, 0.65) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 10;

  height: 100%;

  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(0, 229, 255, 0.12);

  border: 1px solid rgba(0, 229, 255, 0.25);

  color: var(--primary);

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 0.5px;

  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;

  margin-bottom: 25px;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  max-width: 600px;

  font-size: 18px;
  line-height: 1.8;

  color: var(--paragraph);

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 16px 34px;

  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;

  transition: var(--transition);
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: white;
}

.primary-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(0, 229, 255, 0.3);
}

.secondary-btn {
  border: 1px solid var(--primary);

  color: white;
}

.secondary-btn:hover {
  background: var(--primary);
  color: #000;
}

.prev,
.next {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  border: 1px solid var(--border);

  color: white;

  font-size: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: var(--transition);

  z-index: 20;
}

.prev:hover,
.next:hover {
  background: var(--primary);
}

.prev {
  left: 35px;
}

.next {
  right: 35px;
}
.dots {
  position: absolute;

  bottom: 45px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  gap: 12px;

  z-index: 20;
}

.dot {
  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.4);

  cursor: pointer;

  transition: 0.35s;
}

.dot.active {
  width: 40px;

  border-radius: 50px;

  background: var(--primary);
}

.hero-tag,
.hero-content h1,
.hero-content p,
.hero-buttons {
  opacity: 0;
  transform: translateY(40px);
}

.slide.active .hero-tag {
  animation: fadeUp 0.8s 0.2s forwards;
}

.slide.active h1 {
  animation: fadeUp 0.8s 0.4s forwards;
}

.slide.active p {
  animation: fadeUp 0.8s 0.6s forwards;
}

.slide.active .hero-buttons {
  animation: fadeUp 0.8s 0.8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust {
  padding: 70px 0;

  background:
    radial-gradient(circle at top, rgba(0, 229, 255, 0.15), transparent 35%),
    #f4f3ff;

  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 25px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);

  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-8px);

  border-color: var(--primary);

  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.18);
}

.trust-item i {
  font-size: 34px;
  color: var(--primary);
}

.trust-item span {
  color: var(--dark);
  font-weight: 600;
  line-height: 1.5;
}

.technology {
  padding: 110px 0;

  position: relative;

  background: radial-gradient(
    circle at top,
    rgba(0, 229, 255, 0.08),
    transparent 40%
  );
}

.section-title {
  max-width: 750px;

  margin: auto;

  text-align: center;

  margin-bottom: 70px;
}

.section-title span {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  background: rgba(255, 213, 74, 0.1);

  border: 1px solid rgba(255, 213, 74, 0.2);

  color: var(--gold);

  font-size: 13px;

  letter-spacing: 1px;

  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 52px;

  line-height: 1.2;

  margin-bottom: 20px;
}

.section-title p {
  color: var(--paragraph);

  font-size: 17px;

  line-height: 1.7;
}

.technology-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

/* ================= TECHNOLOGY SECTION ================= */

.technology {
  padding: 120px 0;

  background:
    radial-gradient(circle at top, rgba(0, 229, 255, 0.12), transparent 35%),
    linear-gradient(180deg, #050816, #081326);

  overflow: hidden;
}

.container {
  width: min(1200px, 90%);

  margin: auto;
}

.section-title {
  max-width: 750px;

  margin: auto;

  text-align: center;

  margin-bottom: 70px;
}

.section-title span {
  display: inline-block;

  color: #00e5ff;

  font-size: 14px;

  letter-spacing: 2px;

  font-weight: 600;

  margin-bottom: 18px;
}

.section-title h2 {
  color: white;

  font-size: 48px;

  line-height: 1.15;

  margin-bottom: 20px;
}

.section-title p {
  color: #9ca9c6;

  font-size: 18px;

  line-height: 1.7;
}

.technology-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.technology-card {
  position: relative;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 28px;

  overflow: hidden;

  backdrop-filter: blur(15px);

  transition: 0.4s ease;
}

.technology-card:hover {
  transform: translateY(-10px);

  border-color: #00e5ff;

  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}

.card-image {
  height: 260px;

  overflow: hidden;
}

.card-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

.technology-card:hover img {
  transform: scale(1.08);
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  color: white;

  font-size: 25px;

  margin-bottom: 15px;
}

.card-content p {
  color: #9ca9c6;

  line-height: 1.7;

  margin-bottom: 25px;
}

.card-content a {
  color: #00e5ff;

  text-decoration: none;

  font-weight: 600;
}

.technology-card::after {
  content: "";

  position: absolute;

  width: 180px;

  height: 180px;

  background: #00e5ff;

  filter: blur(100px);

  opacity: 0.15;

  right: -80px;

  bottom: -80px;
}

/*====================================
WHY BETLOGIC
====================================*/

.why-betlogic {
  position: relative;

  padding: 120px 0;

  background:
    radial-gradient(circle at top, rgba(0, 229, 255, 0.15), transparent 35%),
    #f4f3ff;

  overflow: hidden;
}

.why-betlogic::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: -200px;
  top: -200px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 229, 255, 0.12), transparent 70%);

  filter: blur(80px);
}

.why-betlogic .section-title span {
  color: #00bcd4;
}

.why-betlogic .section-title h2 {
  color: #071426;
}

.why-betlogic .section-title p {
  color: #667085;
}

.why-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;

  margin-top: 70px;
}

.visual-card {
  position: relative;

  height: 560px;

  border-radius: 35px;

  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.visual-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75));
}

.visual-content {
  position: absolute;

  left: 40px;

  bottom: 40px;

  color: white;
}

.visual-content h3 {
  font-size: 38px;

  margin-bottom: 12px;
}

.visual-content p {
  max-width: 320px;

  line-height: 1.7;

  color: #e5e7eb;
}

.why-content {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

.benefit {
  display: flex;

  gap: 22px;

  padding: 28px;

  background: white;

  border-radius: 22px;

  border: 1px solid #e8edf3;

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);

  transition: 0.35s ease;
}

.benefit:hover {
  transform: translateX(10px);

  border-color: #00bcd4;

  box-shadow: 0 20px 45px rgba(0, 188, 212, 0.12);
}

.icon {
  width: 65px;

  height: 65px;

  flex-shrink: 0;

  border-radius: 18px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: linear-gradient(135deg, #00e5ff, #ffd54a);

  color: white;

  font-size: 28px;
}

.benefit h3 {
  color: #071426;

  font-size: 23px;

  margin-bottom: 8px;
}

.benefit p {
  color: #667085;

  line-height: 1.7;
}

/*====================================
COMPLETE ECOSYSTEM
====================================*/

.ecosystem {
  padding: 120px 0;

  background: linear-gradient(180deg, #050816, #081326);
}

.ecosystem-banner {
  margin-top: 70px;

  min-height: 430px;

  border-radius: 35px;

  padding: 60px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.12),
    rgba(255, 213, 74, 0.08)
  );

  border: 1px solid rgba(255, 255, 255, 0.1);

  overflow: hidden;
}

.banner-content {
  max-width: 520px;
}

.banner-content h3 {
  font-size: 48px;

  line-height: 1.15;

  color: white;

  margin-bottom: 20px;
}

.banner-content p {
  color: #9ca9c6;

  line-height: 1.8;
}

.banner-tags {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.banner-tags span {
  padding: 10px 18px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.08);

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.banner-image img {
  width: 400px;
}

.ecosystem-cards {
  margin-top: 40px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.eco-card {
  padding: 35px;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: 0.35s;
}

.eco-card:hover {
  transform: translateY(-10px);

  border-color: #00e5ff;
}

.eco-card i {
  font-size: 35px;

  color: #ffd54a;

  margin-bottom: 20px;

  display: block;
}

.eco-card h3 {
  color: white;

  font-size: 22px;

  margin-bottom: 12px;
}

.eco-card p {
  color: #94a3b8;

  line-height: 1.7;
}

/*======================================
    SIMPLIFY YOUR OPERATIONS
=======================================*/

.operations {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background: linear-gradient(180deg, #050816 0%, #081326 100%);
}

.operations::before {
  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  top: -200px;

  left: -200px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 229, 255, 0.12), transparent 70%);

  filter: blur(90px);
}

.operations::after {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  bottom: -200px;

  right: -200px;

  border-radius: 50%;

  background: radial-gradient(rgba(255, 213, 74, 0.15), transparent 70%);

  filter: blur(90px);
}

.comparison-wrapper {
  position: relative;

  margin-top: 70px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  align-items: center;
}

.comparison-card {
  position: relative;

  padding: 40px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(25px);

  overflow: hidden;

  transition: 0.4s ease;
}

.traditional {
  border-color: rgba(255, 80, 80, 0.25);
}

.traditional::before {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  top: -100px;

  left: -100px;

  border-radius: 50%;

  background: radial-gradient(rgba(255, 70, 70, 0.25), transparent 70%);
}

.betlogic {
  border-color: rgba(255, 213, 74, 0.35);
}

.betlogic::before {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  top: -100px;

  right: -100px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 229, 255, 0.25), transparent 70%);
}

.comparison-card:hover {
  transform: translateY(-12px);
}

.betlogic:hover {
  box-shadow: 0 30px 80px rgba(255, 213, 74, 0.15);
}

.traditional:hover {
  box-shadow: 0 30px 80px rgba(255, 70, 70, 0.12);
}

.card-header {
  position: relative;

  display: flex;

  align-items: center;

  gap: 20px;

  padding-bottom: 30px;

  margin-bottom: 25px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-icon {
  width: 65px;

  height: 65px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 20px;

  font-size: 32px;
}

.traditional .header-icon {
  color: #ff6464;

  background: rgba(255, 70, 70, 0.12);
}

.betlogic .header-icon {
  color: #00e5ff;

  background: rgba(0, 229, 255, 0.12);
}

.card-header span {
  display: block;

  color: rgba(255, 255, 255, 0.6);

  font-size: 14px;

  margin-bottom: 5px;
}

.card-header h3 {
  font-size: 25px;

  color: #fff;
}

.comparison-card ul {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

.comparison-card li {
  display: flex;

  align-items: center;

  gap: 18px;

  font-size: 16px;

  color: #fff;
}

.comparison-card li i {
  width: 32px;

  height: 32px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 18px;
}

.traditional li i {
  color: #ff5757;

  background: rgba(255, 80, 80, 0.12);
}

.betlogic li i {
  color: #12e28a;

  background: rgba(18, 226, 138, 0.12);
}

.vs-circle {
  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  width: 90px;

  height: 90px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 5;

  background: linear-gradient(135deg, var(--gold), #00e5ff);

  color: #050816;

  font-size: 24px;

  font-weight: 800;

  box-shadow: 0 0 50px rgba(255, 213, 74, 0.35);
}

.operations-footer {
  text-align: center;

  margin-top: 70px;
}

.operations-footer h3 {
  font-size: 32px;

  color: #fff;

  margin-bottom: 35px;
}

.operations-footer h3 span {
  color: var(--gold);
}

.comparison-card {
  animation: fadeUp 0.8s ease forwards;
}

.traditional {
  animation-delay: 0.15s;
}

.betlogic {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.comparison-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  opacity: 0;

  transition: 0.4s ease;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

.comparison-card:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .comparison-card,
  .comparison-card:hover {
    animation: none;

    transition: none;

    transform: none;
  }
}

.solutions-section {
  padding: 120px 0;

  background: linear-gradient(135deg, #050816, #101936);

  overflow: hidden;

  position: relative;
}

.solutions-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;

  align-items: center;
}

.section-tag {
  display: inline-block;

  padding: 8px 20px;

  border-radius: 50px;

  background: rgba(255, 213, 74, 0.12);

  color: #ffd54a;

  font-size: 14px;

  margin-bottom: 20px;
}

.solutions-content h2 {
  font-size: 48px;

  line-height: 1.15;

  color: #fff;

  margin-bottom: 25px;
}

.solutions-content h2 span {
  color: #ffd54a;
}

.section-desc {
  color: #aab5d6;

  font-size: 18px;

  line-height: 1.7;

  max-width: 700px;

  margin-bottom: 45px;
}

.solution-cards {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 25px;
}

.solution-card {
  padding: 28px;

  display: flex;

  gap: 20px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 25px;

  backdrop-filter: blur(20px);

  transition: 0.4s;
}

.solution-card:hover {
  transform: translateY(-8px);

  border-color: #ffd54a;
}

.solution-card .icon {
  min-width: 55px;

  height: 55px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #ffd54a, #00e5ff);

  color: #050816;

  font-size: 22px;
}

.solution-card h3 {
  color: #fff;

  font-size: 20px;

  margin-bottom: 12px;
}

.solution-card p {
  color: #aab5d6;

  font-size: 14px;

  line-height: 1.6;

  margin-bottom: 15px;
}

.solution-card strong {
  color: #ffd54a;

  font-size: 14px;
}

.solution-card span {
  color: #fff;

  font-size: 14px;
}

.solutions-image {
  position: relative;
}

.solutions-image img {
  width: 100%;
  height: 400px;
  border-radius: 35px;

  position: relative;

  z-index: 2;

  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.image-glow {
  position: absolute;

  width: 450px;

  height: 450px;

  background: radial-gradient(rgba(0, 229, 255, 0.35), transparent 70%);

  filter: blur(80px);

  top: 20%;

  left: 20%;
}

.floating-card {
  position: absolute;

  bottom: 40px;

  left: -40px;

  z-index: 5;

  display: flex;

  gap: 15px;

  padding: 20px 25px;

  background: rgba(10, 18, 40, 0.85);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 20px;

  backdrop-filter: blur(20px);
}

.floating-card i {
  color: #ffd54a;

  font-size: 30px;
}

.floating-card h4 {
  color: #fff;

  margin-bottom: 5px;
}

.floating-card p {
  color: #aab5d6;

  font-size: 14px;
}

.section-heading {
  max-width: 800px;

  margin-bottom: 60px;
}

.section-heading span {
  color: #ffd54a;

  font-weight: 700;

  font-size: 14px;

  letter-spacing: 2px;
}

.section-heading h2 {
  font-size: 48px;

  line-height: 1.2;

  color: #fff;

  margin: 20px 0;
}

.section-heading h2 span {
  color: #00e5ff;
}

.section-heading p {
  color: #9da8c7;

  font-size: 18px;
}

.center {
  text-align: center;

  margin: auto;
}

.launch-section {
  padding: 120px 0;

  background: linear-gradient(135deg, #050816, #111a35);
}

.steps-wrapper {
  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.steps-wrapper::before {
  content: "";

  position: absolute;

  top: 40px;

  left: 10%;

  right: 10%;

  height: 2px;

  background: linear-gradient(90deg, #ffd54a, #00e5ff);

  opacity: 0.4;
}

.step-card {
  position: relative;

  padding: 35px 25px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 25px;

  backdrop-filter: blur(20px);

  transition: 0.4s;
}

.step-card:hover {
  transform: translateY(-12px);

  border-color: #ffd54a;
}

.step-number {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #ffd54a, #00e5ff);

  color: #050816;

  font-size: 20px;

  font-weight: 800;

  margin-bottom: 25px;

  position: relative;

  z-index: 2;
}

.step-card h3 {
  color: #fff;

  font-size: 20px;

  margin-bottom: 15px;
}

.step-card p {
  color: #aab5d6;

  font-size: 15px;

  line-height: 1.7;
}

.industry-section {
  padding: 120px 0;

  background:
    radial-gradient(circle at top, rgba(0, 229, 255, 0.15), transparent 35%),
    #f4f3ff;
}

.industry-section .section-heading h2 {
  color: #121936;
}

.industry-section .section-heading p {
  color: #667;
}

.industry-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-top: 50px;
}

.industry-card {
  padding: 35px;

  background: white;

  border-radius: 25px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  position: relative;

  overflow: hidden;
}

.industry-card::before {
  content: "";

  position: absolute;

  width: 120px;

  height: 120px;

  right: -40px;

  top: -40px;

  background: radial-gradient(#00e5ff, transparent);

  opacity: 0.25;
}

.industry-card:hover {
  transform: translateY(-10px);
}

.industry-card i {
  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 20px;

  background: linear-gradient(135deg, #ffd54a, #00e5ff);

  font-size: 25px;

  color: #050816;

  margin-bottom: 25px;
}

.industry-card h3 {
  color: #121936;

  font-size: 21px;

  margin-bottom: 15px;
}

.industry-card p {
  color: #59658a;

  line-height: 1.7;

  font-size: 15px;
}

.footer {
  position: relative;

  padding: 90px 0 30px;

  background: linear-gradient(180deg, #050816 0%, #081326 100%);

  overflow: hidden;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  left: -200px;
  bottom: -200px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 229, 255, 0.18), transparent 70%);

  filter: blur(80px);
}

.footer::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  right: -180px;
  top: -180px;

  border-radius: 50%;

  background: radial-gradient(rgba(255, 213, 74, 0.15), transparent 70%);

  filter: blur(90px);
}

.footer-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 50px;
}

.footer-logo {
  display: inline-block;

  font-size: 34px;

  font-weight: 700;

  letter-spacing: 1px;

  color: #fff;

  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-brand p {
  color: var(--paragraph);

  max-width: 350px;

  line-height: 1.8;

  font-size: 16px;
}

.footer-social {
  display: flex;

  gap: 12px;

  margin-top: 30px;
}

.footer-social a {
  width: 45px;

  height: 45px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #fff;

  transition: 0.35s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--primary));

  color: #050816;

  transform: translateY(-5px);
}

.footer-column h3 {
  color: #fff;

  font-size: 20px;

  margin-bottom: 25px;

  position: relative;
}

.footer-column h3::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -10px;

  width: 35px;

  height: 2px;

  background: var(--gold);
}

.footer-column ul {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.footer-column a {
  color: #aab5d6;

  font-size: 15px;

  transition: 0.3s;
}

.footer-column a:hover {
  color: var(--gold);

  padding-left: 8px;
}

.footer-bottom {
  position: relative;

  z-index: 2;

  margin-top: 70px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer-bottom p {
  color: #8f9bb8;

  font-size: 14px;
}

.footer-bottom div {
  display: flex;

  gap: 25px;
}

.footer-bottom a {
  color: #8f9bb8;

  font-size: 14px;

  transition: 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.cta-section {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background: linear-gradient(180deg, #050816, #081326);
}

.cta-glow {
  position: absolute;

  width: 600px;

  height: 600px;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: radial-gradient(rgba(0, 229, 255, 0.18), transparent 70%);

  filter: blur(90px);
}

.cta-section::before {
  content: "";

  position: absolute;

  width: 400px;

  height: 400px;

  left: -150px;

  bottom: -150px;

  border-radius: 50%;

  background: radial-gradient(rgba(255, 213, 74, 0.18), transparent 70%);

  filter: blur(80px);
}

.cta-box {
  position: relative;

  z-index: 2;

  padding: 80px 60px;

  text-align: center;

  border-radius: 35px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(25px);

  overflow: hidden;
}

.cta-box::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );

  opacity: 0.5;
}

.cta-tag {
  display: inline-block;

  padding: 8px 20px;

  border-radius: 50px;

  color: var(--gold);

  font-size: 13px;

  letter-spacing: 1px;

  background: rgba(255, 213, 74, 0.1);

  border: 1px solid rgba(255, 213, 74, 0.2);

  margin-bottom: 25px;
}

.cta-content {
  position: relative;

  z-index: 2;
}

.cta-content h2 {
  color: #fff;

  font-size: 55px;

  line-height: 1.15;

  max-width: 850px;

  margin: 0 auto 25px;
}

.cta-content h2 span {
  color: var(--gold);
}

.cta-content p {
  max-width: 850px;

  margin: auto;

  color: var(--paragraph);

  font-size: 18px;

  line-height: 1.8;
}

.cta-content h3 {
  margin-top: 35px;

  color: #fff;

  font-size: 28px;
}

.cta-content h3 span {
  color: var(--primary);
}

.cta-buttons {
  margin-top: 45px;

  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.cta-buttons i {
  margin-left: 10px;
}

.growth-section {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background: linear-gradient(180deg, #081326, #050816);
}

.growth-bg {
  position: absolute;

  width: 600px;

  height: 600px;

  top: -250px;

  right: -200px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 229, 255, 0.15), transparent 70%);

  filter: blur(90px);
}

.growth-section::after {
  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  bottom: -150px;

  left: -150px;

  border-radius: 50%;

  background: radial-gradient(rgba(255, 213, 74, 0.15), transparent 70%);

  filter: blur(80px);
}

.growth-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 30px;
}

.growth-card {
  position: relative;

  padding: 70px 32px 35px;

  min-height: 260px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 18px 18px 18px 42px;

  overflow: visible;

  transition: 0.35s;

  backdrop-filter: blur(18px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.growth-card::before {
  display: none;
}

.growth-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255, 213, 74, 0.45);

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(0, 229, 255, 0.12);
}

.growth-icon {
  position: absolute;

  left: 28px;

  top: -28px;

  width: 68px;

  height: 68px;

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  color: #fff;

  background: linear-gradient(135deg, #8b5cf6, #6d28d9);

  border: 4px solid #081326;

  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.45);
}

.growth-icon i {
  transform: scale(0.95);
}

.growth-card h3 {
  font-size: 24px;

  color: #fff;

  margin-bottom: 18px;

  line-height: 1.2;

  font-weight: 700;
}

.growth-card p {
  color: var(--paragraph);

  font-size: 15px;

  line-height: 1.8;
}
.growth-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  pointer-events: none;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.06),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 229, 255, 0.06),
      transparent 35%
    );
}

/*======================================
        OPERATOR SECTION
=======================================*/

.operator-section {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background: linear-gradient(180deg, #050816, #081326);
}

.operator-glow {
  position: absolute;

  width: 550px;

  height: 550px;

  left: -200px;

  top: 100px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 229, 255, 0.18), transparent 70%);

  filter: blur(90px);
}

.operator-wrapper {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: center;
}

.operator-visual {
  display: flex;

  justify-content: center;
}

.operator-image-box {
  position: relative;

  max-width: 480px;
}

.operator-image-box img {
  width: 100%;
  height: 650px;
  border-radius: 35px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.operator-image-box::before {
  content: "";

  position: absolute;

  inset: -30px;

  border-radius: 50px;

  background: linear-gradient(
    135deg,
    rgba(255, 213, 74, 0.25),
    rgba(0, 229, 255, 0.25)
  );

  filter: blur(50px);

  z-index: -1;
}

.floating-box {
  position: absolute;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 18px;

  background: rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 18px;

  color: #fff;

  font-size: 14px;

  font-weight: 600;

  animation: floating 4s ease-in-out infinite;
}

.floating-box i {
  color: var(--gold);

  font-size: 22px;
}

.box-one {
  top: 40px;

  left: -40px;
}

.box-two {
  right: -40px;

  top: 45%;
}

.box-three {
  bottom: 40px;

  left: 20px;
}

@keyframes floating {
  50% {
    transform: translateY(-12px);
  }
}

.section-title.left {
  text-align: left;

  margin: 0 0 40px;
}

.section-title.left h2 {
  text-align: left;
}

.operator-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.operator-card {
  display: flex;

  gap: 18px;

  padding: 22px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s;
}

.operator-card:hover {
  transform: translateY(-8px);

  border-color: var(--gold);
}

.operator-card > i {
  width: 55px;

  height: 55px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(135deg, var(--gold), var(--primary));

  color: #050816;

  font-size: 22px;
}

.operator-card h3 {
  color: #fff;

  font-size: 18px;

  margin-bottom: 8px;
}

.operator-card p {
  color: var(--paragraph);

  font-size: 14px;

  line-height: 1.6;
}

/*====================================
 CONTACT SECTION
====================================*/

.contact-section {
  padding: 120px 0;

  background:
    radial-gradient(circle at top, rgba(0, 229, 255, 0.15), transparent 35%),
    #f4f3ff;

  position: relative;

  overflow: hidden;
}

.contact-section::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  left: -150px;
  bottom: -150px;

  border-radius: 50%;

  background: radial-gradient(rgba(255, 213, 74, 0.25), transparent 70%);

  filter: blur(80px);
}

.contact-wrapper {
  display: grid;

  grid-template-columns: 1fr 0.9fr;

  gap: 70px;

  align-items: center;
}

.contact-content {
  color: #121936;
}

.contact-content .section-tag {
  background: #fff;

  color: #f59e0b;

  border: 1px solid rgba(255, 213, 74, 0.4);
}

.contact-content h2 {
  font-size: 52px;

  line-height: 1.15;

  margin: 20px 0;
}

.contact-content h2 span {
  color: #00bcd4;
}

.contact-content p {
  font-size: 18px;

  line-height: 1.8;

  color: #59658a;

  max-width: 600px;
}

.contact-box {
  margin-top: 40px;

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.contact-item {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 20px;

  background: #fff;

  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item i {
  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(135deg, #ffd54a, #00e5ff);

  color: #050816;

  font-size: 22px;
}

.contact-item h4 {
  margin-bottom: 5px;

  color: #121936;
}

.contact-item span {
  color: #667;
}

.contact-trust {
  margin-top: 35px;

  display: flex;

  gap: 20px;
}

.contact-trust div {
  background: #fff;

  padding: 20px;

  border-radius: 18px;

  text-align: center;

  min-width: 110px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-trust strong {
  display: block;

  font-size: 28px;

  color: #f59e0b;
}

.contact-trust span {
  font-size: 14px;

  color: #59658a;
}

.contact-form {
  background: rgba(255, 255, 255, 0.75);

  padding: 45px;

  border-radius: 35px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

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

.form-group label {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;

  font-weight: 600;

  color: #121936;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 16px 18px;

  border-radius: 15px;

  border: 1px solid #ddd;

  outline: none;

  font-family: inherit;

  font-size: 15px;

  background: white;

  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00e5ff;

  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.15);
}

textarea {
  height: 130px;

  resize: none;
}

.contact-form button {
  width: 100%;

  border: none;

  cursor: pointer;

  gap: 10px;
}

.form-notice {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-notice.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/*======================================
  RESPONSIVE - PART 1 (1400px → 992px)
=======================================*/

/* ================= 1400px ================= */

@media (max-width: 1400px) {
  .hero-content h1 {
    font-size: 64px;
  }
}

/* ================= 1200px ================= */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content p {
    max-width: 520px;
  }

  .prev {
    left: 20px;
  }

  .next {
    right: 20px;
  }
}

/* ================= 1100px ================= */

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

  .operator-visual {
    order: 2;
  }

  .operator-content {
    order: 1;
  }

  .operator-image-box {
    max-width: 600px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-image {
    max-width: 700px;
    margin: auto;
  }

  .comparison-wrapper {
    gap: 30px;
  }

  .comparison-card {
    padding: 35px;
  }

  .card-header h3 {
    font-size: 22px;
  }

  .comparison-card li {
    font-size: 15px;
  }

  .vs-circle {
    width: 75px;
    height: 75px;
    font-size: 20px;
  }
}

/* ================= 1000px ================= */

@media (max-width: 1000px) {
  .growth-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 22px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .steps-wrapper::before {
    display: none;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================= 992px ================= */

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content p {
    margin: auto;
  }

  .contact-box {
    max-width: 600px;
    margin: 40px auto;
  }

  .contact-trust {
    justify-content: center;
  }

  .ecosystem-banner {
    flex-direction: column;
    text-align: center;
  }

  .ecosystem-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .visual-card {
    height: 450px;
  }

  .technology-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 38px;
  }

  .trust-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*======================================
  RESPONSIVE - PART 2 (991px → 700px)
=======================================*/

/* ================= 991px ================= */

@media (max-width: 991px) {
  .header .container {
    height: 75px;
  }

  .hero {
    text-align: center;
  }

  .hero .container {
    justify-content: center;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .prev,
  .next {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .desktop-btn {
    display: none;
  }

  .mobile-btn {
    display: inline-flex;
    margin-top: 30px;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #081326;
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
    z-index: 999;
  }

  .navbar.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 30px;
  }

  .nav-links li a {
    font-size: 18px;
  }
}

/* ================= 900px ================= */

@media (max-width: 900px) {
  .operations {
    padding: 90px 0;
  }

  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 50px;
  }

  .comparison-card {
    padding: 35px 30px;
  }

  .vs-circle {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    order: 2;
  }

  .traditional {
    order: 1;
  }

  .betlogic {
    order: 3;
  }
}

/* ================= 768px ================= */

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-tag {
    font-size: 13px;
    padding: 8px 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
  }

  .prev,
  .next {
    display: none;
  }

  .dots {
    bottom: 25px;
  }

  .cta-section {
    padding: 90px 0;
  }

  .cta-box {
    padding: 55px 25px;
    border-radius: 25px;
  }

  .cta-content h2 {
    font-size: 38px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-content h3 {
    font-size: 22px;
  }
}

/* ================= 700px ================= */

@media (max-width: 700px) {
  .operator-section {
    padding: 80px 0;
  }

  .operator-grid {
    grid-template-columns: 1fr;
  }

  .floating-box {
    transform: scale(0.85);
  }

  .box-one {
    left: -20px;
  }

  .box-two {
    right: -20px;
  }

  .solutions-section {
    padding: 80px 0;
  }

  .solutions-content h2 {
    font-size: 34px;
  }

  .solution-cards {
    grid-template-columns: 1fr;
  }

  .solution-card {
    flex-direction: column;
  }

  .floating-card {
    left: 15px;
    bottom: 20px;
  }

  .solutions-image img {
    height: 450px;
  }
}

/*======================================
  RESPONSIVE - PART 3 (650px → 380px)
=======================================*/

/* ================= 650px ================= */

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

  .growth-card {
    padding: 28px;
  }

  .growth-card h3 {
    margin-top: 50px;
  }
}

/* ================= 600px ================= */

@media (max-width: 600px) {
  /* Contact */
  .contact-section {
    padding: 80px 0;
  }

  .contact-content h2 {
    font-size: 34px;
  }

  .contact-content p {
    font-size: 16px;
  }

  .contact-form {
    padding: 25px;
    border-radius: 25px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-trust {
    flex-direction: column;
  }

  .contact-trust div {
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 70px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Launch & Industry */
  .section-heading h2 {
    font-size: 34px;
  }

  .launch-section,
  .industry-section {
    padding: 80px 0;
  }

  .steps-wrapper,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 30px 22px;
  }

  .industry-card {
    padding: 28px;
  }

  /* Operations */
  .operations {
    padding: 70px 0;
  }

  .comparison-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .card-header {
    gap: 15px;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .header-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    font-size: 25px;
  }

  .card-header h3 {
    font-size: 20px;
  }

  .card-header span {
    font-size: 13px;
  }

  .comparison-card ul {
    gap: 18px;
  }

  .comparison-card li {
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    align-items: flex-start;
  }

  .comparison-card li i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .vs-circle {
    width: 65px;
    height: 65px;
    font-size: 18px;
  }

  .operations-footer {
    margin-top: 50px;
    padding: 0 15px;
  }

  .operations-footer h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  /* Ecosystem */
  .ecosystem {
    padding: 80px 0;
  }

  .ecosystem-banner {
    padding: 35px;
  }

  .banner-content h3 {
    font-size: 32px;
  }

  .banner-image img {
    width: 280px;
  }

  .ecosystem-cards {
    grid-template-columns: 1fr;
  }

  /* Why Betlogic */
  .why-betlogic {
    padding: 80px 0;
  }

  .visual-card {
    height: 380px;
  }

  .visual-content {
    left: 25px;
    bottom: 25px;
  }

  .visual-content h3 {
    font-size: 28px;
  }

  .benefit {
    flex-direction: column;
  }

  /* Technology */
  .technology {
    padding: 80px 0;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .card-image {
    height: 220px;
  }
}

/* ================= 576px ================= */

@media (max-width: 576px) {
  .container {
    width: 92%;
  }

  .logo {
    font-size: 24px;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-tag {
    font-size: 12px;
    letter-spacing: 0;
  }

  .primary-btn,
  .secondary-btn {
    font-size: 15px;
    padding: 15px;
  }

  .dots {
    gap: 10px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .dot.active {
    width: 32px;
  }

  .trust {
    padding: 50px 0;
  }

  .trust-wrapper {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
  }
}

/* ================= 480px ================= */

@media (max-width: 480px) {
  .section-title.left,
  .section-title.left h2 {
    text-align: center;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ================= 380px ================= */

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    gap: 12px;
  }
}
