/* Sagitta Software Inc. - Website Styles */
:root {
  --primary: #0D7377;
  --primary-light: #14A3B8;
  --primary-dark: #095456;
  --surface: #f8fafb;
  --on-surface: #1a1a1a;
  --on-surface-variant: #4a4a4a;
  --white: #ffffff;
  --border: #e0e8ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-surface);
  background: var(--surface);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 24px 0;
  box-shadow: 0 2px 8px rgba(13, 115, 119, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--white);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Main content */
main {
  padding: 48px 0 64px;
  min-height: 60vh;
}

h1 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

p {
  margin: 0 0 16px;
  color: var(--on-surface-variant);
}

/* Product card */
.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.product-card-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 16px;
}

.product-card h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.product-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--white) !important;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.2s;
}

.store-btn:hover {
  background: var(--primary-dark);
}

button.store-btn {
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

button.store-btn:disabled {
  background: #94a3a8;
  cursor: not-allowed;
  opacity: 0.85;
}

button.store-btn:disabled:hover {
  background: #94a3a8;
}

/* Get app — stepper */
.stepper-intro {
  margin-bottom: 28px;
  color: var(--on-surface-variant);
}

.stepper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.stepper-step {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.stepper-step h2 {
  margin-top: 8px;
  font-size: 1.2rem;
}

.stepper-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 4px;
}

.stepper-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  vertical-align: middle;
}

.stepper-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.stepper-confirm input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.stepper-confirm label {
  cursor: pointer;
  color: var(--on-surface);
  font-weight: 500;
  line-height: 1.5;
}

.stepper-hint {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

.stepper-hint[hidden] {
  display: none;
}

.stepper-note {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  margin-top: 16px !important;
  padding: 12px 14px;
  background: rgba(13, 115, 119, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--primary-light);
}

/* FAQ */
.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--on-surface);
}

/* Privacy / Legal */
.privacy-section h2 {
  margin-top: 32px;
}

.privacy-section ul {
  margin: 0 0 16px;
  padding-left: 24px;
  color: var(--on-surface-variant);
}

/* Contact */
.contact-info {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 32px 0;
  margin-top: 48px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

footer nav {
  display: flex;
  gap: 24px;
}

footer nav a {
  padding: 0;
}

.copyright {
  font-size: 0.875rem;
  opacity: 0.8;
}
