/* SWISS/INTERNATIONAL STYLE - Minimalist Precision */

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

:root {
  --white: #FFFFFF;
  --black: #000000;
  --red: #E3000F;
  --gray-light: #F5F5F5;
  --gray-mid: #CCCCCC;
}

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

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* Ad Disclosure - Clean Band */
.ad-disclosure-banner {
  background: var(--red);
  color: var(--white);
  padding: 16px 32px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.ad-disclosure-banner a {
  color: var(--white);
  text-decoration: underline;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header - Massive Typography */
header {
  background: var(--white);
  color: var(--black);
  text-align: left;
  border-bottom: 1px solid var(--gray-mid);
}

header h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

header p {
  font-size: 16px;
  font-weight: 400;
  margin: 16px 0;
  max-width: 700px;
  line-height: 1.5;
}

.disclaimer {
  font-size: 12px;
  color: var(--red);
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Sections - Extreme White Space */
main section {
  background: var(--white);
  padding: 32px 60px;
  margin: 0;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--gray-mid);
}

/* Override for app container */
main section#app-container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

main section:nth-child(odd) {
  background: var(--gray-light);
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
  max-width: 700px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  max-width: 700px;
}

.feature-list li {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-weight: 400;
}

.feature-list li:last-child {
  border-bottom: none;
}

/* CTA - Red Block */
.cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 16px;
  transition: background 0.2s;
}

.cta:hover {
  background: var(--black);
}

/* Privacy Highlight - Simple Border */
div[style*="background: #e8f5e9"] {
  background: var(--white) !important;
  color: var(--black) !important;
  border: 2px solid var(--black) !important;
  padding: 20px !important;
  margin: 20px 0 !important;
  max-width: 700px;
}

div[style*="background: #e8f5e9"] strong {
  color: var(--black) !important;
  font-size: 16px !important;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

/* Disclaimer Section */
.disclaimer-section {
  background: var(--gray-light) !important;
  border: none !important;
  border-left: 4px solid var(--red) !important;
}

.disclaimer-box {
  background: var(--white);
  border: none;
  border-left: 2px solid var(--black);
  padding: 32px;
  margin-bottom: 24px;
}

.disclaimer-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.disclaimer-box p {
  font-size: 16px;
}

/* Form Styling - Clean Lines */
input[type="email"],
input[type="text"],
select,
textarea {
  background: var(--white);
  border: none;
  border-bottom: 2px solid var(--black);
  padding: 12px 0;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}

input[type="email"]:focus,
input[type="text"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* Footer - Minimal */
footer {
  background: #999999;
  color: var(--black);
  padding: 0;
  border-top: 1px solid var(--gray-mid);
  font-size: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

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

footer p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 16px;
}

/* Cookie Banner */
#cookie-banner {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 24px 32px;
  font-size: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

#cookie-banner button {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#cookie-banner button:hover {
  background: var(--red);
  color: var(--white);
}

details {
  border: 1px solid var(--gray-mid);
  background: var(--white);
  padding: 32px;
  margin-top: 40px;
  font-size: 14px;
  max-width: 800px;
}

summary {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

strong {
  font-weight: 700;
}

a {
  color: var(--red);
  text-decoration: underline;
}

/* Grid System Visible (Swiss Style) */
main section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

main section > * {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  main section h2 {
    grid-column: 1 / 7;
  }
  
  main section p,
  main section ul,
  main section div,
  main section form {
    grid-column: 1 / 9;
  }
}
