﻿:root {
  --bg: #ffffff;
  --text: #4682B4;
  --muted: #6B6B7A;

  --p1: #3B82F6;
  --p2: #1D4ED8;
  --pSoft: #EFF6FF;
  --pSoft2: #DBEAFE;
  --card: #FFFFFF;
  --line: #ECECF2;
  --shadow: 0 18px 55px rgba(20, 20, 40, .08);
  --shadow2: 0 10px 30px rgba(59, 130, 246, .14);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

body {
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 30%, #bae6fd 60%, #7dd3fc 90%, #38bdf8 100%);
  color: #4682B4;
  font-family: "Prompt", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

h1 {
  color: #4682B4;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/à¸žà¸·à¹‰à¸™à¸«à¸¥à¸±à¸‡canva.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  filter: blur(1px) brightness(0.9);
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Moved backdrop/background to ::before to avoid trapping fixed children */
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6), rgba(240, 230, 255, 0.4));
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.1) rotate(5deg);
}



.brand .brand-name {
  font-size: 18px;
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
  color: #4682B4;
}

.brand p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 16px;
  color: var(--muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.1), transparent);
  transition: left 0.5s;
}

.menu a:hover::before {
  left: 100%;
}

.menu a:hover {
  color: var(--text);
  background: linear-gradient(135deg, var(--pSoft), var(--pSoft2));
  border-color: var(--pSoft2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(109, 40, 217, 0.15);
}

.menu a.active {
  color: var(--p1);
  background: linear-gradient(135deg, var(--pSoft), var(--pSoft2));
  border-color: var(--p2);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.2);
  transform: translateY(-1px);
}

.right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  min-width: 240px;
}

/* icon buttons */
.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9));
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(10px);
}

.icon-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.05), transparent);
  transition: left 0.5s;
}

.icon-btn:hover::before {
  left: 100%;
}

.icon-btn:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.9), rgba(186, 230, 253, 0.8));
}

.badge {
  position: absolute;
  top: -2px;
  right: 0px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: black;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  line-height: 1;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  animation: pulse 2s infinite;
  z-index: 10;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* language dropdown */
.lang {
  position: relative
}

.lang-btn {
  height: 46px;
  padding: 0 12px;
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9));
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  color: #0f52ba;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.lang-btn:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.9), rgba(186, 230, 253, 0.8));
}

.flag {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, .08);
  overflow: hidden;
  display: inline-block;
}

.flag.th {
  background: linear-gradient(#DA291C 0 20%, #fff 20% 35%, #2D2A4A 35% 65%, #fff 65% 80%, #DA291C 80% 100%);
}

.flag.en {
  background-image: url('https://flagcdn.com/w40/gb.png');
  background-size: cover;
  background-position: center;
}

.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #9A9AB0;
  margin-left: 2px;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 52px;
  width: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  padding: 10px;
  display: none;
  backdrop-filter: blur(15px);
}

.lang-menu.open {
  display: block
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  color: #0f52ba;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.lang-item:hover {
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.9), rgba(186, 230, 253, 0.8));
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

/* Page wrapper */
.page {
  padding: 28px 0 8px;
  flex: 1;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.page-hero:before {
  display: none;
}

.hero-content {
  background: linear-gradient(135deg, #93C5FD 0%, #BFDBFE 50%, #DBEAFE 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(102, 126, 234, .25);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
}

.hero-content h1 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -.4px;
  color: #0f52ba;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  position: relative;
  z-index: 2;
}

.hero-content p {
  margin: 0;
  color: rgba(30, 41, 59, .95);
  line-height: 1.8;
  font-size: 15px;
  max-width: 50ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 2;
}

.hero-image {
  background: linear-gradient(135deg, #93C5FD 0%, #BFDBFE 50%, #DBEAFE 100%);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(109, 40, 217, .35);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 100px rgba(59, 130, 246, .5), 0 0 60px rgba(147, 197, 253, .3);
}

.hero-image:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.4)) brightness(1.05) contrast(1.1);
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Hero Button */
.btn-hero {
  background: rgba(255, 255, 255, .95);
  color: var(--p1);
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  margin-top: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.btn-hero:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

/* Hero Meta Stats */
.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
}

.meta-icon {
  font-size: 24px;
  line-height: 1;
}

.meta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-value {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.meta-label {
  font-size: 11px;
  color: #6B6B7A;
  line-height: 1.2;
}

/* Package Card */
.package-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9), rgba(186, 230, 253, 0.8));
  border-radius: 24px;
  padding: 24px 32px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  width: 100%;
  max-width: 700px;
  overflow: hidden;
}

.package-floating-image {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

.package-card:hover {
  border-color: var(--p1);
}

.package-card:before {
  display: none;
}

.package-header {
  padding: 0;
  border: none;
  margin-bottom: 20px;
}

.package-header h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
  color: #0f52ba;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

.package-header p {
  margin: 0;
  font-size: 14px;
  color: rgba(30, 41, 59, .8);
  line-height: 1.4;
}

.package-price {
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  color: #1e293b;
  line-height: 1;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: #6B6B7A;
}

.price-period {
  font-size: 13px;
  color: rgba(30, 41, 59, .75);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}

.package-features {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features li {
  font-size: 14px;
  color: rgba(30, 41, 59, .95);
  line-height: 1.6;
}

.package-features li::marker {
  color: rgba(30, 41, 59, .6);
}

.btn-package {
  background: rgba(255, 255, 255, .95);
  color: var(--p1);
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: 100%;
  justify-content: center;
}

.btn-package:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}

.package-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.3));
}

.section {
  padding: 18px 0
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head>div:first-child {
  flex: 1;
  min-width: 0;
  /* Allow text truncate/wrap if needed */
}

.section-head>div:last-child {
  flex-shrink: 0;
  /* Prevent button squashing */
}

.section-head h2,
.section-head h3 {
  margin: 0;
  font-size: 18px;
  color: #0f52ba;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 70ch
}

/* Cards / grids */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9), rgba(186, 230, 253, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 20px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.plan h4 {
  margin: 0;
  font-size: 16px;
  color: #0f52ba;
}

.plan span {
  font-size: 12px;
  color: rgba(30, 41, 59, .8)
}

.price {
  text-align: right;
  font-weight: 800;
  font-size: 18px;
  color: #1e293b;
  line-height: 1.1
}

.price small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px
}

.features {
  margin: 12px 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(30, 41, 59, .95);
  font-size: 13px
}

.features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--pSoft);
  border: 1px solid var(--pSoft2);
  display: grid;
  place-items: center;
  flex: 0 0 18px;
  margin-top: 1px;
  color: #1e293b;
  font-weight: 900;
  font-size: 12px;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* Buttons */
.btn {
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: .18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
  white-space: nowrap;
  /* Prevent text wrapping */
}

.btn-primary {
  background: linear-gradient(135deg, var(--p1), #9F7AEA);
  color: #1e293b;
  box-shadow: var(--shadow2);
}

.btn-primary:hover {
  transform: translateY(-1px)
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--pSoft2);
  background: var(--pSoft)
}

.btn-outline {
  background: #fff;
  border-color: var(--pSoft2);
  color: var(--p1);
}

.btn-outline:hover {
  background: var(--pSoft)
}

.btn-soft {
  background: var(--pSoft);
  border-color: var(--pSoft2);
  color: #3B2F55;
}

.btn-soft:hover {
  transform: translateY(-1px)
}

.ribbon {
  display: inline-block;
  background: linear-gradient(135deg, var(--p1), #9F7AEA);
  color: #fff !important;
  font-weight: 700;
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(109, 40, 217, .25);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

/* Promo */
.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.promo-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9), rgba(186, 230, 253, 0.8));
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
}

.promo-card:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -140px;
  top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(109, 40, 217, .18), transparent 62%);
}

.promo-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  position: relative;
  color: #0f52ba;
}

.promo-card p {
  margin: 0;
  color: #1e293b;
  line-height: 1.6;
  font-size: 13px;
  position: relative;
}

.promo-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  position: relative
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.review {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9), rgba(186, 230, 253, 0.8));
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 18px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
}

.review .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109, 40, 217, .18), rgba(159, 122, 234, .20));
  border: 1px solid var(--pSoft2);
  display: grid;
  place-items: center;
  color: var(--p1);
  font-weight: 800;
  letter-spacing: .4px;
}

.review .name {
  font-weight: 700;
  margin: 0;
  font-size: 14px;
  color: #1e293b;
}

.review .meta {
  margin: 0;
  color: #1e293b;
  font-size: 12px;
}

.stars {
  color: #1e293b;
  font-size: 13px;
  margin-bottom: 8px;
}

.review .txt {
  margin: 0;
  color: #1e293b;
  font-size: 13px;
  line-height: 1.7;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: 'Kanin', 'Prompt', 'Inter', sans-serif;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9), rgba(186, 230, 253, 0.8));
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  font-family: 'Kanin', 'Prompt', 'Inter', sans-serif;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s;
}

.faq-icon::before {
  content: '+';
}

.faq-item.active .faq-icon::before {
  content: '-';
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: #6B6B7A;
  line-height: 1.6;
}

/* Usage Guide */
#usage-guide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 18px 20px;
  /* Reduced bottom padding */
  box-sizing: border-box;
}

.usage-layout-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.usage-left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usage-right-col {
  flex: 1;
  max-width: 500px;
}

.section-title-row {
  text-align: left;
  /* Left align for desktop side-by-side */
  margin-bottom: 10px;
  /* Reduced gap */
}

.section-title {
  font-size: 2rem;
  margin: 0 0 10px;
  color: #0f52ba;
}

.section-subtitle {
  color: var(--muted);
  margin: 0;
}

.usage-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.usage-nav-btn {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow);
}

.usage-nav-prev {
  margin-right: 20px;
}

.usage-nav-next {
  margin-left: 20px;
}

.usage-phones-container {
  overflow: hidden;
  width: 320px;
}

.usage-phones-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.usage-phone-item {
  flex: 0 0 100%;
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
  transform: scale(0.9);
}

.usage-phone-item.active {
  opacity: 1 !important;
  visibility: visible;
  transform: scale(1);
}

.usage-phone-frame {
  width: 280px;
  height: 570px;
  /* Adjusted to fit the frame image aspect ratio */
  margin: 0 auto;
  position: relative;
  background: transparent;
  box-shadow: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Remove old CSS frame elements */
.usage-phone-frame::before {
  display: none;
}

/* The Phone Frame Image Overlay */
.usage-phone-frame::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/phone-frame.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  /* Let clicks pass through if needed */
  z-index: 2;
  /* On top of screen */
}

.usage-phone-screen {
  position: absolute;
  top: 14px;
  left: 17px;
  width: calc(100% - 34px);
  height: calc(100% - 28px);
  border-radius: 40px;
  object-fit: contain;
  /* Show full image */
  background: transparent;
  /* Use website background */
  z-index: 1;
  /* Behind frame */
  border: none;
}

.usage-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.usage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s;
}

.usage-dot.active {
  background: var(--p1);
}

.usage-content-grid {
  display: flex;
  justify-content: center;
  /* Mobile: default behavior (row, but cards hidden so only 1 shows) */
}

/* Desktop: Show all cards in a vertical stack */
@media (min-width: 681px) {
  .usage-content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .usage-content-card {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    opacity: 0.7;
    /* Dim inactive cards slightly? */
    transform: none !important;
    /* Reset hover transform to simplify list view? Or keep it? */
  }

  .usage-content-card.card-active {
    opacity: 1;
    border-color: var(--p1);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
  }
}

.usage-content-card {
  display: none;
  /* Hidden by default (Mobile / Carousel logic) */
  width: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9), rgba(186, 230, 253, 0.8));
  border: 1px solid rgba(15, 82, 186, 0.3);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-align: left;
  /* Better for list */
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.usage-content-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 82, 186, 0.6);
}

.usage-content-card.visible {
  display: block;
  /* For Mobile/Carousel logic */
}

.usage-content-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f52ba;
  /* Changed to match theme specific blue */
}

.usage-content-card p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch
}

.box {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

/* New Contact Styles */
.section-header {
  margin-bottom: 40px;
}

.section-title-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  text-align: left;

  /* Frame / Card Style */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(224, 242, 254, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.section-title-wrap>div:first-child {
  display: flex;
  flex-direction: column;
}

.section-subtitle {
  font-size: 16px;
  color: #6B6B7A;
  line-height: 1.6;
  margin: 0;
  border-left: 2px solid rgba(59, 130, 246, 0.2);
  padding-left: 24px;
}

@media (max-width: 768px) {
  .section-title-wrap {
    display: flex;
    /* Stack on mobile */
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }

  .section-subtitle {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding-top: 20px;
  }
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-main {
  /* Frame / Card Style */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(15px);
}

.contact-main h3 {
  font-size: 24px;
  color: #0f52ba;
  margin: 0 0 16px;
}

.contact-main p {
  color: #6B6B7A;
  line-height: 1.7;
  margin: 0 0 24px;
}

.contact-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.contact-chip {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: #0f52ba;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-chip::before {
  content: "\2713";
  font-weight: 900;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-meta {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.contact-side {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(15px);
}

.qr-box {
  text-align: center;
  margin-bottom: 20px;
}

.qr-box img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-side-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-side-row:last-child {
  border-bottom: none;
}

.contact-side-label {
  font-weight: 600;
  color: #0f52ba;
}

.contact-side-value {
  color: #6B6B7A;
}

.contact-side small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px
}

label {
  font-size: 12px;
  color: var(--muted)
}

input,
textarea {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: .18s ease;
  background: #fff;
}

input:focus,
textarea:focus {
  border-color: var(--pSoft2);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, .10);
}

textarea {
  min-height: 120px;
  resize: vertical
}

.mini {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 12px 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(224, 242, 254, 0.6), rgba(186, 230, 253, 0.4));
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 -8px 32px rgba(59, 130, 246, 0.15);
  position: relative;
  overflow: hidden;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Left aligned as requested */
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.foot>div:first-child {
  display: flex;
  align-items: center;
  /* Logo inline with text */
  gap: 10px;
}

.foot-logo {
  width: 40px;
  /* Consistent inline logo size */
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.foot strong {
  font-size: 18px;
  color: #0f52ba;
  font-weight: 700;
}

.foot small {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.links a {
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.9));
  color: #0f52ba;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s;
}

.links a:hover::before {
  left: 100%;
}

.links a:hover {
  border-color: var(--p1);
  background: linear-gradient(135deg, var(--pSoft), var(--pSoft2));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
  color: var(--p2);
}

@media (max-width: 680px) {
  /* Media query content removed */

  /* Remove phone frame styling on mobile to show full raw image */
  /* Use the new shared frame implementation but adjust size/ratio if needed */
  .usage-phone-frame {
    width: 260px;
    /* Slightly smaller for mobile */
    height: 530px;
    border-radius: 0;
    aspect-ratio: auto;
  }

  /* Ensure the frame image is visible on mobile too */
  .usage-phone-frame::after {
    display: block;
  }

  .usage-phone-frame::before {
    display: none;
  }

  /* Adjust screen fitting for mobile size */
  .usage-phone-screen {
    top: 13px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 26px);
    border-radius: 36px;
  }

  .usage-phones-container {
    width: 100%;
    /* Full width container */
    max-width: 320px;
  }
}



/* Toast */
.toast {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #11111A;
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
  display: none;
  z-index: 99;
  font-size: 13px;
  max-width: min(560px, calc(100% - 24px));
}

.toast.show {
  display: block
}

/* Cart Popup */
.cart-popup {
  position: fixed;
  top: 70px;
  right: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  padding: 20px;
  display: none;
  z-index: 100;
  max-width: 300px;
  backdrop-filter: blur(15px);
}

.cart-popup h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #0f52ba;
}

.cart-popup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-popup li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  color: #1e293b;
}

/* Mobile */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.9));
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.hamburger:hover {
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.9), rgba(186, 230, 253, 0.8));
  border-color: var(--pSoft2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

/* Benefits */
#benefits {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 18px 70px;
  /* Reduced top padding */
  box-sizing: border-box;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #93C5FD 0%, #BFDBFE 50%, #DBEAFE 100%);
  box-shadow: var(--shadow);
  transition: border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(59, 130, 246, 0.3);
}

.benefit-icon {
  font-size: 30px;
}

.benefit-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #0f52ba;
}

.benefit-content p {
  margin: 0;
  color: #6B6B7A;
  line-height: 1.6;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--p1), var(--p2));
  margin: 0 auto;
  position: relative;
  transition: background 0.3s ease;
}

.hamburger span:before,
.hamburger span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--p1), var(--p2));
  transition: all 0.3s ease;
}

.hamburger span:before {
  top: -7px
}

.hamburger span:after {
  top: 7px
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-side {
    order: -1;
  }

  .promo {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: auto;
  }

  .right {
    min-width: auto;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-image {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    order: -1;
    /* Image first on mobile usually looks better, or keep as is */
  }

  .hero-content {
    padding: 24px;
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .package-header h3 {
    font-size: 24px;
  }

  .price-amount {
    font-size: 48px;
  }

  .hero-floating-img {
    display: none;
  }

  .package-badge {
    top: 125px;
    /* Align with price section on mobile */
  }
}

@media (max-width: 680px) {
  .topbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  body {
    padding-top: 80px;
  }

  .menu {
    /* Floating Card Style */
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
    min-width: 180px;
    background: #ffffff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    margin-top: 10px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;

    transform: translateY(20px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    text-align: center;
    padding: 12px 20px;
    border-radius: 16px;
  }

  /* Overlay removed as per user feedback (was making it too dark) */
  .nav {
    flex-wrap: wrap;
  }

  .right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span,
  .hamburger span:before,
  .hamburger span:after {
    background: linear-gradient(90deg, var(--p1), var(--p2));
    width: 20px;
  }

  .hamburger:active {
    transform: scale(0.95);
  }

  .grid,
  .reviews,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .brand .brand-name {
    font-size: 15px;
  }

  .hero-image {
    padding: 20px;
    order: -1;
  }

  .hero-content {
    padding: 24px;
    text-align: center;
    /* Center align hero text on mobile */
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
    margin: 0 auto 20px;
    /* Center paragraph */
  }

  .hero-meta {
    justify-content: center;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-title-wrap {
    padding: 24px;
    gap: 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-wrap {
    gap: 20px;
  }

  .contact-main {
    padding: 20px;
  }

  .contact-side {
    padding: 20px;
  }

  .contact-chips {
    grid-template-columns: 1fr;
    /* Stack chips */
  }

  .footer {
    text-align: center;
  }

  .foot {
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .foot>div:first-child {
    flex-direction: row;
    /* Keep inline on mobile */
    align-items: center;
  }

  .package-header h3 {
    font-size: 20px;
  }

  .price-amount {
    font-size: 40px;
  }
}

/* Package Badge */
.package-card {
  position: relative;
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  transform: translateY(0);
  animation: floatBadge 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 680px) {
  .package-badge {
    top: 100px !important;
    /* Force override for mobile */
  }

  .section-head,
  .section-title-row,
  #benefits .section-title-row {
    text-align: center;
  }

  .mobile-break-brand {
    display: block;
    margin-top: 8px;
    font-size: 0.9em;
    /* Slightly smaller for better balance if needed, or keep same */
  }

  /* Usage Section Mobile Layout */
  .usage-layout-container {
    flex-direction: column;
    gap: 40px;
  }

  .usage-right-col {
    width: 100%;
    max-width: 100%;
    text-align: center;
    /* Center align text on mobile */
  }

  .usage-content-grid {
    /* Keep grid layout or stack as needed, usually grid-template-columns: 1fr is already set for mobile */
    text-align: left;
  }

  .usage-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .usage-nav-prev {
    left: 0;
    margin-right: 0;
  }

  .usage-nav-next {
    right: 0;
    margin-left: 0;
  }
}

/* Floating Line Button */
.line-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 8px 24px rgba(6, 199, 85, 0.4));
}

.line-float:hover {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 12px 32px rgba(6, 199, 85, 0.6));
}

.line-float img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

@keyframes pulse-line {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(6, 199, 85, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(6, 199, 85, 0);
  }
}

.line-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-line 2s infinite;
}

@media (max-width: 768px) {
  .line-float {
    bottom: 30px;
    right: 24px;
    width: 70px;
    height: 70px;
  }
}