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

:root {
  --bg-page: #f3f4f6;
  --bg-surface: #ffffff;
  --bg-accent-soft: #e0f2fe;
  --border-soft: #e5e7eb;
  --accent-main: #0ea5e9;
  --accent-dark: #0369a1;
  --accent-warm: #f97316;
  --text-main: #111827;
  --text-muted: #6b7280;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, #e0f2fe 0, transparent 55%),
    radial-gradient(circle at bottom right, #fee2e2 0, transparent 55%),
    var(--bg-page);
  line-height: 1.7;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem 2.5rem;
  width: 100%;
}

.site-header {
  border-bottom: 1px solid rgba(148,163,184,0.3);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #38bdf8, #0ea5e9 40%, #0369a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.brand-text-main {
  font-size: 1rem;
  font-weight: 600;
}

.brand-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-main ul {
  display: flex;
  list-style: none;
  gap: 0.9rem;
}

.nav-main a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.nav-main a:hover {
  background: rgba(14,165,233,0.08);
  color: var(--accent-dark);
  box-shadow: 0 0 0 1px rgba(14,165,233,0.2);
}

.header-contact {
  font-size: 0.8rem;
  text-align: right;
  color: var(--text-muted);
}

.header-contact a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.hero-left {
  align-self: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.12rem 0.7rem;
  border-radius: 999px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: 0.8rem;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-main);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.hero h1 strong {
  color: var(--accent-dark);
}

.hero-lead {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  font-size: 0.78rem;
  padding: 0.26rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(255,255,255,0.9);
  color: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle at 30% 0, #38bdf8, #0ea5e9 40%, #0369a1 100%);
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary-link {
  font-size: 0.86rem;
  color: var(--accent-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.btn-secondary-link span.icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.hero-right {
  align-self: stretch;
}

.hero-card {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), #f9fafb);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  padding: 1rem;
  overflow: hidden;
}

.hero-card-inner {
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 1.1rem;
}

.hero-visual {
  background: radial-gradient(circle at top left, #e0f2fe, #eff6ff);
  border-radius: 12px;
  padding: 0.9rem;
  border: 1px dashed rgba(148,163,184,0.9);
  position: relative;
}

.hero-visual-title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-visual-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  font-size: 0.78rem;
}

.hero-visual-item {
  padding: 0.35rem 0.45rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(209,213,219,0.9);
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-form h2 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.hero-form p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-form label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  margin-top: 0.1rem;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font: inherit;
  font-size: 0.86rem;
}

.hero-form textarea {
  resize: vertical;
  min-height: 70px;
}

.hero-form button {
  margin-top: 0.35rem;
}

.section {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent-main);
  border-radius: 999px;
}

.section h1,
.section h2 {
  font-size: 1.4rem;
}

.section p {
  color: var(--text-muted);
  max-width: 40rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(209,213,219,0.9);
  box-shadow: 0 14px 26px rgba(148,163,184,0.16);
  padding: 1rem 1rem 0.95rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  margin-bottom: 0.3rem;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
  gap: 2rem;
}

.content-layout-main h1,
.content-layout-main h2 {
  margin-bottom: 0.6rem;
}

.content-layout-main h2 {
  font-size: 1.1rem;
}

.content-layout-main p {
  margin-bottom: 0.7rem;
  color: var(--text-muted);
}

.content-layout-main ul,
.content-layout-main ol {
  margin-left: 1.3rem;
  margin-bottom: 0.8rem;
}

.content-layout-main li {
  margin-bottom: 0.3rem;
}

.aside-box {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(209,213,219,0.9);
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  box-shadow: 0 12px 24px rgba(148,163,184,0.14);
}

.aside-box h3 {
  font-size: 0.96rem;
  margin-bottom: 0.5rem;
}

.illustration {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(209,213,219,0.9);
  padding: 0.7rem;
  background: radial-gradient(circle at top left, #e0f2fe, #eff6ff);
  margin-bottom: 0.8rem;
}

.illustration img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.illustration figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

form label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

form input,
form textarea {
  width: 100%;
  margin-top: 0.15rem;
  margin-bottom: 0.65rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font: inherit;
  font-size: 0.9rem;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

footer {
  margin-top: auto;
  border-top: 1px solid rgba(148,163,184,0.35);
  background: rgba(249,250,251,0.96);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-inner a {
  color: var(--accent-dark);
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: #0f172a;
  color: #e5e7eb;
  font-size: 0.8rem;
  padding: 0.75rem 1.2rem;
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.cookie-banner a {
  color: #bfdbfe;
  text-decoration: underline;
}

.cookie-banner button {
  border-radius: 999px;
  border: none;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  cursor: pointer;
  background: #facc15;
  color: #0f172a;
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-card-inner {
    grid-template-columns: 1fr;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .nav-main ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .header-contact {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .page-inner {
    padding-inline: 1.1rem;
  }
  .header-inner {
    padding-inline: 1.1rem;
  }
  .footer-inner {
    padding-inline: 1.1rem;
  }
}
