/* AVTOMOIKI VERTICAL LANDING */
.aw-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10, 10, 15, 0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1380px;
  margin: 0 auto;
}
body[data-theme="dark"] .aw-nav {
  background: rgba(15, 16, 22, 0.92);
  border-bottom-color: rgba(245, 242, 235, 0.1);
}
.aw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.aw-logo-img { width: 28px; height: 28px; }
.aw-accent { color: var(--accent); }
.aw-nav-right { display: flex; align-items: center; gap: 16px; }
.aw-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.aw-link:hover { color: var(--ink); }

.aw-btn-primary, .aw-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s;
  border: 1px solid transparent;
  font-family: inherit;
  background: var(--accent);
  color: #fff;
}
.aw-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 67, 10, 0.3);
}
.aw-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.aw-btn-ghost:hover {
  background: rgba(10, 10, 15, 0.04);
  border-color: var(--ink);
}
.aw-btn-lg { padding: 16px 28px; font-size: 15px; }
.aw-btn-block { display: flex; width: 100%; padding: 14px; margin-top: 16px; }

/* HERO */
.aw-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  text-align: center;
}
.aw-hero-pill {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(232, 67, 10, 0.1);
  border: 1px solid rgba(232, 67, 10, 0.25);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
}
.aw-hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.aw-em { color: var(--accent); font-style: normal; }
.aw-hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.aw-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.aw-hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

/* PAIN */
.aw-pain {
  max-width: 1180px;
  margin: 80px auto;
  padding: 0 24px;
}
.aw-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 48px;
}
.aw-h2 em { color: var(--accent); font-style: normal; }
.aw-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.aw-pain-card {
  padding: 28px;
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.aw-pain-icon { font-size: 32px; margin-bottom: 14px; line-height: 1; }
.aw-pain-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}
.aw-pain-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* SOLUTION */
.aw-solution {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 24px;
}
.aw-solution .aw-h2 { color: var(--paper); }
.aw-sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.aw-sol-card {
  padding: 24px 22px;
  background: rgba(245, 242, 235, 0.05);
  border: 1px solid rgba(245, 242, 235, 0.1);
  border-radius: 14px;
}
.aw-sol-card strong {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.aw-sol-card p {
  color: rgba(245, 242, 235, 0.75);
  font-size: 14px;
  line-height: 1.55;
}

/* CALCULATOR */
.aw-calc {
  background: var(--section-alt);
  padding: 80px 24px;
}
.aw-calc-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.aw-calc-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin: -28px auto 40px;
  max-width: 600px;
}
.aw-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.aw-calc-inputs {
  background: var(--surface-strong);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body[data-theme="dark"] .aw-calc-inputs {
  background: var(--dark-surface);
  border-color: var(--dark-line);
}
.aw-input { display: flex; flex-direction: column; gap: 8px; }
.aw-input label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.aw-input select {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background-color: var(--paper);
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6860' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
body[data-theme="dark"] .aw-input select {
  background-color: var(--dark-soft);
  color: var(--dark-text);
  border-color: var(--dark-line);
}
.aw-calc-result {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 32px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.aw-calc-result::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(232,67,10,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.aw-r-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: rgba(245, 242, 235, 0.6);
  position: relative;
  margin-bottom: 6px;
}
.aw-r-amount {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  position: relative;
  margin-bottom: 12px;
}
.aw-r-per {
  font-size: 16px;
  font-weight: 500;
  color: rgba(245, 242, 235, 0.6);
  letter-spacing: normal;
}
.aw-r-year {
  font-size: 14px;
  color: rgba(245, 242, 235, 0.7);
  margin-bottom: 18px;
  position: relative;
}
.aw-r-year span { color: var(--paper); font-weight: 700; }
.aw-r-vs {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(245, 242, 235, 0.12);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}
.aw-r-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(245, 242, 235, 0.7);
}
.aw-r-row:not(:last-child) {
  border-bottom: 1px solid rgba(245, 242, 235, 0.08);
}
.aw-r-us {
  background: rgba(232, 67, 10, 0.15);
  color: var(--paper);
  font-weight: 600;
}
.aw-r-amt { font-family: 'Unbounded', sans-serif; font-weight: 700; }
.aw-r-note {
  font-size: 12px;
  color: rgba(245, 242, 235, 0.55);
  text-align: center;
  margin-top: 6px;
  position: relative;
}

/* FORM */
.aw-form-sec {
  padding: 80px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.aw-form-wrap { text-align: center; }
.aw-form-sub {
  color: var(--muted);
  font-size: 16px;
  margin: -28px auto 36px;
  max-width: 560px;
}
.aw-form {
  background: var(--surface-strong);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: left;
}
body[data-theme="dark"] .aw-form {
  background: var(--dark-surface);
  border-color: var(--dark-line);
}
.aw-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.aw-form input {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background-color: var(--paper);
  color: var(--ink);
  width: 100%;
}
body[data-theme="dark"] .aw-form input {
  background-color: var(--dark-soft);
  color: var(--dark-text);
  border-color: var(--dark-line);
}
.aw-form input:focus { outline: none; border-color: var(--accent); }
.aw-form #awBiz { margin-bottom: 8px; }
.aw-hp { position: absolute; left: -9999px; opacity: 0; }
.aw-form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.aw-form-status {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}
.aw-form-status.ok { color: #16a34a; }
.aw-form-status.err { color: #dc2626; }
.aw-form-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.aw-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.15s;
}
.aw-wa-btn:hover { transform: translateY(-1px); }

/* FAQ */
.aw-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.aw-faq-list { display: flex; flex-direction: column; gap: 10px; }
.aw-faq-list details {
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.aw-faq-list summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aw-faq-list summary::-webkit-details-marker { display: none; }
.aw-faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s;
}
.aw-faq-list details[open] summary::after { transform: rotate(45deg); }
.aw-faq-list details p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* FINAL CTA */
.aw-final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 80px 24px;
}
.aw-final-cta h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.aw-final-cta p {
  color: rgba(245, 242, 235, 0.7);
  font-size: 17px;
  margin-bottom: 28px;
}
.aw-final-trust {
  font-size: 13px !important;
  color: rgba(245, 242, 235, 0.5) !important;
  margin-top: 18px !important;
}

/* FOOTER */
.aw-footer {
  background: var(--section-alt);
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}
.aw-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.aw-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.aw-footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.aw-footer-links a:hover { color: var(--ink); }
.aw-footer-copy {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .aw-calc-grid { grid-template-columns: 1fr; }
  .aw-form-row { grid-template-columns: 1fr; }
  .aw-hero-trust { gap: 14px; font-size: 13px; }
}
