:root {
  --bg: #ffffff;
  --surface: #f5f9f7;
  --ink: #123123;
  --muted: #5b7165;
  --primary: #f5a623;
  --primary-dark: #d98c0b;
  --accent: #27ae60;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(18, 49, 35, 0.10);
  --max: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8f0eb;
}

.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.25rem; }
.brand-icon { font-size: 1.5rem; }
.brand-name { letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 24px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--primary-dark); }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost { background: transparent; border: 2px solid var(--primary); color: var(--primary-dark); }

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px clamp(16px, 4vw, 40px) 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #fff4df;
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 { font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.1; letter-spacing: -1px; }
.hero .accent { color: var(--primary-dark); }
.hero p { margin: 18px 0 26px; color: var(--muted); font-size: 1.1rem; max-width: 520px; }

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; color: var(--accent); }
.hero-stats span { color: var(--muted); }

.hero-visual { position: relative; height: 340px; }

.sun {
  position: absolute;
  top: -6px;
  right: 40px;
  font-size: 5rem;
  animation: spin 24s linear infinite;
}

.panel {
  position: absolute;
  width: 120px;
  height: 74px;
  background: #0f4a92;
  border-radius: 8px;
  box-shadow: inset 0 0 0 6px #e0e9f2, 0 10px 24px rgba(0,0,0,0.15);
}
.panel::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: repeating-linear-gradient(90deg, #38b6ff 0 22px, #0e3d78 22px 26px);
  border-radius: 4px;
}
.panel-1 { top: 90px; left: 10px; transform: rotate(-8deg); }
.panel-2 { top: 70px; left: 150px; transform: rotate(5deg); }

.house {
  position: absolute;
  bottom: 20px;
  left: 40px;
  width: 220px;
  height: 150px;
  background: #fdf6ec;
  border-radius: 10px 10px 0 0;
  box-shadow: var(--shadow);
}
.house::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -14px;
  width: 0;
  height: 0;
  border-left: 124px solid transparent;
  border-right: 124px solid transparent;
  border-bottom: 78px solid #f5a623;
}

/* Sections */
.section { padding: 70px clamp(16px, 4vw, 40px); max-width: var(--max); margin: 0 auto; }
.section.alt { max-width: none; background: linear-gradient(180deg, var(--surface), #eef6f1); margin-top: 20px; }
.section.alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.label {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); letter-spacing: -0.5px; }
.section-head p { color: var(--muted); margin-top: 8px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid #e8f0eb;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-6px); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* About */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.about-visual {
  display: grid;
  place-items: center;
  height: 300px;
  background: linear-gradient(135deg, #ffd489, #ffb54d);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 6rem;
}
.about-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 14px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.checklist { list-style: none; }
.checklist li { padding: 8px 0; padding-left: 30px; position: relative; font-weight: 500; }
.checklist li::before { content: "✔️"; position: absolute; left: 0; color: var(--accent); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; position: relative; }
.step { position: relative; background: #fff; border: 1px solid #e8f0eb; border-radius: var(--radius); padding: 30px 22px 24px; box-shadow: var(--shadow); text-align: center; }
.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.step-icon { font-size: 2.2rem; margin: 8px 0 10px; }
.step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.benefit { background: #fff; border: 1px solid #e8f0eb; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); text-align: center; transition: transform 0.2s ease; }
.benefit:hover { transform: translateY(-6px); }
.benefit-icon { font-size: 2.4rem; margin-bottom: 12px; }
.benefit h3 { margin-bottom: 6px; }
.benefit p { color: var(--muted); font-size: 0.9rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.member { text-align: center; padding: 28px 18px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid #e8f0eb; }
.member h3 { margin-top: 14px; font-size: 1.1rem; }
.member span { color: var(--muted); font-size: 0.9rem; }
.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.avatar-1 { background: linear-gradient(135deg, #f5a623, #e0552a); }
.avatar-2 { background: linear-gradient(135deg, #27ae60, #0f7c4a); }
.avatar-3 { background: linear-gradient(135deg, #0f4a92, #38b6ff); }
.avatar-4 { background: linear-gradient(135deg, #c552a8, #6a3aa8); }
.avatar-5 { background: linear-gradient(135deg, #38b6ff, #0e3d78); }
.avatar-6 { background: linear-gradient(135deg, #e0552a, #f5a623); }
.avatar-7 { background: linear-gradient(135deg, #0f7c4a, #123123); }
.avatar-8 { background: linear-gradient(135deg, #6a3aa8, #c552a8); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.gallery-item {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.95);
  transition: transform 0.2s ease;
}
.gallery-item:hover { transform: scale(1.03); }
.pic-icon { font-size: 3.5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.pic-cap { font-weight: 600; font-size: 0.95rem; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.gallery-item:nth-child(1) { background: linear-gradient(135deg, #0f4a92, #38b6ff); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #f5a623, #e0552a); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #27ae60, #0f7c4a); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #123123, #27ae60); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #e0552a, #b62a2a); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #0f4a92, #123123); }

/* Contact */
.contact { max-width: 720px; }
.contact-card {
  background: linear-gradient(160deg, #123123, #205a41);
  color: #fff;
  border-radius: 24px;
  padding: 44px clamp(20px, 5vw, 54px);
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card .label { color: #ffd489; }
.contact-card h2 { margin-bottom: 6px; }
.contact-card p { color: rgba(255,255,255,0.85); margin-bottom: 26px; }
.contact-form { display: grid; gap: 12px; text-align: left; }
.contact-form input,
.contact-form textarea {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.contact-form textarea { min-height: 90px; resize: vertical; }
.contact-form .btn { justify-self: center; width: 100%; margin-top: 6px; }
.form-msg { margin-top: 16px; padding: 14px; background: #27ae60; border-radius: 12px; font-weight: 600; }

/* Footer */
.footer {
  background: #0d2319;
  color: #cfe0d6;
  padding: 50px clamp(16px, 4vw, 40px) 24px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}
.footer .brand-name, .footer h4 { color: #fff; }
.footer-brand p { margin-top: 10px; font-size: 0.9rem; max-width: 240px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { margin-bottom: 8px; font-size: 1rem; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1e4231;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.social:hover { background: var(--primary); }
.social-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.copyright {
  max-width: var(--max);
  margin: 36px auto 0;
  border-top: 1px solid #1e4231;
  padding-top: 18px;
  font-size: 0.85rem;
  color: #7fa390;
}

@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 36px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { height: 280px; }
  .split { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .nav-links { display: none; }
}