/* Fonts */
@font-face {
  font-family: 'Neutrif Studio';
  src: url('../fonts/NeutrifStudio-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Neutrif Studio';
  src: url('../fonts/NeutrifStudio-Medium.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Neutrif Studio';
  src: url('../fonts/NeutrifStudio-SemiBold.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Neutrif Studio';
  src: url('../fonts/NeutrifStudio-Bold.woff2') format('woff2');
  font-weight: 700;
}

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

/* Base */
body {
  font-family: 'Neutrif Studio', system-ui, sans-serif;
  color: #747895;
  font-size: 16px;
  line-height: 1.8;
}

h1, h2, h3, h4 {
  color: #33395D;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: 2.4em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }
p { font-size: 1.1em; }

a {
  color: #008DFF;
  text-decoration: none;
}

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

/* Layout */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.layer {
  padding: 80px 0;
}

.layer:nth-child(even) {
  background: #F9F9FD;
}

.grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

.grid .col {
  flex: 1;
}

/* Header */
header {
  padding: 20px 0;
}

header .logo img {
  height: 28px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.26s ease all;
}

.button.green {
  background: #2DCA73;
  color: #fff;
}

.button.green:hover {
  box-shadow: 0px 5px 9px -5px #2DCA73;
}

/* Dark sections */
.layer.dark {
  background: #33395D;
  color: rgba(218, 237, 255, 0.74);
}

.layer.dark h1,
.layer.dark h2,
.layer.dark h3 {
  color: #fff;
}

/* Section spacing */
.layer h1,
.layer h2 {
  margin-bottom: 20px;
}

.layer p {
  margin-bottom: 20px;
}

.layer p:last-child {
  margin-bottom: 0;
}

/* Centered section */
.layer.centered {
  text-align: center;
}

.layer.centered .inner {
  max-width: 800px;
}

.layer.centered h2 {
  margin-bottom: 20px;
}

.icon-centered {
  height: 48px;
  margin-bottom: 30px;
}

.icon-small {
  height: 36px;
  margin-bottom: 20px;
}

/* Banner section */
.layer.with-banner {
  position: relative;
  padding-top: 120px;
}

.layer.with-banner .banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #33395D;
}

/* Blockquote */
blockquote {
  font-size: 14px;
}

blockquote .quote-highlight {
  font-size: 1.5em;
  color: #33395D;
  font-weight: 500;
  line-height: 1.3;
}

blockquote cite {
  font-style: normal;
  font-weight: 600;
  color: #33395D;
}

/* Badge */
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* Placeholder images */
.placeholder {
  background: #E8E8F6;
  border-radius: 6px;
  width: 100%;
  min-height: 280px;
}

.placeholder.dark-placeholder {
  background: rgba(255, 255, 255, 0.1);
}

.placeholder.round {
  border-radius: 50%;
  min-height: 320px;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #747895;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 800px) {
  .grid {
    flex-direction: column;
    gap: 30px;
  }

  .layer {
    padding: 50px 0;
  }

  h1 { font-size: 1.8em; }
  h2 { font-size: 1.5em; }

  .placeholder.round {
    max-width: 220px;
    min-height: 220px;
    margin: 0 auto;
  }

  .layer.with-banner {
    padding-top: 100px;
  }

  blockquote .quote-highlight {
    font-size: 1.2em;
  }
}

@media (max-width: 500px) {
  .inner {
    padding: 0 20px;
  }

  .layer {
    padding: 40px 0;
  }

  h1 { font-size: 1.5em; }
  h2 { font-size: 1.3em; }
  p { font-size: 1em; }
}
