/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #020617, #0f172a);
  color: #1e293b;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =============================== */
/*          HEADER PREMIUM        */
/* =============================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  padding: 16px 0;

  /* Glass dark background */
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(148,163,184,0.1);

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  color: #f8fafc;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

/* MENU */
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

/* LINK */
nav a {
  text-decoration: none;
  color: #cbd5f5;
  font-weight: 500;
  font-size: 15px;

  position: relative;
  transition: 0.25s;
}

/* Hover text */
nav a:hover {
  color: #ffffff;
}

/* Underline animation (premium feel) */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;

  background: #7c3aed;

  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* =============================== */
/*        HAMBURGER PREMIUM       */
/* =============================== */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================== */
/*            MOBILE              */
/* =============================== */

@media(max-width: 768px){

  .hamburger {
    display: flex;
  }

  /* NAV CONTAINER */
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;

    /* PREMIUM GLASS */
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);

    /* REMOVE LINE ISSUE */
    border-top: none;

    /* smooth open */
    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-10px);

    transition: all 0.35s ease;
  }

  /* ACTIVE MENU */
  nav.active {
    max-height: 350px;
    padding: 20px 0;

    opacity: 1;
    transform: translateY(0);
  }

  /* MENU LIST */
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  /* LINKS */
  nav a {
    font-size: 16px;
    color: #e2e8f0;
    transition: 0.25s;
  }

  nav a:hover {
    color: #a78bfa;
  }

}

/* =============================== */
/*          HERO PREMIUM          */
/* =============================== */

.hero {
  position: relative;
  padding: 160px 20px 80px;

  text-align: center;
  color: white;

  /* Dark gradient base */
  background: linear-gradient(to bottom, #020617, #0f172a);

  overflow: hidden;
}

/* Glow effect background */
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);

  width: 600px;
  height: 600px;

  background: radial-gradient(circle, rgba(124,58,237,0.4), transparent 70%);
  filter: blur(120px);

  z-index: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
}

/* TITLE */
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;

  color: #f8fafc;
}

/* SUBTEXT */
.hero p {
  font-size: 18px;
  color: #cbd5f5;
  margin-bottom: 30px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 32px;

  border-radius: 999px;

  background: #7c3aed;
  color: white;

  font-weight: 600;
  text-decoration: none;

  border: 1px solid rgba(124,58,237,0.4);

  box-shadow: 0 10px 30px rgba(124,58,237,0.4);

  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(124,58,237,0.6);
}

/* =============================== */
/*          HERO MOBILE FIX       */
/* =============================== */

@media (max-width:768px){

  .hero {
    padding: 130px 20px 60px;
  }

  .hero h1 {
    font-size: 32px;   /* 🔥 kecilkan */
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

}

/* ===================================== */
/*        STARBOSS SECTION               */
/* ===================================== */

.starboss-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f3f0ff, #e9e6f2);
}

.starboss-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #1e293b;
}

.starboss-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CARD STYLE */
.starboss-card {
  background: white;
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.07);
  margin-bottom: 60px;
}

.starboss-card h3 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #7c3aed;
}

.starboss-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
}

/* KEKUATAN GRID */
.starboss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.starboss-item {
  background: #f3f0ff;
  padding: 18px;
  border-radius: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.starboss-item:hover {
  background: #ede9fe;
  transform: translateY(-3px);
}

.highlight-item {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  font-weight: 600;
}

/* MANFAAT */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-box {
  background: #f8f7ff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.benefit-box span {
  font-size: 32px;
  display: block;
  margin-bottom: 15px;
}

.benefit-box h4 {
  margin-bottom: 10px;
  color: #7c3aed;
}

.benefit-box p {
  font-size: 16px;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* CONCLUSION STYLE */
.conclusion-card {
  border: 3px solid #7c3aed;
  background: #faf9ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .starboss-title {
    font-size: 28px;
  }

  .starboss-card {
    padding: 40px 25px;
  }

  .starboss-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

}


/* ===== PLAN SECTION ===== */
.plans {
  padding: 120px 0;
  background: #e9e6f2;
  text-align: center;
}

.plan-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
}

/* GRID */
.plan-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* CARD */
.plan-card {
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
}

/* HEADER */
.plan-header {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  padding: 30px;
  font-size: 24px;
  font-weight: 600;
}

/* BODY */
.plan-body {
  flex: 1;              /* ini penting untuk stretch */
  padding: 35px 25px;
  background: #f2f2f2;
}

.plan-body h3 {
  color: #7c3aed;
  margin-bottom: 25px;
  font-size: 22px;
}

.plan-body p {
  margin: 12px 0;
  color: #475569;
  font-weight: 500;
}

/* PRICE */
.price-tag {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: #ffd700;
  font-weight: 700;
  padding: 20px;
  font-size: 20px;
}

/* FEATURED */
.featured {
  border: 2px solid #9333ea;
}

/* BEST RIBBON */
.badge {
  position: absolute;
  top: 15px;
  right: -45px;
  background: #ff007f;
  color: white;
  padding: 6px 50px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

/* ===== SIM SECTION ===== */
.sim-section {
  padding: 120px 0;
  background: #f3f0ff;
}

.sim-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.sim-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;   /* ini paling penting */
}

.sim-card {
  position: relative;
  display: inline-block;
}

.sim-card img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== BUY BUTTON ===== */

.sim-buy-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 45px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border-radius: 50px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  box-shadow: 0 15px 35px rgba(124,58,237,0.3);
  transition: 0.3s ease;
}

.sim-buy-btn:hover {
  transform: translateY(-4px);
}


/* Price Badge */
.price-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #ff0000;
  color: white;
  padding: 15px 20px;
  font-weight: 700;
  border-radius: 12px;
  transform: rotate(-15deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* RIGHT */
.sim-right {
  flex: 1;
}

.sim-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1e293b;
}

/* Benefit List */
.sim-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sim-list li {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
  color: #334155;
  position: relative;
  padding-left: 35px;
}

/* Check Icon */
.sim-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  font-size: 14px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.sim-list .highlight {
  color: #7c3aed;
  font-weight: 700;
}

/* CTA */
.sim-cta {
  margin-top: 50px;
  font-size: 28px;
  font-weight: 600;
}

.sim-cta span {
  color: #7c3aed;
  font-weight: 800;
  text-decoration: underline;
}

/* Responsive */
@media(max-width: 768px){

  .sim-section {
    padding: 80px 20px;
  }

  .sim-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .sim-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 30px;
  }

  .sim-list {
    width: 100%;
  }

  .sim-list li {
    font-size: 16px;
    padding-left: 40px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .sim-list li::before {
    width: 24px;
    height: 24px;
    font-size: 13px;
    left: 0;
    top: 3px;
  }

  .sim-list .highlight {
    font-size: 17px;
    text-align: left;
  }

  .sim-cta {
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
  }

  .sim-card img {
    width: 260px;
  }

  .price-badge {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* ===== DIFFERENCE SECTION ===== */
.difference-section {
  padding: 120px 0;
  background: #f3f0ff;
  text-align: center;
}

.difference-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #1e293b;
}

/* Layout */
.difference-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* Main Plan */
.main-plan {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  color: white;
  padding: 60px 40px;
  border-radius: 30px;
  width: 320px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-plan h3 {
  font-size: 48px;
  margin-bottom: 30px;
}

.main-plan p {
  margin: 12px 0;
  font-size: 18px;
  font-weight: 500;
}

/* VS */
.vs-text {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

/* Competitor Grid */
.competitor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.competitor-card {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.competitor-card:hover {
  transform: translateY(-6px);
}

.competitor-card p {
  margin: 10px 0;
  font-size: 18px;
  color: #334155;
}

.competitor-card span {
  display: block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  color: #7c3aed;
}

/* Responsive */
@media(max-width: 992px){

  .difference-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .vs-text {
    display: none;
  }

  .difference-title {
    font-size: 30px;
  }

  .main-plan {
    width: 100%;
  }

  .competitor-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 120px 0;
  background: #f3f0ff;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #7c3aed;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 22px;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
}

.faq-answer p {
  padding: 20px 25px;
  color: #334155;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsive */
@media(max-width:768px){
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
  }
}



/* ============================= */
/*      TESTIMONI PREMIUM       */
/* ============================= */

.testimoni-section {
  padding: 120px 0;
  background: #f3f0ff;
  text-align: center;
}

.testimoni-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
}

/* ============================= */
/*          SLIDER              */
/* ============================= */

.testimoni-slider {
  position: relative;
  max-width: 750px;
  margin: auto;
  overflow: hidden;
}

.testimoni-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimoni-item {
  min-width: 100%;
  background: white;
  padding: 70px 50px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  position: relative;
}

/* ============================= */
/*        PROFILE IMAGE         */
/* ============================= */

.testimoni-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 25px auto;
  display: block;
  border: 5px solid #7c3aed;
}

/* ============================= */
/*         TEXT STYLE           */
/* ============================= */

.testimoni-text {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 25px;
  color: #334155;
  line-height: 1.6;
}

.rating {
  color: #facc15;
  font-size: 22px;
  margin-bottom: 20px;
}

.testimoni-item h4 {
  color: #7c3aed;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}

.testimoni-item span {
  font-size: 14px;
  color: #64748b;
}

/* ============================= */
/*         NAV BUTTONS          */
/* ============================= */

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border: none;
  color: white;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 10;
}

/* Duduk kemas dalam card */
.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.prev-btn:hover,
.next-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ============================= */
/*            DOTS              */
/* ============================= */

.dots {
  margin-top: 30px;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #c084fc;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.3s;
}

.dots span.active {
  opacity: 1;
  background: #7c3aed;
  transform: scale(1.2);
}

/* ============================= */
/*          RESPONSIVE          */
/* ============================= */

@media (max-width: 768px) {

  .testimoni-section {
    padding: 80px 20px;
  }

  .testimoni-title {
    font-size: 28px;
  }

  .testimoni-item {
    padding: 40px 25px;
  }

  .testimoni-text {
    font-size: 16px;
  }

  .prev-btn,
  .next-btn {
    display: none;
  }

}

/* ===================================== */
/*        SOCIAL MEDIA SECTION           */
/* ===================================== */

.social-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f3f0ff, #e9e6f2);
  text-align: center;
}

.social-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1e293b;
}

.social-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 60px;
}

/* GRID */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.social-card {
  background: white;
  padding: 40px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: #1e293b;
  box-shadow: 0 25px 50px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.1);
}

/* ICON */
.social-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.social-card h4 {
  margin-bottom: 10px;
  font-weight: 700;
}

.social-card span {
  font-size: 14px;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .social-title {
    font-size: 28px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    padding: 30px 20px;
  }
}


/* ===== FEATURED ===== */
.featured {
  transform: scale(1.05);
  border: 3px solid #9333ea;
}

.badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #ff0080;
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 600;
}

/* =============================== */
/*          FOOTER PREMIUM        */
/* =============================== */

footer {
  background: #020617;
  color: #cbd5f5;

  text-align: center;
  padding: 60px 20px;

  border-top: 1px solid rgba(148,163,184,0.12);

  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}

/* TEXT */
footer p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 15px;
}

/* LINKS */
footer a {
  color: #c4b5fd;
  text-decoration: none;
  transition: 0.25s;
}

footer a:hover {
  color: #ffffff;
}


/* ===== BACKGROUND SECTION ===== */
.background-section {
  padding: 120px 0;
  background: #e6e5eb;
}

.background-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
}

.background-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Box */
.background-box {
  background: white;
  padding: 70px 60px;
  border-radius: 30px;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Gradient Border Effect */
.background-box::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 30px;
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  z-index: -1;
}

/* Text */
.background-box p {
  font-size: 20px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 30px;
}

.background-box strong {
  font-weight: 700;
  color: #000;
}

/* Highlight Quote */
.highlight-quote {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  margin: 40px 0;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media(max-width: 768px){

  .background-title {
    font-size: 28px;
  }

  .background-box {
    padding: 40px 25px;
  }

  .background-box p {
    font-size: 16px;
  }

  .highlight-quote {
    font-size: 24px;
  }
}

/* ===== LICENSE SECTION ===== */
.license-section {
  padding: 120px 0;
  background: #f3f0ff;
  text-align: center;
}

.license-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
}

/* Image */
.license-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.license-image {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.license-image:hover {
  transform: scale(1.02);
}

/* Button */
.license-btn-wrapper {
  margin-top: 30px;
  color: #fff;
}

.license-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid #c084fc;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.license-btn:hover {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  border-color: transparent;
}

/* Responsive */
@media(max-width: 768px){

  .license-title {
    font-size: 28px;
  }

  .license-image {
    max-width: 100%;
  }

  .license-btn {
    font-size: 14px;
    padding: 12px 25px;
  }
}

/* =============================== */
/*        LICENSE SECTION          */
/* =============================== */

.license-section {
  padding: 120px 20px;
  background: linear-gradient(to bottom, #020617, #0f172a);
  text-align: center;
}

/* TITLE */
.license-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #f8fafc;
}

.license-title span {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WRAPPER */
.license-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* CARD */
.license-card {
  flex: 1;
  max-width: 420px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);

  padding: 25px;

  border-radius: 20px;
  border: 1px solid rgba(148,163,184,0.15);

  transition: 0.25s;
}

/* HOVER */
.license-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(124,58,237,0.3);
}

/* IMAGE */
.license-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* BADGE */
.license-badge {
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
}

.license-badge span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #a78bfa;
  margin-top: 4px;
}

/* =============================== */
/*          MOBILE FIX            */
/* =============================== */

@media (max-width:768px){

  .background-title,
  .license-title {
    font-size: 28px;
  }

  .background-box {
    padding: 35px 20px;
  }

  .background-box p {
    font-size: 15px;
  }

  .highlight-quote {
    font-size: 22px;
  }

}