:root {
  --BLACK: #000000;
  --WHITE: #FFFFFF;
}

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

.navbar {
  background-color: var(--BLACK);
  padding: 5px 16px;
}

.nav-link.active {
  font-weight: bold;
}

.navbar .nav-link {
  line-height: 1;
  padding: 5px !important;
}


.logo {
  display: inline-block;
  height: 45px;
  width: 45px;
}

.logo img {
  height: 100%;
  width: 100%;
}


@font-face {
  font-family: Albertus;
  src: url("../fonts/albr55w.ttf");
}

@font-face {
  font-family: VAGRoundedRegular;
  src: url("../fonts/VAGRoundedRegular.ttf");
}

.albertus-font {
  font-family: Albertus;
}

.vag-font {
  font-family: VAGRoundedRegular;
}

body {
  padding: 0;
  margin: 0;
  color: #333;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}

/* 1. Fluid Container */
.container {
  width: calc(100% - 32px);
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 16px;
}

/* 2. Hero & Buttons */
.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  color: #35603C;
  margin-bottom: 0.25em;
}
.hero .subtitle {
  font-size: 1.125rem;
  margin-bottom: 0.5em;
}
.hero .hero-text {
  margin-bottom: 1.5em;
}
.btn-primary {
  display: inline-block;
  background-color: #35603C;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
  background-color: #2b4f30;
}
.hero-btn {
  margin-top: 1em;
}

/* 3. Hero Animation & Form */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1.fade-in {
  animation: fadeIn 1s ease-out forwards;
}
.hero-form {
  display: flex;
  max-width: 500px;
  margin: 1em 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.hero-form input {
  flex: 1;
  padding: 0.75em 1em;
  border: 1px solid #ccc;
  transition: border-color 0.2s;
}
.hero-form input:focus {
  border-color: #35603C;
  outline: none;
}
.hero-form button {
  padding: 0 1.5em;
  background: #35603C;
  color: #fff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.2s;
}
.hero-form button:hover {
  background: #2b4f30;
}
.hero-img {
  width: 25vw;
  height: 100%;
}


/* 4. Info Section */
.info {
  margin-top: 3em;
  text-align: center;
}
.info h2 {
  color: #35603C;
  margin-bottom: 0.5em;
}
.info-sub {
  font-style: italic;
  margin-bottom: 1.5em;
}
.info-icon {
  min-width:120px;
  width: 120px;
  max-width: 30%;
  margin: 0 auto;
  display: block;
}

/* 5. Growth Section */
.growth {
  margin-top: 3em;
}
.growth h2 {
  color: #35603C;
  text-align: center;
  margin-bottom: 0.5em;
}
.growth .info-sub {
  color: #555;
  margin: 0.5em 0 1.5em;
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  margin-top: 1.5em;
}
.step {
  display: flex;
  align-items: flex-start;
}
.step img {
  width: 60px;
  flex-shrink: 0;
  margin-right: 1em;
}
.step-content h3 {
  margin-bottom: 0.5em;
  color: #35603C;
  font-size: 1.1rem;
}
.step-2-icon {
  margin-left: 1em !important;
  margin-right:0 !important;
}
.step-2 {
  display:flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
/* 6. Large CTA */
.cta-large {
  text-align: center;
  margin: 3em 0;
}
.cta-large h2 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  line-height: 1.3;
  color: #35603C;
  margin-bottom: 0.75em;
}

/* 7. Testimonial */
.testimonial {
  border-top: 1px solid #eaeaea;
  padding-top: 1.5em;
  margin-top: 2em;
}
.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1em;
  flex-shrink: 0;
}
.testimonial-text blockquote {
  font-style: italic;
  margin-bottom: 0.5em;
}
.author {
  font-weight: bold;
  color: #35603C;
  text-align:center;
  width:fit-content;
}
.author span {
  font-weight: normal;
  color: #555;
  font-size: 0.9em;
}


/* Desktops & up: 3-column steps, wider container */
@media (min-width: 1024px) {
  .container {
    width: calc(100% - 64px);
    max-width: 1200px;
    padding: 40px 32px;
  }
  .step-2 {
    display:flex;
    flex-direction: row;
  }
  .step-2-icon {
    margin-left: 0em !important;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step img {
    margin: 0 0 0.5em 0;
  }
  .testimonial img {
    margin-right: 1.5em;
  }
  .testimonial .author {
    margin-left:106px;
    text-align: left;
    margin-top:-37px;
  }
}
/* Mobile (≤600px): stack all steps, but reverse only Step 2 */
@media (max-width: 600px) {
  .steps {
    display: block;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5em;
  }
  .step img {
    width: 50px;
    margin-bottom: 0.5em;
  }
  .step.step--reverse {
    flex-direction: row-reverse;
  }
  .step.step--reverse img {
    margin: 0 0 0 0.5em;
  }
}

@media (max-width: 768px) {
  .hero-img {
    width: 50vw;
  }
}


footer {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  background-color: var(--BLACK);
  color: var(--WHITE);
}

footer p {
  margin: 0;
}
