@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Poppins-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/Poppins-SemiBold.otf") format("opentype");
}

@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/RobotoSlab-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/RobotoSlab-SemiBold.ttf") format("truetype");
}

:root {
  --black: #020617;
  --body: #1e293b;
  --emerald: #047857;
  --green-500: #10b981;
  --blue-100: #e4ecee;
  --pricing-blue: #bbdefb;
  --panel-gray: #eeeeee;
  --white: #feffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1),
    0 8px 10px -6px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.drawer-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.desktop-nav {
  display: block;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.desktop-nav-row {
  display: flex;
  justify-content: center;
  height: 100px;
  padding: 0 80px;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1536px;
  padding: 16px 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.logo-frame {
  display: flex;
  align-items: center;
  padding-right: 20px;
  border-right: 2px solid #d9d9d9;
}

.logo-frame img {
  width: auto;
  height: 34px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-dropdown {
  position: relative;
}

.nav-menu-button {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  margin: 0 10px;
  padding: 10px 12px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: capitalize;
  cursor: pointer;
}

.nav-menu-button:hover,
.nav-menu-button:focus-visible {
  background: rgba(4, 120, 87, 0.06);
  outline: none;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown:hover .chevron,
.nav-dropdown:focus-within .chevron {
  transform: translateY(2px) rotate(225deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 10px;
  display: grid;
  width: 192px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  transition: opacity 120ms ease, visibility 120ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  visibility: visible;
  opacity: 1;
}

.dropdown-panel a {
  display: flex;
  justify-content: center;
  padding: 12px;
  color: var(--green-500);
  font-size: 14px;
  font-weight: 600;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.mobile-nav {
  display: none;
  background: var(--white);
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 4px;
}

.mobile-logo {
  display: block;
  padding-left: 16px;
  margin-top: 8px;
}

.mobile-logo img {
  width: auto;
  height: 28px;
}

.mobile-menu-button,
.drawer-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu-button svg,
.drawer-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.drawer-head a {
  display: block;
  padding: 16px;
}

.drawer-head img {
  width: 120px;
  height: auto;
}

.drawer-close {
  margin-right: 16px;
  color: var(--emerald);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 40px 40px;
  background: var(--white);
}

.drawer-links a {
  padding: 0 0 18px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.drawer-links a:hover,
.drawer-links a:focus-visible {
  color: #374151;
  outline: none;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(15, 23, 42, 0.15);
}

body.drawer-open .drawer-scrim {
  display: block;
}

.page-content {
  margin-top: 100px;
}

section,
footer {
  scroll-margin-top: 101px;
}

.hero {
  width: 100%;
}

.hero-desktop {
  padding: 240px 0;
  background-image: url("assets/images/orange-tree.jpg");
  background-position: left center;
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

.hero-copy {
  padding: 0 32px;
}

.hero-copy-inner {
  width: 500px;
  max-width: 100%;
}

.hero-copy h1 {
  margin-bottom: 24px;
  color: var(--black);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy h3,
.mobile-hero-copy h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
}

.hero-copy h3:last-of-type,
.mobile-hero-copy h3:last-of-type {
  margin-bottom: 24px;
}

.hero-copy em,
.mobile-hero-copy em {
  font-style: italic;
  font-weight: 600;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-right: 24px;
  margin-top: 16px;
}

.hero-actions-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 222px;
  padding-right: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  padding: 10px 20px;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: var(--emerald);
}

.btn-secondary {
  color: var(--black);
  background: #eeeeee;
}

.hero-mobile {
  display: none;
}

.market-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  padding: 80px;
  background: var(--blue-100);
}

.section-heading {
  width: 100%;
  margin: 0 auto;
}

.section-heading h2 {
  margin: 48px;
  color: var(--black);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.market-section .section-heading h2 {
  margin: 0 32px;
}

.market-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 16px;
}

.market-card {
  width: 100%;
  max-width: 355px;
  padding-top: 8px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
}

.market-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.market-logo {
  width: 128px;
  height: 128px;
  margin: 20px auto;
  object-fit: contain;
}

.market-title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 80px;
  overflow: hidden;
}

.market-title-wrap h3 {
  padding: 8px 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: underline;
}

.market-card p {
  max-width: 268px;
  margin: 8px auto;
  color: var(--black);
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.market-card strong {
  font-weight: 600;
}

.market-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 136px;
  height: 44px;
  margin: 16px;
  padding: 20px;
  color: var(--white);
  background: var(--emerald);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.market-cta:hover,
.market-cta:focus-visible {
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
  outline: none;
}

.market-note {
  margin-top: 32px;
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.market-note a {
  color: var(--emerald);
  text-decoration: underline;
}

.mailing-note {
  margin-top: 16px;
  color: var(--black);
  font-size: 16px;
  text-align: center;
}

.mailing-note a {
  color: var(--emerald);
}

.how-section {
  width: 100%;
  background: var(--white);
}

.how-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1536px;
  padding: 0 32px 64px;
  margin: 0 auto;
}

.how-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  max-width: 350px;
  padding: 16px 32px 0;
  margin: 0 auto;
  background: var(--panel-gray);
  border-radius: 8px;
}

.how-card img {
  width: 170px;
  height: auto;
  margin: 8px auto;
}

.how-card h3 {
  margin: 0 auto 16px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.how-card p {
  margin: 0 auto 48px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.how-card a {
  color: #2563eb;
  text-decoration: underline;
}

.how-card:first-child a {
  color: #0284c7;
}

.pricing-section {
  width: 100%;
  background: var(--pricing-blue);
}

.pricing-inner {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  max-width: 1280px;
  padding-bottom: 64px;
  margin: 0 auto;
}

.pricing-inner .section-heading {
  grid-column: 1 / -1;
}

.pricing-inner .section-heading h2,
.benefits-section .section-heading h2 {
  font-size: 36px;
}

.pricing-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 0 32px;
}

.pricing-card {
  height: 100%;
  max-width: 380px;
  padding: 8px 32px;
  margin: 0 auto;
  color: var(--black);
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 160ms ease;
}

.pricing-card:hover,
.pricing-card:focus-within {
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1),
    0 4px 6px -4px rgba(15, 23, 42, 0.1);
}

.pricing-card h3 {
  padding: 16px;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.pricing-card p {
  margin-bottom: 16px;
  padding: 0 8px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.benefits-section {
  width: 100%;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  max-width: 1536px;
  padding: 0 20px 32px;
  margin: 20px auto 0;
}

.benefits-image {
  display: flex;
  grid-column: span 4;
  align-items: center;
  justify-content: center;
}

.benefits-image img {
  width: 550px;
  border-radius: 8px;
}

.benefits-copy {
  display: flex;
  grid-column: span 8;
  align-items: center;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.benefit-list h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.benefit-list h4 {
  margin-bottom: 4px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.benefit-list p {
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
}

.benefits-actions {
  display: grid;
  grid-column: 5 / span 8;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.benefits-actions-single {
  grid-template-columns: minmax(0, 1fr);
}

.benefits-actions .btn {
  max-width: 300px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  padding: 32px 0 16px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1536px;
  padding: 0 144px;
  margin: 0 auto;
}

.footer-brand {
  grid-column: span 2;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-brand p {
  width: 256px;
  margin: 16px 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}

.footer-email {
  color: var(--green-500);
  font-size: 16px;
}

.footer-links {
  grid-column: span 1;
}

.footer-links h3 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: var(--body);
  font-size: 14px;
}

.footer-links a:first-of-type {
  margin-top: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  text-decoration: underline;
  outline: none;
}

.footer-newsletter {
  grid-column: span 2;
}

.instagram-link {
  display: flex;
  align-items: center;
  max-width: 300px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.instagram-link svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  fill: gray;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: #374151;
  outline: none;
}

.footer-newsletter > p {
  max-width: 350px;
  margin: 12px 0;
  color: var(--black);
  font-size: 16px;
}

.newsletter-form {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 384px;
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  padding: 10px 92px 8px 0;
  color: var(--body);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9ca3af;
  outline: none;
}

.newsletter-form input:focus {
  border-bottom-color: #111827;
}

.newsletter-form button {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 7px 14px;
  color: var(--white);
  background: #2196f3;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: #1976d2;
  outline: none;
}

.newsletter-message {
  min-height: 22px;
  color: var(--emerald);
  font-size: 14px;
}

.copyright {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin: 24px 0;
  text-align: center;
}

.copyright p {
  color: var(--body);
  font-size: 14px;
}

@media (max-width: 1279px) {
  .desktop-nav-row {
    padding: 0 48px;
  }
}

@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--white);
  }

  .page-content {
    margin-top: 56px;
  }

  section,
  footer {
    scroll-margin-top: 57px;
  }

  .how-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 64px;
    padding-left: 64px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .benefits-image,
  .benefits-copy {
    grid-column: 1 / -1;
  }

  .benefits-grid {
    padding-top: 12px;
    margin: 0 auto;
  }

  .benefits-actions {
    grid-column: 3 / span 8;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 20px;
  }

  .footer-brand {
    grid-column: span 3;
  }

  .footer-brand p {
    width: 100%;
  }

  .footer-newsletter {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
    width: 100%;
  }

  .mobile-hero-image {
    width: 100%;
    padding-top: 288px;
    background-image: url("assets/images/orange-tree-2.jpg");
    background-attachment: fixed;
    background-position: left top;
    background-size: contain;
  }

  .mobile-hero-copy {
    width: 100%;
    padding: 48px 0;
    background: var(--white);
  }

  .mobile-hero-copy h1 {
    padding: 0 48px;
    margin-bottom: 24px;
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
  }

  .mobile-hero-copy h3 {
    padding: 0 16px;
    font-size: 18px;
    text-align: center;
  }

  .mobile-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 64px;
  }

  .mobile-hero-actions .btn {
    max-width: 300px;
    margin: 0 auto;
  }

  .market-section {
    gap: 24px;
    padding: 40px 16px 16px;
  }

  .market-section .section-heading h2,
  .section-heading h2,
  .pricing-inner .section-heading h2,
  .benefits-section .section-heading h2 {
    margin: 48px;
    font-size: 24px;
  }

  .market-section .section-heading h2 {
    margin: 0 32px;
  }

  .market-card-grid {
    gap: 32px;
  }

  .how-card-grid {
    grid-template-columns: 1fr;
    padding-right: 32px;
    padding-left: 32px;
  }

  .pricing-inner {
    display: block;
  }

  .benefits-grid {
    gap: 24px;
    padding: 12px 0 32px;
  }

  .benefits-image {
    padding: 0 8px;
  }

  .benefits-copy {
    padding: 0 16px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }

  .benefits-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 32px;
  }

  .benefits-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 20px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 639px) {
  .desktop-nav-row {
    padding: 0 8px;
  }

  .market-card {
    max-width: 100%;
  }

  .mobile-hero-actions {
    padding: 0 32px;
  }
}
