:root {
  color-scheme: light dark;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background: #f7f7f9;
  color: #17223b;
}

body {
  margin: 0;
  padding: 0 1.5rem 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

header {
  padding: 2.5rem 0 1.5rem;
}

h1 {
  margin-bottom: 0.5rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

nav a {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #1f54c3;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: translate 0.2s ease, box-shadow 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
  translate: 0 -2px;
  box-shadow: 0 6px 12px rgba(31, 84, 195, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 2.5rem;
  padding: 0;
  background: linear-gradient(135deg, rgba(31, 84, 195, 0.12), rgba(15, 23, 42, 0.05));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.hero__content {
  padding: 2.5rem;
}

.hero__content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.hero__content p {
  margin-bottom: 1.5rem;
  color: #2f3a57;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.05);
}

.hero__visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.cta-group,
.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

main section {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(17, 25, 40, 0.08);
}

main h2 {
  margin-top: 0;
}

.cta-primary {
  background: linear-gradient(135deg, #fc6c4c, #f8367b);
  color: #fff;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-primary:hover,
.cta-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(248, 54, 123, 0.35);
}

.cta-secondary {
  background: transparent;
  color: #1f54c3;
  border: 1px solid rgba(31, 84, 195, 0.25);
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  background: rgba(31, 84, 195, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(31, 84, 195, 0.15);
}

.disclaimer {
  font-size: 0.85rem;
  color: #5c6784;
  margin-top: 1rem;
}

.notice-card {
  background: #fff5d6;
  border-left: 4px solid #f5c518;
  padding: 1.25rem;
  border-radius: 12px;
}

.gallery {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.gallery figure {
  background: #fff;
  border-radius: 18px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery figcaption {
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: #415071;
  background: #f7f8ff;
}

.fake-timer {
  font-weight: 700;
  font-size: 1.3rem;
  color: #d1342f;
  margin: 0.75rem 0;
}

.pricing {
  display: grid;
  gap: 1rem;
}

.pricing-card {
  border: 1px solid #dadff0;
  border-radius: 16px;
  padding: 1.5rem;
  background: #f9fbff;
}

.tiny-link {
  font-size: 0.75rem;
  color: #a0aac6;
}

.mandatory-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mandatory-field label {
  font-weight: 600;
}

.mandatory-field span {
  color: #d02d2d;
  font-size: 0.8rem;
}

form {
  display: grid;
  gap: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #cbd4ec;
}

.context-note {
  font-size: 0.85rem;
  color: #5c6784;
}

.list-inline {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.list-inline li {
  background: #1f54c3;
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  list-style: none;
}

.ai-block {
  background: #eef3ff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px dashed #6d7fd3;
}

.ai-block h3 {
  margin-top: 0;
}
