/* =====================================================
   RESET
===================================================== */

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

:root {
  --black: #050505;
  --black-soft: #09090b;
  --card: #0d0d10;
  --card-light: #121216;

  --white: #ffffff;
  --text: #eeeeef;

  --muted: #8b8b94;
  --muted-dark: #5f5f68;

  --border: #222227;

  --purple: #8b5cf6;
  --purple-light: #a78bfa;

  --orange: #f97316;
  --green: #22c55e;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  background: var(--black);

  color: var(--text);

  font-family: "Inter", sans-serif;

  line-height: 1.6;

  overflow-x: hidden;
}

a {
  color: inherit;

  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1160px, 92%);

  margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

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

  background:
    rgba(5, 5, 5, 0.78);

  backdrop-filter: blur(20px);
}

.navbar {
  height: 76px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.brand {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;

  display: flex;

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

  border-radius: 10px;

  background: white;

  color: black;

  font-size: 17px;

  font-weight: 900;
}

.brand-name {
  font-size: 16px;

  letter-spacing: 2px;
}

.desktop-nav {
  display: flex;

  align-items: center;

  gap: 32px;

  margin-left: 70px;
}

.desktop-nav a {
  color: #85858e;

  font-size: 13px;

  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: white;
}

.nav-actions {
  display: flex;

  align-items: center;

  gap: 20px;
}

.login-link {
  color: #9999a1;

  font-size: 13px;

  transition: 0.2s;
}

.login-link:hover {
  color: white;
}

.nav-button {
  padding: 10px 18px;

  border-radius: 9px;

  background: white;

  color: black;

  font-size: 12px;

  font-weight: 700;

  transition: 0.25s;
}

.nav-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 30px rgba(255, 255, 255, 0.1);
}


/* MOBILE BUTTON */

.menu-button {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid #27272c;

  border-radius: 10px;

  background: #0c0c0f;

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 18px;
  height: 2px;

  margin: 4px auto;

  border-radius: 10px;

  background: white;

  transition: 0.25s;
}


/* MOBILE MENU */

.mobile-menu {
  display: none;
}


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

.hero {
  position: relative;

  min-height: 850px;

  padding-top: 150px;

  display: flex;

  align-items: center;

  overflow: hidden;
}

.hero-background {
  position: absolute;

  top: -300px;
  left: 50%;

  width: 900px;
  height: 650px;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(124, 58, 237, 0.16),
      transparent 65%
    );

  pointer-events: none;
}

.hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 0.9fr;

  align-items: center;

  gap: 90px;
}

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

.eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 7px 12px;

  border:
    1px solid #26262b;

  border-radius: 50px;

  background: #0c0c0e;

  color: #9999a1;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

.live-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 12px rgba(34, 197, 94, 0.8);
}

.hero h1 {
  margin-top: 25px;

  font-size:
    clamp(48px, 6vw, 78px);

  line-height: 1.01;

  letter-spacing: -4px;

  font-weight: 900;
}

.hero h1 span {
  display: block;

  background:
    linear-gradient(
      100deg,
      #fff,
      #a78bfa,
      #f97316
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

.hero-text {
  max-width: 570px;

  margin-top: 25px;

  color: #85858e;

  font-size: 16px;

  line-height: 1.8;
}

.hero-actions {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 35px;
}

.primary-button,
.outline-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  min-height: 48px;

  padding: 0 20px;

  border-radius: 10px;

  font-size: 12px;

  font-weight: 700;

  transition: 0.25s ease;
}

.primary-button {
  background: white;

  color: black;
}

.primary-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 35px
    rgba(255, 255, 255, 0.12);
}

.primary-button span {
  font-size: 17px;
}

.outline-button {
  border:
    1px solid #2b2b31;

  color: #a1a1a9;

  background: rgba(255,255,255,0.01);
}

.outline-button:hover {
  border-color: #48484f;

  color: white;

  background: #101013;
}

.hero-trust {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 40px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 29px;
  height: 29px;

  display: flex;

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

  margin-left: -6px;

  border:
    2px solid #050505;

  border-radius: 50%;

  background: #1d1d23;

  color: #aaaab2;

  font-size: 9px;

  font-weight: 700;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.hero-trust strong,
.hero-trust small {
  display: block;
}

.hero-trust strong {
  font-size: 11px;
}

.hero-trust small {
  color: #5f5f68;

  font-size: 10px;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {
  position: relative;

  min-height: 500px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.glow {
  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.12;
}

.glow-purple {
  top: 20px;
  right: 20px;

  background: #7c3aed;
}

.glow-orange {
  bottom: 20px;
  left: 20px;

  background: #f97316;
}

.ad-card {
  position: relative;

  width: min(400px, 100%);

  overflow: hidden;

  border:
    1px solid #28282e;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #131317,
      #08080a
    );

  box-shadow:
    0 35px 100px
    rgba(0, 0, 0, 0.7);

  transform:
    rotate(2deg);

  transition: 0.4s ease;
}

.ad-card:hover {
  transform:
    rotate(0deg)
    translateY(-6px);
}

.ad-image {
  position: relative;

  height: 250px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 30% 30%,
      #6d28d9,
      transparent 45%
    ),
    radial-gradient(
      circle at 75% 70%,
      #ea580c,
      transparent 45%
    ),
    #111116;
}

.image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.1),
      transparent 50%
    );
}

.ad-label {
  position: absolute;

  top: 16px;
  left: 16px;

  padding: 6px 9px;

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

  border-radius: 6px;

  background:
    rgba(0,0,0,0.3);

  color: white;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* FAKE PRODUCT */

.fake-product {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;
}

.product-circle {
  position: absolute;

  width: 180px;
  height: 180px;

  border-radius: 50%;

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

  box-shadow:
    0 0 80px
    rgba(255,255,255,0.1);
}

.product-box {
  position: relative;

  width: 130px;
  height: 160px;

  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #aaa
    );

  transform:
    rotate(-10deg);

  box-shadow:
    20px 25px 50px
    rgba(0,0,0,0.4);
}

.product-box::after {
  content: "A";

  position: absolute;

  inset: 0;

  display: flex;

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

  color: #111;

  font-size: 55px;

  font-weight: 900;
}


/* AD CONTENT */

.ad-content {
  padding: 25px;
}

.ad-category {
  color: #a78bfa;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.ad-content h3 {
  max-width: 280px;

  margin-top: 8px;

  font-size: 25px;

  line-height: 1.15;

  letter-spacing: -1px;
}

.ad-content p {
  margin-top: 10px;

  color: #66666f;

  font-size: 12px;
}

.discover-button {
  width: 100%;

  margin-top: 20px;

  padding: 13px;

  border:
    1px solid #29292e;

  border-radius: 9px;

  background: #111114;

  color: white;

  cursor: pointer;

  font-size: 11px;

  font-weight: 700;

  transition: 0.25s;
}

.discover-button:hover {
  background: #19191d;

  border-color: #44444b;
}

.discover-button span {
  margin-left: 8px;
}


/* FLOATING CARDS */

.floating-card {
  position: absolute;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 11px 13px;

  border:
    1px solid #29292e;

  border-radius: 11px;

  background:
    rgba(15, 15, 18, 0.9);

  backdrop-filter: blur(15px);

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

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

.floating-top {
  top: 40px;

  right: -20px;
}

.floating-bottom {
  bottom: 45px;

  left: -25px;

  animation-delay: -2s;
}

@keyframes floating {

  50% {
    transform: translateY(-10px);
  }

}

.floating-icon {
  width: 32px;
  height: 32px;

  display: flex;

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

  border-radius: 8px;

  background: #19191e;

  font-size: 13px;
}

.floating-icon.purple {
  color: #a78bfa;
}

.floating-icon.green {
  color: #4ade80;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: #ddd;

  font-size: 10px;
}

.floating-card small {
  margin-top: 2px;

  color: #606069;

  font-size: 8px;
}


/* =====================================================
   STATS
===================================================== */

.stats {
  border-top:
    1px solid #17171b;

  border-bottom:
    1px solid #17171b;
}

.stats-grid {
  display: grid;

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

.stat-item {
  padding: 30px 20px;

  text-align: center;

  border-right:
    1px solid #17171b;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;

  font-size: 25px;

  letter-spacing: -1px;
}

.stat-item span {
  color: #5f5f68;

  font-size: 10px;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
  padding: 130px 0;
}

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

  margin-bottom: 55px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-tag {
  margin-bottom: 13px;

  color: #777780;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 2px;
}

.section-heading h2 {
  font-size:
    clamp(38px, 5vw, 58px);

  line-height: 1.05;

  letter-spacing: -3px;
}

.section-heading h2 span {
  background:
    linear-gradient(
      90deg,
      #a78bfa,
      #f97316
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

.section-heading p {
  margin-top: 17px;

  color: #66666f;

  font-size: 13px;

  line-height: 1.8;
}


/* =====================================================
   CAMPAIGNS
===================================================== */

.campaign-grid {
  display: grid;

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

  gap: 18px;
}

.campaign-card {
  overflow: hidden;

  border:
    1px solid #1e1e23;

  border-radius: 17px;

  background: #0a0a0d;

  transition: 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-6px);

  border-color: #303037;
}

.campaign-image {
  position: relative;

  height: 230px;

  overflow: hidden;
}

.image-one {
  background:
    radial-gradient(
      circle at 30% 30%,
      #7c3aed,
      transparent 45%
    ),
    #15111d;
}

.image-two {
  background:
    radial-gradient(
      circle at 70% 30%,
      #2563eb,
      transparent 45%
    ),
    #0e1520;
}

.image-three {
  background:
    radial-gradient(
      circle at 50% 70%,
      #ea580c,
      transparent 45%
    ),
    #1b120d;
}

.campaign-badge {
  position: absolute;

  top: 14px;
  left: 14px;

  z-index: 3;

  padding: 6px 8px;

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

  border-radius: 5px;

  background:
    rgba(0,0,0,0.35);

  color: white;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1px;
}

.abstract-shape {
  position: absolute;

  width: 170px;
  height: 170px;

  border-radius: 50%;

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

  filter: blur(1px);
}

.shape-one {
  top: 40px;
  left: 80px;

  box-shadow:
    40px 20px 60px
    rgba(124,58,237,0.5);
}

.shape-two {
  top: 30px;
  left: 90px;

  box-shadow:
    -30px 30px 70px
    rgba(37,99,235,0.5);
}

.shape-three {
  top: 40px;
  left: 85px;

  box-shadow:
    30px 30px 70px
    rgba(234,88,12,0.5);
}

.campaign-content {
  padding: 23px;
}

.category {
  color: #777780;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.campaign-content h3 {
  margin-top: 8px;

  font-size: 19px;

  line-height: 1.2;

  letter-spacing: -0.5px;
}

.campaign-content p {
  margin-top: 9px;

  color: #62626b;

  font-size: 11px;

  line-height: 1.7;
}

.campaign-content a {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-top: 18px;

  color: white;

  font-size: 10px;

  font-weight: 700;
}

.campaign-content a span {
  font-size: 15px;
}


/* =====================================================
   FEATURES
===================================================== */

.features {
  border-top:
    1px solid #151519;

  border-bottom:
    1px solid #151519;
}

.features-grid {
  display: grid;

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

  gap: 14px;
}

.feature {
  padding: 28px;

  border:
    1px solid #1d1d22;

  border-radius: 15px;

  background: #09090c;
}

.feature-icon {
  width: 42px;
  height: 42px;

  display: flex;

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

  margin-bottom: 22px;

  border-radius: 10px;

  background: #16161b;

  color: #a78bfa;

  font-size: 16px;
}

.feature:nth-child(2) .feature-icon {
  color: #60a5fa;
}

.feature:nth-child(3) .feature-icon {
  color: #4ade80;
}

.feature:nth-child(4) .feature-icon {
  color: #fb923c;
}

.feature h3 {
  font-size: 16px;
}

.feature p {
  margin-top: 10px;

  color: #62626b;

  font-size: 11px;

  line-height: 1.8;
}


/* =====================================================
   BUSINESS
===================================================== */

.business-section {
  padding: 120px 0;
}

.business-box {
  position: relative;

  min-height: 480px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 1fr 0.8fr;

  align-items: center;

  gap: 50px;

  padding: 70px;

  border:
    1px solid #29292f;

  border-radius: 25px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(124,58,237,0.15),
      transparent 40%
    ),
    #0b0b0e;
}

.business-glow {
  position: absolute;

  width: 300px;
  height: 300px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background: #f97316;

  filter: blur(130px);

  opacity: 0.08;
}

.business-content {
  position: relative;

  z-index: 2;
}

.business-content h2 {
  font-size:
    clamp(38px, 5vw, 58px);

  line-height: 1.05;

  letter-spacing: -3px;
}

.business-content h2 span {
  color: #888891;
}

.business-content p {
  max-width: 500px;

  margin: 20px 0 28px;

  color: #676770;

  font-size: 13px;

  line-height: 1.8;
}


/* DASHBOARD CARD */

.business-visual {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;
}

.dashboard-card {
  width: 300px;

  padding: 22px;

  border:
    1px solid #29292f;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #15151a,
      #09090c
    );

  box-shadow:
    0 30px 70px
    rgba(0,0,0,0.5);

  transform: rotate(4deg);
}

.dashboard-header {
  display: flex;

  justify-content: space-between;

  color: #6d6d76;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;
}

.dashboard-header b {
  color: #4ade80;

  font-size: 8px;
}

.dashboard-number {
  margin-top: 30px;

  font-size: 42px;

  font-weight: 800;

  letter-spacing: -2px;
}

.dashboard-card > small {
  color: #5d5d65;

  font-size: 9px;
}

.mini-chart {
  height: 80px;

  margin-top: 25px;

  display: flex;

  align-items: end;

  gap: 6px;

  border-bottom:
    1px solid #232329;
}

.mini-chart i {
  flex: 1;

  border-radius:
    3px 3px 0 0;

  background:
    linear-gradient(
      to top,
      #5b21b6,
      #a78bfa
    );
}

.mini-chart i:nth-child(1) {
  height: 30%;
}

.mini-chart i:nth-child(2) {
  height: 50%;
}

.mini-chart i:nth-child(3) {
  height: 42%;
}

.mini-chart i:nth-child(4) {
  height: 70%;
}

.mini-chart i:nth-child(5) {
  height: 60%;
}

.mini-chart i:nth-child(6) {
  height: 85%;
}

.mini-chart i:nth-child(7) {
  height: 100%;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
  padding: 130px 0;

  text-align: center;

  background:
    radial-gradient(
      ellipse at center,
      rgba(124,58,237,0.1),
      transparent 55%
    );
}

.final-content {
  max-width: 700px;

  margin: auto;
}

.final-content h2 {
  font-size:
    clamp(42px, 6vw, 68px);

  line-height: 1;

  letter-spacing: -3px;
}

.final-content h2 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      #a78bfa,
      #fb923c
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

.final-content p {
  max-width: 500px;

  margin: 20px auto 30px;

  color: #686870;

  font-size: 13px;
}

.final-buttons {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
  border-top:
    1px solid #17171b;
}

.footer-main {
  padding: 65px 0;

  display: grid;

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

  gap: 50px;
}

.footer-brand p {
  margin-top: 12px;

  color: #56565e;

  font-size: 10px;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 11px;
}

.footer-column h4 {
  margin-bottom: 5px;

  color: #d5d5d9;

  font-size: 10px;

  letter-spacing: 0.5px;
}

.footer-column a {
  color: #5e5e67;

  font-size: 10px;

  transition: 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding: 20px 0;

  display: flex;

  justify-content: space-between;

  border-top:
    1px solid #17171b;

  color: #45454d;

  font-size: 9px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  .desktop-nav {
    margin-left: 20px;

    gap: 20px;
  }

  .hero-grid {
    gap: 50px;
  }

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

  .business-box {
    padding: 50px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .navbar {
    height: 68px;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: absolute;

    top: 68px;
    left: 4%;

    width: 92%;

    padding: 12px;

    display: none;

    flex-direction: column;

    gap: 4px;

    border:
      1px solid #25252a;

    border-radius: 14px;

    background:
      rgba(12,12,15,0.98);

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

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    padding: 13px;

    border-radius: 8px;

    color: #9a9aa2;

    font-size: 12px;
  }

  .mobile-menu a:hover {
    background: #17171b;

    color: white;
  }

  .mobile-menu .mobile-cta {
    margin-top: 5px;

    background: white;

    color: black;

    text-align: center;

    font-weight: 700;
  }

  .hero {
    min-height: auto;

    padding-top: 120px;

    padding-bottom: 90px;
  }

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

    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 51px;

    letter-spacing: -2.8px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;

    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;

    max-width: 400px;

    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .primary-button,
  .hero-actions .outline-button {
    width: 100%;
  }

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

  .hero-visual {
    min-height: 480px;

    margin-top: 10px;
  }

  .ad-card {
    width: min(390px, 90%);

    transform: none;
  }

  .floating-top {
    top: 20px;

    right: 0;
  }

  .floating-bottom {
    bottom: 20px;

    left: 0;
  }

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

  .stat-item {
    padding: 25px 10px;
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n+2) {
    border-bottom:
      1px solid #17171b;
  }

  .section {
    padding: 90px 0;
  }

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

    letter-spacing: -2px;
  }

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

  .campaign-image {
    height: 250px;
  }

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

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

  .business-box {
    grid-template-columns: 1fr;

    padding: 45px 25px;

    text-align: center;
  }

  .business-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .business-content .primary-button {
    width: 100%;

    max-width: 350px;
  }

  .business-visual {
    margin-top: 20px;
  }

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

  .final-content h2 {
    font-size: 45px;

    letter-spacing: -2px;
  }

  .final-buttons {
    flex-direction: column;

    max-width: 380px;

    margin: auto;
  }

  .final-buttons a {
    width: 100%;
  }

  .footer-main {
    grid-template-columns:
      1fr 1fr;

    gap: 40px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .container {
    width: 90%;
  }

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

  .hero h1 {
    font-size: 43px;

    letter-spacing: -2.2px;
  }

  .hero-text {
    font-size: 13px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .ad-card {
    width: 100%;
  }

  .ad-image {
    height: 210px;
  }

  .ad-content h3 {
    font-size: 21px;
  }

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

  .floating-top {
    right: -12px;
  }

  .floating-bottom {
    left: -12px;
  }

  .stat-item strong {
    font-size: 21px;
  }

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

  .campaign-image {
    height: 210px;
  }

  .business-content h2 {
    font-size: 39px;

    letter-spacing: -2px;
  }

  .dashboard-card {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 8px;
  }

}