@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #5b9bd5;
  --primary-dark: #3a7abf;
  --accent: #f76f6f;
  --accent-light: #ff9a9a;
  --bg: #f4f8fd;
  --bg2: #eaf2fb;
  --white: #ffffff;
  --text: #2c3e50;
  --text-light: #6b7c93;
  --text-muted: #a0b0c4;
  --border: #d6e8f7;
  --green: #4caf7d;
  --green-dark: #3a9468;
  --shadow: 0 4px 24px rgba(91,155,213,0.13);
  --shadow-strong: 0 8px 40px rgba(91,155,213,0.22);
  --radius: 18px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}


.au-hero-section {
  background: linear-gradient(160deg, #e8f4fe 0%, #d6eaf8 60%, #c3ddf4 100%);
  padding: 0 0 36px;
  position: relative;
  overflow: hidden;
}

.au-hero-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(91,155,213,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.au-info-ribbon {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  text-transform: uppercase;
}

.au-promo-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 30px;
  padding: 5px 16px;
  margin: 18px auto 0;
  display: block;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.au-headline-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.22;
  color: var(--text);
  text-align: center;
  margin: 14px 18px 0;
}

.au-headline-main span { color: var(--primary-dark); }

.au-tagline-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
  margin: 8px 20px 0;
}

.au-visual-wrapper {
  margin: 16px 0 0;
  position: relative;
}

.au-visual-wrapper img {
  width: 100%;
  object-fit: contain;
}

.au-alert-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 22px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(247,111,111,0.35);
}


.au-timer-box {
  margin: 18px 18px 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.au-timer-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  text-align: center;
}

.au-timer-digits-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

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

.au-timer-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  min-width: 44px;
  text-align: center;
  background: var(--bg2);
  border-radius: 8px;
  padding: 4px 2px;
}

.au-timer-divider {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.au-timer-legend {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 600;
}


.au-pricing-panel {
  margin: 18px 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

.au-original-price {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
  flex-shrink: 0;
}

.au-discount-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #e74c3c 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  padding: 6px 12px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(247, 111, 111, 0.35);
  display: inline-block;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.au-current-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.au-current-price .au-monetary-unit {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
}

.au-monetary-unit { font-size: 15px; font-weight: 700; color: var(--text-light); }


.au-form-wrapper {
  margin: 18px 18px 0;
}

.au-form-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.au-input-box {
  position: relative;
}

.au-input-symbol {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--primary);
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

input:focus, select:focus { border-color: var(--primary); }

input::placeholder { color: var(--text-muted); }

.au-action-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-sm);
  padding: 17px 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(76,175,125,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}

.au-action-button::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shine 2.5s infinite;
}

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

.au-action-button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(76,175,125,0.4); }

.au-action-outline {
  display: block;
  width: calc(100% - 36px);
  margin: 18px 18px 0;
  background: transparent;
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  border: 2.5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.au-action-outline:hover { background: var(--primary); color: #fff; }

.au-inventory-status {
  margin: 10px 18px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}

.au-inventory-indicator {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.2s infinite;
}

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


.section { padding: 36px 18px; }
.au-block-alt { background: var(--white); }

.au-section-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.au-section-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}


.au-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.au-comparison-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.au-comparison-badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
}

.au-comparison-badge.before { background: #e74c3c; }
.au-comparison-badge.after { background: var(--green); }

.au-comparison-photo { height: 180px; object-fit: cover; width: 100%; }

.au-comparison-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}


.au-features-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.au-features-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow);
}

.au-features-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--bg2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-features-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.au-features-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}

.au-features-body {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}


.au-guide-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.au-guide-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 20px;
}

.au-guide-step:last-child { padding-bottom: 0; }

.au-guide-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.au-guide-badge {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.au-guide-track {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 4px;
}

.au-guide-step:last-child .au-guide-track { display: none; }

.au-guide-content { padding-top: 4px; }

.au-guide-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}

.au-guide-desc {
  font-size: 13px;
  color: var(--text-light);
}


.au-tech-grid {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
}

.au-tech-row {
  display: flex;
  border-bottom: 1.5px solid var(--border);
}

.au-tech-row:last-child { border-bottom: none; }

.au-tech-param {
  flex: 0 0 46%;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg2);
  border-right: 1.5px solid var(--border);
}

.au-tech-value {
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text-light);
  flex: 1;
}


.au-opinions-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.au-opinion-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.au-opinion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.au-opinion-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.au-opinion-avatar svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.au-opinion-author {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}

.au-opinion-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.au-opinion-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.au-score-star {
  width: 15px;
  height: 15px;
  color: #f5a623;
}

.au-opinion-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}


.au-trust-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.au-trust-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.au-trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.au-trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.au-trust-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 3px;
}

.au-trust-desc {
  font-size: 13px;
  color: var(--text-light);
}


.au-process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.au-process-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.au-process-icon {
  width: 48px;
  height: 48px;
  background: var(--bg2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.au-process-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.au-process-title {
  font-weight: 800;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}

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

.au-process-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--border);
  margin-bottom: 6px;
}


.au-closing-cta {
  background: linear-gradient(160deg, #e8f4fe 0%, #d6eaf8 60%, #c3ddf4 100%);
  padding: 36px 18px;
  text-align: center;
}

.au-closing-cta .au-section-headline {
  text-align: center;
}

.au-closing-cta .au-pricing-panel {
  margin: 14px 0 0;
  justify-content: center;
}

.au-closing-cta .au-form-wrapper {
  margin: 18px 0 0;
}

.au-closing-cta .au-inventory-status {
  margin: 10px 0 0;
  justify-content: center;
}


footer {
  background: #2c3e50;
  color: #a0b0c4;
  text-align: center;
  padding: 22px 20px;
  font-size: 12px;
  line-height: 1.8;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}

.au-seperator-line {
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-light) 100%);
  border: none;
  margin: 0;
}


.product-photo-wrap {
  margin: 0;
  background: var(--bg2);
}

.product-photo-wrap img {
  width: 100%;
  object-fit: contain;
}


.au-fab-scroll {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 440px;
  z-index: 999;
  display: none;
}

.au-fab-scroll.visible { display: block; }


input.error, select.error { border-color: var(--accent) !important; }

.au-section-photo {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.au-section-photo img {
  width: 100%;
  object-fit: contain;
}

.au-level-track {
  background: var(--border);
  border-radius: 30px;
  height: 10px;
  margin-top: 10px;
  overflow: hidden;
}

.au-level-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--primary) 100%);
  border-radius: 30px;
  width: 78%;
}

.au-level-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

.as-lang-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.45);
  border-bottom: 1.5px solid var(--border);
  z-index: 10;
  position: relative;
}
.as-lang-item {
  display: block;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none !important;
  color: var(--text) !important;
  transition: all 0.2s ease;
  cursor: pointer;
  line-height: 1;
}
.as-lang-item:hover {
  background: rgba(0, 0, 0, 0.05);
}
.as-lang-item.active {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(91, 155, 213, 0.3);
}
