/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo {
  font-family: 'Pacifico', cursive;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span:first-child {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
}

.logo span:last-child {
  color: #ffffff;
}

.top-btn {
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c2f 100%);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
}

.top-btn:active {
  transform: translateY(0);
}

/* ===== ANIMATED STRIP ===== */
.strip {
  background: linear-gradient(90deg, #ff6a00 0%, #ff8c2f 50%, #ff6a00 100%);
  background-size: 200% 100%;
  padding: 10px 0;
  font-size: clamp(12px, 3vw, 15px);
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.strip marquee {
  display: block;
  padding: 8px 0;
}

.strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
  z-index: 1;
}

@keyframes slideText {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 10px 14px 8px 14px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 140, 47, 0.2));
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 106, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

h1 {
  font-size: clamp(20px, 6.5vw, 38px);
  line-height: 1.1;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  white-space: normal;
  max-width: 100%;
}

.highlight {
  background: linear-gradient(135deg, #ff6a00, #ffb400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
  font-size: 1em;
  font-weight: 900;
  position: relative;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 106, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.6));
  }
}

.bonus-banner {
  display: none;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.bonus-text {
  display: none;
}

p {
  color: #b0b0b0;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 0;
  width: 100%;
}

.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
  padding: 12px 20px;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 900;
  font-size: clamp(13px, 4vw, 16px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 3px solid #005588;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  margin-bottom: 3px;
  width: 80%;
  max-width: 320px;
}

.btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 136, 204, 0.7), 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: #0099dd;
}

.btn-main:hover::before {
  left: 100%;
}

.btn-main:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #25d366;
  padding: 12px 20px;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 900;
  font-size: clamp(13px, 4vw, 16px);
  background: linear-gradient(135deg, #25d366 0%, #1ea853 100%);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-height: 42px;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 320px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2fdc7a 0%, #25d366 100%);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.7), 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: #2fdc7a;
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* ===== FEATURES ===== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 6px 0 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}

.feature {
  text-align: center;
  padding: 12px 4px;
}

.feature-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 12px;
  color: #b0b0b0;
  font-weight: 700;
  line-height: 1.3;
}

/* ===== TRUST STATS ===== */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 8px 0;
  background: rgba(0, 136, 204, 0.08);
  border-top: 1px solid rgba(0, 136, 204, 0.2);
  border-bottom: 1px solid rgba(0, 136, 204, 0.2);
}

.stat-item {
  text-align: center;
  padding: 10px 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 900;
  color: #00d4ff;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.stat-label {
  font-size: 11px;
  color: #a0a0a0;
  font-weight: 600;
  line-height: 1.2;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  margin: 0;
  padding: 8px 12px;
  background: rgba(37, 211, 102, 0.06);
  border-top: 1px solid rgba(37, 211, 102, 0.15);
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
}

.why-choose h2 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.why-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.why-text {
  font-size: 11px;
  color: #b0b0b0;
  font-weight: 600;
  line-height: 1.2;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  margin: 0;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.15), rgba(255, 140, 47, 0.1));
  border-top: 2px solid #ff6a00;
  border-bottom: 2px solid #ff6a00;
  text-align: center;
}

.cta-text {
  font-size: 14px;
  font-weight: 900;
  color: #ffb400;
  text-shadow: 0 0 8px rgba(255, 106, 0, 0.3);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.cta-subtext {
  font-size: 11px;
  color: #ff8c2f;
  font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 0;
  padding: 6px 12px;
  text-align: center;
  font-size: 11px;
  background: rgba(10, 20, 40, 0.8);
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
  margin-bottom: 2px;
  line-height: 1.4;
  font-size: 10px;
  color: #ff9999;
  font-weight: 600;
}

.footer-links {
  font-size: 9px;
  color: #777;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 480px) {
  .header {
    padding: 10px 12px;
  }

  .logo {
    font-size: clamp(18px, 5vw, 24px);
  }

  .top-btn {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 36px;
  }

  .hero {
    padding: 10px 14px 8px 14px;
  }

  .strip {
    padding: 8px 0;
    font-size: 12px;
  }

  .strip marquee {
    padding: 6px 0;
  }

  .badge {
    margin-bottom: 6px;
    padding: 6px 12px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(18px, 5.5vw, 28px);
    margin-bottom: 6px;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
  }

  p {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .btn-container {
    gap: 0;
    margin-top: 2px;
    margin-bottom: 0;
    align-items: center;
  }

  .btn-main,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 44px;
    margin-bottom: 3px;
    width: 85%;
  }

  .features {
    gap: 0;
    margin: 0;
    padding: 6px 0 4px 0;
  }

  .feature {
    padding: 10px 4px;
  }

  .feature-icon {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .feature-text {
    font-size: 11px;
  }

  .trust-stats {
    gap: 0;
    margin: 0;
    padding: 6px 0;
  }

  .stat-item {
    padding: 8px 3px;
  }

  .stat-value {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .stat-label {
    font-size: 10px;
  }

  .why-choose {
    padding: 8px 12px;
  }

  .why-choose h2 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .why-item {
    padding: 6px 4px;
  }

  .why-icon {
    font-size: 22px;
    margin-bottom: 2px;
  }

  .why-text {
    font-size: 10px;
  }

  .cta-banner {
    padding: 8px 12px;
  }

  .cta-text {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .cta-subtext {
    font-size: 10px;
  }

  .footer {
    margin-top: 0;
    padding: 6px 12px;
    font-size: 11px;
  }

  .footer-text {
    font-size: 10px;
    margin-bottom: 2px;
    color: #ff9999;
    font-weight: 600;
  }

  .footer-links {
    font-size: 9px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .header {
    padding: 12px 15px;
  }

  .hero {
    padding: 10px 15px 8px 15px;
  }

  .btn-main,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
    min-height: 44px;
    width: 82%;
  }

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

  .trust-stats {
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 0;
  }

  .stat-value {
    font-size: 17px;
  }

  .stat-label {
    font-size: 10px;
  }

  .why-choose {
    padding: 10px 15px;
  }

  .why-choose h2 {
    font-size: 16px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .why-item {
    padding: 8px 6px;
  }

  .why-text {
    font-size: 11px;
  }

  .cta-banner {
    padding: 10px 15px;
  }

  .cta-text {
    font-size: 14px;
  }

  .cta-subtext {
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  .header {
    padding: 15px 20px;
  }

  .hero {
    padding: 15px 30px;
  }

  .btn-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .btn-main,
  .btn-secondary {
    min-width: auto;
    width: 180px;
    padding: 11px 22px;
    font-size: 14px;
    min-height: 44px;
  }

  .features {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 8px 0;
    padding: 8px 0;
    border-bottom: none;
  }

  .feature {
    padding: 12px 4px;
  }

  .feature-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .feature-text {
    font-size: 12px;
  }

  .trust-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 10px 0;
  }

  .stat-item {
    padding: 12px 4px;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .why-choose {
    padding: 12px 30px;
  }

  .why-choose h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .why-item {
    padding: 12px 8px;
  }

  .why-icon {
    font-size: 32px;
    margin-bottom: 6px;
  }

  .why-text {
    font-size: 12px;
  }

  .cta-banner {
    padding: 14px 30px;
  }

  .cta-text {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .cta-subtext {
    font-size: 12px;
  }

  .footer {
    padding: 8px 20px;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #0a0a14 0%, #0f1729 100%);
  }
}

/* ===== UTILITIES ===== */
a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* Prevent text selection on buttons */
.btn-main,
.btn-secondary,
.top-btn {
  -webkit-user-select: none;
  user-select: none;
}
