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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  background-color: #060913;
  color: #f8fafc;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* COLOR PALETTE - LUXURY VIBRANT BLUE & DEEP NAVY */
:root {
  --primary-blue: #0066ff;
  --primary-blue-bright: #38bdf8;
  --primary-blue-hover: #0284c7;
  --dark-bg: #060913;
  --dark-card: rgba(13, 21, 38, 0.85);
  --input-bg: #091124;
  --input-border: #0066ff;
  --text-muted: #94a3b8;
  --error-color: #ff4d48;
  --success-color: #38ef7d;
  --accent-cyan: #06b6d4;
  --glass-border: rgba(56, 189, 248, 0.25);
}

/* TOP NAVIGATION BAR */
.top-nav {
  position: relative;
  z-index: 10;
  background: rgba(6, 9, 19, 0.92);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  backdrop-filter: blur(14px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1.5px;
}

.logo-accent {
  color: var(--primary-blue-bright);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s, text-shadow 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue-bright);
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* HERO SECTION CONTAINER */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #060913;
  background-image: url('images/neutral_hero_bg.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px 10px 40px;
  overflow: hidden;
}

/* Dark Blue Overlay for left text readability */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    #060913 0%, 
    rgba(6, 9, 19, 0.95) 45%, 
    rgba(6, 9, 19, 0.75) 70%, 
    rgba(6, 9, 19, 0.4) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* TOP LEFT BLUE CUT ACCENT LINE */
.top-accent-line {
  position: absolute;
  top: -15px;
  left: -20px;
  width: 45px;
  height: 25px;
  border-left: 3px solid var(--primary-blue-bright);
  border-top: 3px solid var(--primary-blue-bright);
  transform: skewX(-30deg);
  filter: drop-shadow(0 0 8px var(--primary-blue-bright));
}

.hero-content {
  max-width: 680px;
  padding-top: 10px;
}

/* BRAND TITLE */
.brand-title {
  font-family: 'Oswald', 'Outfit', sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2.5px;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary-blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(0, 102, 255, 0.3));
}

/* SUBTITLE */
.hero-subtitle {
  font-size: clamp(15px, 3vw, 20px);
  font-weight: 800;
  color: var(--primary-blue-bright);
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  text-transform: uppercase;
  line-height: 1.35;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

/* BENEFIT LIST */
.benefit-list {
  list-style: none;
  margin-bottom: 24px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.bullet-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-bright) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-right: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.6);
}

.bullet-text {
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.3;
}

/* CALLOUT BANNER WITH LIGHTNING */
.callout-banner {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 26px;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 10px 18px;
  border-radius: 8px;
  width: fit-content;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

.lightning-bolt {
  font-size: 22px;
  margin-right: 10px;
  color: var(--primary-blue-bright);
  filter: drop-shadow(0 0 8px var(--primary-blue-bright));
}

.callout-text {
  font-size: clamp(14px, 2.8vw, 17px);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
}

/* OFFER WRAPPER (FORM + ARROW + PRODUCT BOX) */
.offer-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  position: relative;
}

/* ORDER BOX */
.order-box {
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  padding: 20px 16px;
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 102, 255, 0.15);
}

.only-today {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary-blue-bright);
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

.old-price {
  font-size: 15px;
  color: #64748b;
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 600;
}

.new-price {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%);
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  padding: 8px 0;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.asterisk {
  font-size: 16px;
  vertical-align: top;
  margin-left: 2px;
}

/* ORDER FORM */
.order-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group {
  position: relative;
  width: 100%;
}

.form-control {
  width: 100%;
  height: 48px;
  background-color: var(--input-bg);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  color: #ffffff;
  padding: 0 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control::placeholder {
  color: #64748b;
}

.form-control:focus {
  border-color: var(--primary-blue-bright);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.form-control.has-error {
  border-color: var(--error-color) !important;
  box-shadow: 0 0 12px rgba(255, 77, 72, 0.6) !important;
}

.form-control.is-valid {
  border-color: var(--success-color);
  box-shadow: 0 0 10px rgba(56, 239, 125, 0.4);
}

/* FIELD ERROR MESSAGE */
.field-error-message {
  display: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--error-color);
  margin-top: 6px;
  text-align: left;
  line-height: 1.3;
  background: rgba(255, 77, 72, 0.12);
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--error-color);
}

.submit-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-blue-bright) 0%, var(--primary-blue) 100%);
  color: #ffffff;
  border: none;
  font-family: inherit;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 4px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
  -webkit-tap-highlight-color: transparent;
}

.submit-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.6);
}

.submit-btn:active {
  transform: scale(0.98);
}

/* CURVED ARROW */
.arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 25px;
}

.curved-arrow {
  filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.6));
}

/* PRODUCT BOX CONTAINER */
.product-box-container {
  position: relative;
  width: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img {
  width: 100%;
  height: auto;
  max-width: 210px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.75));
  opacity: 0.96;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-img:hover {
  transform: scale(1.02);
  opacity: 1;
}

/* DISCLAIMER */
.disclaimer {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 18px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 620px;
}

/* BOTTOM ACCENT LINE */
.bottom-accent-line {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-blue-bright) 50%, transparent 100%);
  margin-top: 40px;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
}

/* LEGAL PAGES */
.legal-page-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at center, #0b1329 0%, #060913 100%);
}

.page-main-container {
  max-width: 850px;
  margin: 40px auto;
  padding: 0 20px;
  flex-grow: 1;
}

.legal-card {
  background: rgba(13, 21, 38, 0.95);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--primary-blue-bright);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.page-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-blue-bright);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-intro {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.legal-divider {
  border: none;
  height: 1px;
  background: rgba(56, 189, 248, 0.15);
  margin: 24px 0;
}

.legal-section {
  margin-bottom: 30px;
}

.section-badge-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.legal-section h2 {
  font-size: 20px;
  color: var(--primary-blue-bright);
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 12px;
}

.highlight-box {
  background: rgba(0, 102, 255, 0.1);
  border-left: 3px solid var(--primary-blue-bright);
  padding: 16px;
  border-radius: 6px;
  margin: 16px 0;
}

.highlight-box p {
  color: #ffffff;
  margin-bottom: 0;
}

.warning-box {
  background: rgba(255, 77, 72, 0.08);
  border-left-color: var(--error-color);
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #091124;
  border: 1px solid rgba(56, 189, 248, 0.15);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.doc-icon {
  width: 26px;
  height: 26px;
  background-color: var(--primary-blue-bright);
  color: #060913;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  font-size: 14px;
}

.doc-item h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 4px;
}

.action-footer {
  margin-top: 35px;
  text-align: center;
}

/* DETAILS SECTION */
.details-section {
  background-color: #080d1a;
  padding: 60px 20px 100px 20px;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.title-highlight {
  color: var(--primary-blue-bright);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.card {
  background: rgba(13, 21, 38, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue-bright);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.25);
}

.card-icon {
  font-size: 38px;
  margin-bottom: 16px;
}

.card h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* SITE FOOTER */
.site-footer {
  background-color: #060913;
  padding: 35px 20px 95px 20px;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.footer-legal-notice {
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--primary-blue-bright);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* STICKY MOBILE CTA BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 66px;
  background-color: #070c1a;
  border-top: 2px solid var(--primary-blue-bright);
  z-index: 999;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.8);
}

.sticky-price-info {
  display: flex;
  flex-direction: column;
}

.sticky-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

.sticky-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-blue-bright);
}

.sticky-price del {
  font-size: 12px;
  color: #64748b;
  margin-left: 4px;
}

.sticky-btn {
  background: linear-gradient(135deg, var(--primary-blue-bright) 0%, var(--primary-blue) 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 102, 255, 0.5);
  transition: background-color 0.2s;
}

.sticky-btn:active {
  transform: scale(0.96);
}

/* MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 9, 19, 0.88);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-content {
  background-color: #0b1329;
  border: 2px solid var(--primary-blue-bright);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 45px rgba(0, 102, 255, 0.4);
}

.policy-content {
  max-width: 650px;
  text-align: left;
  max-height: 80vh;
  overflow-y: auto;
}

.policy-text p {
  margin-bottom: 14px;
  line-height: 1.6;
  color: #cbd5e1;
  font-size: 13px;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  color: #94a3b8;
  cursor: pointer;
}

.close-modal:hover {
  color: #ffffff;
}

/* THANKYOU PAGE STYLES */
.thankyou-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at center, #0b1329 0%, #060913 100%);
}

.thankyou-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.thankyou-card {
  background: rgba(13, 21, 38, 0.95);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--primary-blue-bright);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
  text-align: center;
  width: 100%;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue-bright) 0%, var(--primary-blue) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.6);
}

.thankyou-title {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 8px;
}

.thankyou-subtitle {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.order-summary-box {
  background: #091124;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 24px;
  text-align: left;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  padding-bottom: 8px;
}

.order-id {
  color: var(--primary-blue-bright);
  font-weight: 700;
}

.summary-product {
  display: flex;
  gap: 16px;
  align-items: center;
}

.summary-img {
  width: 60px;
  height: auto;
  border-radius: 4px;
}

.summary-info h3 {
  font-size: 15px;
  color: #ffffff;
}

.summary-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.summary-price {
  font-size: 14px;
  color: var(--primary-blue-bright);
  margin-top: 4px;
}

.next-steps {
  text-align: left;
  margin-bottom: 30px;
}

.next-steps h3 {
  font-size: 17px;
  color: var(--primary-blue-bright);
  margin-bottom: 16px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

.steps-list {
  list-style: none;
}

.steps-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.step-num {
  width: 24px;
  height: 24px;
  background: var(--primary-blue-bright);
  color: #060913;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.steps-list strong {
  color: #ffffff;
  font-size: 14px;
}

.steps-list p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}

.back-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue-bright) 0%, var(--primary-blue) 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0, 102, 255, 0.4);
}

.back-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 22px rgba(56, 189, 248, 0.6);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 12px;
  }

  .hero-section {
    background-position: center top;
    padding: 18px 14px;
  }
  
  .hero-section::before {
    background: rgba(6, 9, 19, 0.92);
  }

  .top-accent-line {
    display: none;
  }

  .hero-content {
    padding-top: 0;
  }

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

  .hero-subtitle {
    text-align: center;
    margin-bottom: 18px;
  }

  .benefit-list {
    margin-bottom: 18px;
  }

  .benefit-list li {
    margin-bottom: 10px;
  }

  .bullet-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .callout-banner {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
  }

  .offer-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 18px;
  }

  .arrow-container {
    display: none;
  }

  .order-box {
    width: 100%;
    max-width: 330px;
  }

  .product-box-container {
    width: 180px;
  }

  .product-img {
    max-width: 180px;
  }

  .disclaimer {
    text-align: center;
    margin-top: 14px;
    font-size: 11px;
  }

  .mobile-sticky-bar {
    display: flex;
  }
}
