:root {
  --orange: #ff8a00;
  --orange-dark: #f15a24;
  --lemon: #ffd84d;
  --lime: #a7d129;
  --mint: #eaffd0;
  --cream: #fff8e7;
  --white: #ffffff;
  --ink: #1e2a16;
  --muted: #66705e;
  --line: rgba(30, 42, 22, 0.12);
  --shadow: 0 24px 70px rgba(150, 93, 0, 0.17);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 216, 77, 0.4), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(167, 209, 41, 0.24), transparent 30rem),
    var(--cream);
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 231, 0.82);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}

.logo-mark {
  color: var(--orange);
  filter: drop-shadow(0 0 12px rgba(255, 138, 0, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--orange-dark);
}

.nav-button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink) !important;
  box-shadow: 0 10px 30px rgba(255, 138, 0, 0.16);
}

.hero,
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
}

.hero-grid,
.contact-grid,
.split-grid,
.cta-card,
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 12px;
}

.hero-text,
.text-block p,
.service-card p,
.why-card p,
.form-note {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(241, 90, 36, 0.28);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.full-width {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lemon);
}

.dashboard-top span:nth-child(2) {
  background: var(--orange);
}

.dashboard-top span:nth-child(3) {
  background: var(--lime);
}

.dashboard-metric {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--mint), #fff3b0);
  margin-bottom: 20px;
}

.dashboard-metric p {
  color: var(--muted);
  margin-bottom: 6px;
}

.dashboard-metric strong {
  font-size: 3.5rem;
  letter-spacing: -0.08em;
}

.chart-bars {
  height: 160px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  background: var(--ink);
  margin-bottom: 18px;
}

.chart-bars span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--lemon), var(--orange));
}

.campaign-list {
  display: grid;
  gap: 10px;
}

.campaign-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 248, 231, 0.8);
  color: var(--muted);
}

.campaign-list b {
  color: var(--ink);
  font-size: 0.82rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.lime { background: var(--lime); }
.orange { background: var(--orange); }
.lemon { background: var(--lemon); }

.hero-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg-one {
  width: 280px;
  height: 280px;
  background: var(--lemon);
  right: 4%;
  top: 80px;
}

.hero-bg-two {
  width: 180px;
  height: 180px;
  background: var(--lime);
  left: 8%;
  bottom: 20px;
}

.section {
  padding: 82px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 660px;
}

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

.service-card,
.why-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(150, 93, 0, 0.1);
}

.service-card {
  padding: 28px;
}

.service-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--cream);
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.split-section {
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.42), rgba(167, 209, 41, 0.22));
}

.text-block {
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  padding: 26px;
}

.why-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange-dark);
  font-weight: 900;
}

.why-card.featured {
  background: linear-gradient(135deg, var(--orange), var(--lemon));
}

.why-card.featured p,
.why-card.featured span {
  color: rgba(30, 42, 22, 0.78);
}

.cta-section {
  padding: 46px 0 92px;
}

.cta-card {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--lemon), var(--lime));
  box-shadow: var(--shadow);
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.footer a {
  margin-left: 18px;
  font-weight: 700;
}

.contact-grid {
  align-items: start;
}

/* 404 / error page — sticky footer + vertically centered content */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-page main {
  flex: 1;
  display: flex;
  align-items: center;
}

.error-page .hero {
  width: 100%;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 32px;
  gap: 14px;
  min-height: 320px;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 216, 77, 0.16);
  border: 1px solid rgba(255, 138, 0, 0.3);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 14px rgba(255, 216, 77, 0.08);
  margin-bottom: 8px;
}

.form-success-icon svg path {
  stroke: var(--orange);
}

.form-success h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.form-success p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-info div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.contact-info span {
  display: block;
  color: var(--orange-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-info a,
.contact-info p {
  font-weight: 700;
  margin: 0;
}

.contact-form {
  padding: 30px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 231, 0.75);
  font: inherit;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.14);
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.86rem;
}

.empty-field {
  min-height: 1.2em;
}

.mini-fruits {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 14px;
}

.mini-fruits span,
.fruit-float,
.form-fruit {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(150, 93, 0, 0.14);
}

.fruit-float {
  position: absolute;
  width: 64px;
  height: 64px;
  font-size: 1.8rem;
  z-index: 1;
}

.fruit-orange {
  top: 124px;
  left: 5%;
}

.fruit-pineapple {
  right: 10%;
  bottom: 84px;
}

.fruit-kiwi {
  top: 210px;
  right: 32%;
}

.contact-fruit {
  left: 8%;
  top: 96px;
}

.contact-fruit-2 {
  right: 9%;
  bottom: 70px;
}

.contact-form {
  position: relative;
}

.form-fruit {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
  background: rgba(255, 248, 231, 0.95);
}

@media (max-width: 920px) {
  .hero-grid,
  .contact-grid,
  .split-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .button-dark {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .fruit-float {
    display: none;
  }

  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 4px;
  }

  .hero,
  .contact-hero {
    padding-top: 54px;
  }

  .hero-stats,
  .cards-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 58px 0;
  }
}
