@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&subset=latin,latin-ext&display=swap');

:root {
  --bg-primary: #0a0c10;
  --bg-secondary: #121620;
  --bg-card: #181d2a;
  --text-primary: #ffffff;
  --text-secondary: #9aa5b5;
  --color-orange: #ff6a00;
  --color-blue: #00b4d8;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;
  --color-border: #242c3e;
  --glow-orange: rgba(255, 106, 0, 0.45);
  --glow-blue: rgba(0, 180, 216, 0.45);
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Page wrapper to center on desktop and span full width on mobile */
#main-content-wrapper {
  width: 100%;
  margin: 0 auto;
  background-color: var(--bg-primary);
  position: relative;
}

@media (min-width: 992px) {
  #main-content-wrapper {
    max-width: 800px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 100px rgba(0, 180, 216, 0.1);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
  }
  body {
    background-color: #050608;
  }
}

/* Container */
.container {
  width: 100%;
  padding: 20px;
}

/* Sections */
.page-section {
  width: 100%;
  padding: 30px 15px;
  border-bottom: 1px solid var(--color-border);
}

.hero-section {
  text-align: center;
  padding: 40px 20px;
  background: radial-gradient(circle at 50% 30%, rgba(0, 180, 216, 0.15) 0%, rgba(255, 106, 0, 0.05) 50%, transparent 100%);
  position: relative;
}

/* Logo and headers */
.brand-logo-container {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-logo-container img {
  width: 280px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.5));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.brand-logo {
  max-width: 280px;
  width: 90%;
  filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.5));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(0, 180, 216, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(255, 106, 0, 0.6));
  }
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.1);
}

.product-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-img-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, var(--color-blue), transparent, transparent, var(--color-orange), transparent);
  animation: rotateBorder 6s linear infinite;
  z-index: 1;
}

.product-img-wrapper-inner {
  position: relative;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 15px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Core Values Grid */
.core-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
  width: 100%;
}

.value-card {
  background: rgba(24, 29, 42, 0.6);
  border: 1px solid var(--color-border);
  padding: 15px 10px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-blue);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.15);
}

.value-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.value-card.orange:hover {
  border-color: var(--color-orange);
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.15);
}

.value-title {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.value-desc {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Features List */
.features-section {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--bg-card);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(255,255,255,0.15);
  transform: scale(1.01);
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  color: var(--color-blue);
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Comparison Cards */
.comparison-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 576px) {
  .comparison-section {
    grid-template-columns: 1fr;
  }
}

.comp-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.comp-card:hover {
  transform: translateY(-5px);
}

.comp-card.capsule:hover {
  border-color: var(--color-blue);
  box-shadow: 0 15px 30px rgba(0, 180, 216, 0.15);
}

.comp-card.paste:hover {
  border-color: var(--color-orange);
  box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
}

.comp-img {
  width: 140px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}

.comp-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.comp-bullets {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.comp-bullets li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-bullets li::before {
  content: '⚡';
  color: var(--color-orange);
  font-size: 12px;
}

.comp-bullets.blue li::before {
  content: '💧';
  color: var(--color-blue);
}

/* Package select grid */
.packages-section {
  background: radial-gradient(circle at bottom, rgba(255, 106, 0, 0.05), transparent);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.product-element {
  background: var(--bg-card);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.product-element input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.package-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--color-orange), #ff9e00);
  color: #000;
  font-weight: 800;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
}

.package-badge.blue {
  background: linear-gradient(135deg, var(--color-blue), #00f5ff);
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
}

.paket-img-container {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  width: 100%;
}

.paketResim {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.product-element:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

.product-element.selected-card {
  border-color: var(--color-blue);
  background: rgba(0, 180, 216, 0.05);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.2);
}

.product-element.selected-card::before {
  content: '✓';
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--color-blue);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.package-info {
  width: 100%;
}

.package-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.package-gift {
  font-size: 11px;
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 16px;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.old-price {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-secondary);
}

.current-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blue);
}

.product-element.selected-card .current-price {
  color: #fff;
  background: linear-gradient(90deg, #00b4d8, #00f5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Order Form Container */
.checkout-wrapper {
  background: var(--bg-secondary);
  padding: 30px 15px;
}

#formtop {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

#formtop::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  border-radius: 20px 20px 0 0;
}

.form-title {
  text-align: center;
  margin-bottom: 25px;
}

.form-title h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}

.form-title p {
  font-size: 12px;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background-color: rgba(10, 12, 16, 0.6);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 14px 16px;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-blue);
  background-color: rgba(10, 12, 16, 0.9);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.25);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239aa5b5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 40px;
}

select.form-control option {
  background-color: var(--bg-card);
  color: #fff;
  padding: 10px;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

/* Submit Button */
.form_btn {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  margin-top: 10px;
}

.form_btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #00c4e8, #0096c7);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.45);
}

.form_btn:active {
  transform: translateY(0);
}

.form_btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.button-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Modernized Floating WhatsApp Pill Widget */
.whatsappbtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
  border-radius: 50px;
  padding: 10px 20px 10px 14px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), 0 0 20px rgba(37, 211, 102, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsappbtn a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.whatsappbtn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsappbtn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsappbtn-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Footer Section */
.footer-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #06070a;
}

.disclaimer-text {
  font-size: 11px;
  color: #58667a;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.copyright {
  font-size: 12px;
  color: #434d5c;
}

/* Animations and Utilities */
.pulse-attention {
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 180, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
  }
}

/* Usage Guideline Grid */
.usage-section {
  background: rgba(18, 22, 32, 0.4);
}

.usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}

@media (max-width: 576px) {
  .usage-grid {
    grid-template-columns: 1fr;
  }
}

.usage-box {
  background: rgba(10, 12, 16, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
}

.usage-box h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.usage-box.capsule h4 {
  color: var(--color-blue);
}

.usage-box.paste h4 {
  color: var(--color-orange);
}

.usage-box p {
  font-size: 13px;
  color: var(--text-secondary);
}

.scroll-anchor-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
  transition: all 0.3s ease;
}

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

/* --- ADDED DYNAMIC COMPONENTS --- */

/* Trust Badges in Hero */
.trust-badges-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
  width: 100%;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 29, 42, 0.4);
  border: 1px solid var(--color-border);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badge-icon {
  color: var(--color-blue);
  font-size: 13px;
}

/* Countdown Timer Section */
.timer-container {
  background: rgba(24, 29, 42, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.timer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.timer-title span {
  color: var(--color-orange);
  font-weight: 800;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(180deg, #1f2535, #0a0c10);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  width: 50px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
  font-variant-numeric: tabular-nums;
}

.timer-number.orange {
  color: var(--color-orange);
}

.timer-label {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Social Proof Toast Notifications */
.social-proof-toast {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  background: rgba(18, 22, 32, 0.95);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  width: calc(100% - 50px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transform: translateX(-150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.social-proof-toast.show {
  transform: translateX(0);
}

.social-proof-icon {
  background: rgba(37, 211, 102, 0.1);
  color: var(--color-whatsapp);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.social-proof-content {
  flex-grow: 1;
}

.social-proof-header {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.social-proof-text {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}

.social-proof-time {
  font-size: 9px;
  color: var(--text-secondary);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .whatsappbtn {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px;
  }
  .whatsappbtn-text {
    font-size: 11px;
  }
  .whatsappbtn svg {
    width: 22px;
    height: 22px;
  }
  
  .social-proof-toast {
    bottom: 80px; /* shift above whatsapp button on mobile if needed */
    left: 15px;
    width: calc(100% - 30px);
  }
}

/* Power & Effect Marketing Banner */
.power-effect-section {
  padding: 30px 15px;
  background-color: var(--bg-primary);
}

.marketing-banner {
  background-color: #000000;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 100px rgba(255, 106, 0, 0.05);
}

/* Splash/scratch background effect using CSS gradient */
.marketing-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(255, 106, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.banner-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.banner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.banner-title span {
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.banner-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}

.banner-desc {
  font-size: 13px;
  color: #a0aec0;
  line-height: 1.6;
  max-width: 95%;
}

.banner-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0;
}

/* %100 Dogal Badge Style */
.badge-natural {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25d366; /* Green */
}

.badge-natural-icon {
  background: rgba(37, 211, 102, 0.1);
  border: 2px solid #25d366;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leaf-svg {
  width: 24px;
  height: 24px;
  stroke: #25d366;
}

.badge-natural-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.badge-natural-text .percent {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.badge-natural-text .lbl {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* 24 Saat Etkili Badge Style */
.badge-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  border: 3px solid #ffb703; /* Yellow */
  border-radius: 50px;
  padding: 6px 16px;
  color: #ffb703;
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.2);
}

.badge-timer-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-svg {
  width: 22px;
  height: 22px;
  stroke: #ffb703;
}

.badge-timer-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.badge-timer-text .hours {
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.badge-timer-text .lbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Bakanlik Onayli Badge Style */
.badge-ministry {
  background: #aa7c11; /* Gold block */
  background: linear-gradient(135deg, #aa7c11, #805c08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 4px;
  width: fit-content;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(170, 124, 17, 0.3);
  text-transform: uppercase;
}

/* Right side graphic */
.banner-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.banner-img:hover {
  transform: scale(1.02);
}

/* Quality Seal Badge */
.badge-quality {
  position: absolute;
  bottom: -15px;
  right: 15px;
  background: radial-gradient(circle, #e5c060 0%, #aa7c11 100%);
  border: 3px solid #ffffff;
  color: #000000;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 3;
  animation: floatSeal 4s ease-in-out infinite;
}

@keyframes floatSeal {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.badge-quality-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.badge-quality-inner .stars {
  font-size: 7px;
  margin-bottom: 2px;
}

.badge-quality-inner .text {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.badge-quality-inner .country {
  font-size: 9px;
  font-weight: 800;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .marketing-banner {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    gap: 25px;
    text-align: center;
  }
  
  .banner-left {
    align-items: center;
  }
  
  .banner-title {
    font-size: 30px;
  }
  
  .banner-desc {
    max-width: 100%;
  }
  
  .banner-badges {
    justify-content: center;
  }
  
  .badge-ministry {
    margin: 0 auto;
  }
  
  .banner-img {
    max-width: 220px;
  }
  
  .badge-quality {
    bottom: -10px;
    right: 20%;
  }
}

@media (max-width: 480px) {
  .banner-badges {
    flex-direction: column;
    gap: 15px;
  }
  
  .badge-quality {
    right: 10%;
  }
}

/* Trust & Certificates Section */
.trust-certs-section {
  background-color: var(--bg-secondary);
  padding: 40px 15px;
  text-align: center;
}

.certs-header {
  margin-bottom: 35px;
}

.certs-top-tag {
  font-size: 11px;
  font-weight: 850;
  color: var(--color-orange);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.certs-top-tag::before,
.certs-top-tag::after {
  content: ' — ';
  color: var(--color-border);
}

.certs-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.certs-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Framed Certificates Documents Grid */
.certs-documents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .certs-documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .certs-documents-grid {
    grid-template-columns: 1fr;
  }
}

.cert-card-premium {
  background: linear-gradient(135deg, rgba(24, 29, 42, 0.8), rgba(18, 22, 32, 0.9));
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.cert-card-premium:hover {
  transform: translateY(-5px);
  border-color: var(--color-orange);
  box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
}

.cert-seal-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cert-card-premium:hover .cert-seal-wrap {
  transform: scale(1.08);
}

/* Seal Wrap Color Types */
.cert-seal-wrap.gold {
  background: rgba(255, 170, 0, 0.1);
  border: 2px solid #ffaa00;
  color: #ffaa00;
}

.cert-seal-wrap.blue {
  background: rgba(0, 180, 216, 0.1);
  border: 2px solid #00b4d8;
  color: #00b4d8;
}

.cert-seal-wrap.green {
  background: rgba(37, 211, 102, 0.1);
  border: 2px solid #25d366;
  color: #25d366;
}

.cert-seal-wrap.emerald {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  color: #10b981;
}

.cert-seal-icon {
  font-size: 24px;
}

.cert-info h3 {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.cert-sub {
  font-size: 11px;
  color: var(--color-blue);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-divider {
  width: 40px;
  height: 2px;
  background-color: var(--color-border);
  margin: 0 auto 12px;
}

.cert-detail {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 4px;
}

.cert-detail.text-sm {
  font-size: 10px;
  opacity: 0.8;
  margin-top: 6px;
  line-height: 1.3;
}

.cert-detail strong {
  color: #ffffff;
}

/* Stamps Grid */
.certs-stamps-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.stamp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
}

.stamp-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stamp-item:hover .stamp-icon {
  transform: scale(1.1);
  border-color: var(--color-blue);
  box-shadow: 0 6px 15px rgba(0,180,216,0.2);
}

.stamp-icon.orange {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.stamp-icon.green {
  border-color: #25d366;
  color: #25d366;
  font-size: 16px;
}

.stamp-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1.3;
  text-transform: uppercase;
}

/* Doctor Banner */
.doctor-showcase-banner {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .doctor-showcase-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.doc-banner-left {
  padding: 40px;
}

@media (max-width: 576px) {
  .doc-banner-left {
    padding: 25px;
  }
}

.doc-banner-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.doc-banner-list li {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-banner-list li span {
  width: 24px;
  height: 24px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid var(--color-orange);
  border-radius: 50%;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

.doc-banner-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.doc-showcase-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  object-fit: cover;
  border-left: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .doc-showcase-img {
    border-left: none;
    border-top: 1px solid var(--color-border);
    max-width: 240px;
  }
}

/* Ratings Footer */
.certs-ratings-box {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 480px) {
  .certs-ratings-box {
    flex-direction: column;
    gap: 15px;
  }
}

.rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.rating-item.border-l {
  border-left: 1px solid var(--color-border);
}

@media (max-width: 480px) {
  .rating-item.border-l {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
  }
}

.rating-stars {
  font-size: 14px;
  margin-bottom: 5px;
}

.rating-count {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 5px;
}

.rating-desc {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

