/* style.css */
:root {
  --blue: #0647d9;
  --dark: #111111;
  --text: #5f6470;
  --bg: #f8f5ed;
  --card: #ffffff;
  --border: #e8e3d7;
    --bg:#F8F5ED;
    --grid:rgba(25,25,25,.045);
    --grid-size:70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
  background-color:#F8F5ED;
font-family: "Inter", sans-serif;
  background-color:var(--bg);

  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);

  background-size:var(--grid-size) var(--grid-size);

  background-attachment:fixed;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
}

.header {
  background: #fffdf7;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
}

.hero,
.section {
  padding: 110px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
}

h1,
h2 {
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.1;
}

h1 {
  font-size: clamp(44px, 6vw, 82px);
  max-width: 600px;
  font-size: 60px;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
}

p {
  color: var(--text);
  line-height: 1.1;
  margin-top: 20px;
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 30px;
  border: 1px solid var(--blue);
}

.btn.outline {
  background: #fff;
  color: var(--dark);
  border-color: var(--border);
  margin-left: 12px;
}

.btn.small {
  padding: 12px 20px;
  font-size: 13px;
  margin-top: 0;
  color: #fff;
}

.hero-img {
    width: 100%;
}
.about-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 50px;
}

.tags span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--text);
  font-size: 13px;
}

.center {
  text-align: center;
  justify-content: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.steps b {
  display: inline-flex;
  background: var(--blue);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.steps h3,
.cards h3 {
  text-transform: uppercase;
  margin-top: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 60px 0;
  text-align: left;
}

.cards article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 35px rgba(0,0,0,.05);
}

.cards img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 18px;
}

.cards span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cards a {
  display: block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  text-align: left;
}

.reviews div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  color: var(--blue);
  font-weight: 800;
}

.cta {
  background: #fbf8f1;
}

footer {
  border-top: 1px solid var(--border);
  padding: 45px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  margin: 6px 0 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav nav {
    display: none;
  }

  .grid,
  .cards,
  .reviews,
  .steps {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    line-height: 1.1;
  }

  .hero,
  .section {
    padding: 15px 0;
  }

  .footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}