:root {
  --green: #064e3b;
  --leaf: #16a34a;
  --cream: #f8faf7;
  --soft: #ecfdf5;
  --text: #1f2933;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: white;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(21, 128, 61, 0.25);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(21, 128, 61, 0.35);
}

.btn.small {
  padding: 12px 20px;
}

.btn.ghost {
  background: white;
  color: var(--green);
  border: 1px solid var(--green);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 56px 5%;
  margin: 28px auto;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
  border-radius: 30px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--leaf);
  font-weight: 900;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 10px 0;
  color: var(--green);
}

.lead {
  font-size: 20px;
  line-height: 1.6;
  color: #475569;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.trust-row span {
  background: white;
  border: 1px solid #dcfce7;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  color: var(--green);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.hero-card img,
.rounded {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* SECTIONS */
.section {
  background: white;
  border-radius: 28px;
  padding: 56px 48px;
  margin: 28px auto;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.section h2 {
  font-size: 42px;
  color: var(--green);
  margin: 8px 0 28px;
}

/* WHY CHOOSE */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.why-card {
  background: white;
  border: 1px solid #dcfce7;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.why-card h3 {
  color: var(--green);
  font-size: 22px;
  margin-bottom: 12px;
}

.why-card p {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

/* PRODUCT CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cards article,
.price-card,
form {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #dcfce7;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.cards article:hover,
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.cards h3 {
  font-size: 28px;
  color: var(--green);
  margin: 0 0 10px;
}

.cards span {
  color: #65a30d;
  font-weight: 900;
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 14px 0;
  padding-left: 34px;
  position: relative;
  font-size: 18px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #65a30d;
  font-weight: 900;
}

/* PRICE */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.price-card {
  min-height: 220px;
}

.price-card h3 {
  margin-top: 0;
  color: var(--green);
}

.price {
  font-size: 38px;
  font-weight: 900;
  color: #65a30d;
  margin: 8px 0;
}

.highlight {
  border: 3px solid #65a30d;
}

/* DELIVERY */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.areas span {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}

/* ORDER */
.order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  background: linear-gradient(135deg, #064e3b, #15803d);
  color: white;
}

.order h2,
.order .eyebrow,
.order p {
  color: white;
}

input,
select,
textarea {
  width: 100%;
  padding: 16px;
  margin: 8px 0;
  border: 1px solid #cbd7c3;
  border-radius: 16px;
  font-size: 16px;
}

textarea {
  min-height: 110px;
}

.order input,
.order select,
.order textarea {
  border: none;
}

.order .btn {
  width: 100%;
  background: #facc15;
  color: #1f2933;
}

.form-note {
  color: #d1fae5 !important;
  font-size: 13px;
  font-weight: 600;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
  border: 1px solid #bbf7d0;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.testimonial-card::before {
  content: "★★★★★";
  display: block;
  color: #facc15;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card::after {
  content: "🌱";
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 32px;
  opacity: 0.25;
}

.testimonial-user {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 19px;
  line-height: 1.7;
  color: #1f2933;
  font-weight: 500;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: #064e3b;
  font-size: 16px;
  font-weight: 900;
}

/* INSTAGRAM */
.instagram-section {
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.instagram-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: white;
  border: 1px solid #dcfce7;
  border-radius: 24px;
  padding: 28px;
}

.instagram-box p {
  font-size: 20px;
  font-weight: 700;
  color: #064e3b;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.35);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* FOOTER */
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px;
  background: var(--green);
  color: white;
  text-align: center;
}

footer img {
  width: 50px;
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 850px) {
  nav {
    display: none;
  }

  .hero,
  .split,
  .order {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 36px 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .grid,
  .price-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 36px 24px;
  }

  .section h2 {
    font-size: 32px;
  }

  .instagram-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* PREMIUM ORDER FORM UPGRADE */

.order form {
  background: #ffffff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.order input,
.order select,
.order textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #1f2933;
  outline: none;
}

.order input:focus,
.order select:focus,
.order textarea:focus {
  border-color: #16a34a;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.order select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #064e3b 50%),
                    linear-gradient(135deg, #064e3b 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.order textarea {
  min-height: 120px;
  resize: vertical;
}

.order .btn {
  margin-top: 8px;
  height: 56px;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.form-note {
  margin-top: 14px;
  color: #065f46 !important;
  opacity: 0.8;
}

/* PREMIUM ORGANIC ORDER FORM THEME */

.order {
  background: linear-gradient(135deg, #064e3b, #0f7a45);
}

.order form {
  background: linear-gradient(180deg, #ffffff, #f7fff9);
  border: 1px solid #bbf7d0;
}

.order input,
.order select,
.order textarea {
  background: #f9fffb;
  border: 1px solid #c7ead3;
  color: #123524;
}

.order input::placeholder,
.order textarea::placeholder {
  color: #6b7c72;
}

.order input:focus,
.order select:focus,
.order textarea:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.order select {
  color: #064e3b;
  font-weight: 700;
}

.order .btn {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #173b22;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.35);
}

.order .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.45);
}

.form-note {
  color: #047857 !important;
  font-weight: 700;
}