/* AdWizz – Light corporate design with imagery (pro content version) */

:root {
  --bg-page: #f3f4f6;
  --bg-main: #f9fafb;
  --bg-surface: #ffffff;
  --bg-soft: #eef2ff;

  --text-main: #0f172a;
  --text-muted: #6b7280;

  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --accent-strong: #1d4ed8;

  --border-subtle: #e5e7eb;

  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.08);
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, #e5edff 0, #f9fafb 42%, #f3f4f6 100%);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout */

.page-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.7rem 1.75rem 3.6rem;
}

@media (min-width: 1200px) {
  .page-wrapper {
    padding: 3.2rem 0 4.2rem;
  }
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(249, 250, 251, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.site-header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.85rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.site-logo-mark {
  display: flex;
  align-items: center;
}

.site-logo-mark img {
  height: 52px;
  width: auto;
  display: block;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-logo-text span:first-child {
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: #111827;
}

.site-logo-text span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a.active {
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}

.nav-cta {
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.45);
}

/* Hero */

.hero {
  margin-top: 2.9rem;
  margin-bottom: 3.1rem;
  padding: 2.4rem 2.4rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, #e5edff 0, #ffffff 55%, #e0f2fe 100%);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.3fr);
  gap: 2.3rem;
  align-items: center;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 2rem 1.6rem;
  }
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0 0 1.6rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

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

/* Hero image */

.hero-visual {
  justify-self: stretch;
}

.hero-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background-color: #e5e7eb;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.hero-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}

/* Sections */

.section {
  margin-bottom: 3.2rem;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.section-title {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Cards & grids */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .grid-3, .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem 1.35rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
}

.card-compact {
  border-radius: var(--radius-md);
}

.card-heading {
  margin-bottom: 0.55rem;
}

.card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

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

/* Card images */

.card-image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  border: 1px solid #e5e7eb;
}

.card-image img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* Lists */

.bullet-list {
  margin: 0.45rem 0 0.2rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.bullet-list li + li {
  margin-top: 0.25rem;
}

/* Highlight boxes */

.highlight-box {
  background: #eff6ff;
  border-radius: 14px;
  padding: 0.95rem 1.15rem;
  border: 1px solid #dbeafe;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Two-column text layout */

.text-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .text-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Forms */

.form-card {
  max-width: 560px;
}

.form-group {
  margin-bottom: 0.95rem;
  font-size: 0.86rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 9px;
  border: 1px solid #cbd5f5;
  background-color: #ffffff;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
}

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

/* Footer */

.site-footer {
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
  padding: 1.3rem 1.75rem 1.6rem;
  font-size: 0.8rem;
  color: #6b7280;
  background-color: #f9fafb;
}

.site-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.footer-links a {
  text-decoration: none;
  color: inherit;
}

/* Utility */

.mt-sm { margin-top: 0.45rem; }
.mt-md { margin-top: 0.9rem; }
.mt-lg { margin-top: 1.3rem; }

.text-muted { color: var(--text-muted); }

.centered { text-align: center; }
