/* =========================
   VARIABLES & RESET
========================= */

:root {
  --blue: #2563eb;
  --text-primary: #0b0f19;
  --text-secondary: #5a6475;
  --bg-light: #f6f9ff;
  --white: #ffffff;
  --radius-lg: 16px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

/* =========================
   LAYOUT
========================= */

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

section {
  width: 100%;
}

.modal-400 {
  max-width: 400px;
}

.modal-body {
  padding: 2rem;
}

/* =========================
   HEADER
========================= */

.header {
  background: var(--white);
  border-bottom: 1px solid #e5eaf5;
}

.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #1C66F6;
}

.nav a {
  margin: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #3b4256;
  text-decoration: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 24px 0;
  background: #2D2D2D;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__company,
.footer__text,
.footer__text a {
  margin: 0;
  color: var(--bg-light);
}

.footer__company {
  margin-bottom: 16px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
}

.btn--dark {
  background: #0b0f19;
  color: #fff;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 96px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

/* =========================
   FEATURE CARDS
========================= */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* =========================
   STATS
========================= */

.stats {
  padding: 64px 0;
  background: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat strong {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 8px;
  color: #1C66F6;
}

.stat span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* =========================
   PROACTIVE SECURITY
========================= */

.proactive {
  padding: 96px 0;
}

.proactive__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.proactive h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.proactive p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* =========================
   PRODUCT BANNER
========================= */

.product-banner {
  padding: 96px 0;
}

.product-banner__box {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border-radius: 24px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 56px;
}

.product-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.product-text {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 520px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-tags span {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  background: #FFF;
  color: #2D2D2D;
  border: 1px solid #1C66F6;
}

/* RIGHT SIDE (SVG) */
.product-banner__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-banner__right img {
  max-width: 100%;
  height: auto;
}

/* =========================
   PARTNERS
========================= */

.partners {
  padding: 64px 0;
  background: var(--white);
  text-align: center;
}

.partners h3 {
  font-size: 20px;
  font-weight: 600;
}

.partners__logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
}

/* =========================
   REVIEWS
========================= */

.reviews {
  padding: 96px 0;
}

.reviews h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-card strong {
  font-size: 16px;
  font-weight: 600;
}

.review-card span {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   LINKS
========================= */

.link {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}

/* =========================
   AWARDS
========================= */

.awards {
  padding: 64px 0 96px;
  background: var(--bg-light);
}

.awards__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.awards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 24px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  border: 1px solid rgba(45, 45, 45, 0.30);
  background: #FFF;
}

.award-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
