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

:root {
  --honey:       #E8A917;
  --honey-light: #F5CC4A;
  --honey-pale:  #FFF3D0;
  --wax:         #D4950A;
  --wax-dark:    #A06E00;
  --comb-bg:     #FFF8E7;
  --white:       #FFFFFF;
  --black:       #1A1A1A;
  --grey:        #4A4A4A;
  --grey-light:  #F7F4EE;
  --font-display: 'Baloo 2', cursive;
  --font-body:    'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--comb-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Honeycomb background pattern ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0 34L0 84V50l28-16 28 16v34L28 100z' fill='none' stroke='%23E8A917' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* ─── Utility ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ─── HEADER / NAV ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 248, 231, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--honey-light);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(232, 169, 23, 0.15); }

nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 12px 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem; color: var(--black);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--grey); font-weight: 600;
  font-size: 0.95rem; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--honey);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--wax-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--honey); color: var(--white) !important;
  padding: 8px 20px; border-radius: 24px; font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--wax) !important; transform: scale(1.04); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  width: 26px; height: 3px; background: var(--wax-dark);
  border-radius: 2px; transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 4px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
  border-radius: 2px;
}

/* ─── Hero hex background ─── */
.hero-hex-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(232, 169, 23, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(232, 169, 23, 0.15);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.35s ease,
              color 0.35s ease;
  user-select: none;
  will-change: transform;
}

.hero-hex--active {
  transform: rotate(60deg) scale(1.25);
  background: rgba(232, 169, 23, 0.2);
  color: rgba(160, 110, 0, 0.65);
}

.hero-hex--near {
  transform: rotate(30deg) scale(1.1);
  background: rgba(232, 169, 23, 0.1);
  color: rgba(232, 169, 23, 0.3);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--honey-pale); border: 1px solid var(--honey-light);
  padding: 6px 18px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 700; color: var(--wax-dark);
  margin-bottom: 24px;
}
.hero-badge .bee { font-size: 1.1rem; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.2;
  color: var(--black);
  max-width: 750px; margin: 0 auto 20px;
}
.hero h1 span { color: var(--honey); }

.hero p {
  font-size: 1.15rem; color: var(--grey);
  max-width: 620px; margin: 0 auto 36px;
  line-height: 1.8;
}

.btn {
  display: inline-block; padding: 14px 36px;
  background: var(--honey); color: var(--white);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; border: none; border-radius: 30px;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232, 169, 23, 0.3);
}
.btn:hover {
  background: var(--wax); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 169, 23, 0.4);
}
.btn-outline {
  background: transparent; color: var(--wax-dark);
  border: 2px solid var(--honey); box-shadow: none;
}
.btn-outline:hover {
  background: var(--honey-pale); box-shadow: none; transform: translateY(-2px);
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── SECTIONS ─── */
section { padding: 80px 0; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700;
  color: var(--honey); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; color: var(--black);
  margin-bottom: 16px; line-height: 1.25;
}

.section-desc {
  font-size: 1.05rem; color: var(--grey);
  max-width: 640px; line-height: 1.8;
}

/* ─── ABOUT ─── */
.about { background: var(--white); border-top: 3px solid var(--honey-light); }

.about-desc-top { margin-bottom: 18px; }

.about-regulated-desc {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 16px;
}

.about-regulated-note {
  font-size: 0.88rem;
  color: var(--wax-dark);
  margin-top: 16px;
  font-style: italic;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.about-right {
  background: var(--honey-pale);
  border-radius: 16px; padding: 36px;
  border-left: 4px solid var(--honey);
}
.about-right h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--wax-dark); margin-bottom: 14px;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.tag-list li {
  background: var(--white); border: 1px solid var(--honey-light);
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.9rem; font-weight: 600; color: var(--wax-dark);
}

/* ─── SERVICES ─── */
.services-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.services-intro .section-desc { margin: 0 auto; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(232, 169, 23, 0.15);
  border-radius: 16px; padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--honey);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(232, 169, 23, 0.12);
  border-color: var(--honey-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--honey-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--black); margin-bottom: 12px;
}

.service-list {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.service-list li {
  position: relative; padding-left: 18px;
  font-size: 0.95rem; color: var(--grey);
}
.service-list li::before {
  content: '⬡';
  position: absolute; left: 0; top: 0;
  color: var(--honey); font-size: 0.7rem;
}

.service-note {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--honey-pale);
  font-size: 0.9rem; color: var(--wax-dark);
  font-style: italic;
}

/* ─── FLEXIBLE SUPPORT ─── */
.flexible {
  background: linear-gradient(135deg, var(--honey) 0%, var(--wax) 100%);
  color: var(--white); text-align: center;
}
.flexible .section-label { color: rgba(255,255,255,0.7); }
.flexible .section-title { color: var(--white); }
.flexible .section-desc { color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto; }
.flexible-highlight {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 16px;
}

/* ─── WHY IT MATTERS ─── */
.why-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 40px;
}
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; border-radius: 12px;
  background: var(--comb-bg);
  transition: transform 0.2s;
}
.why-item:hover { transform: translateX(4px); }
.why-hex {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--honey);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem; font-weight: 800;
}
.why-item p { font-size: 0.95rem; color: var(--grey); }
.why-item strong { color: var(--black); }

.why-closing {
  margin-top: 40px; padding: 28px;
  background: var(--honey-pale); border-radius: 12px;
  text-align: center;
  font-size: 1.05rem; color: var(--wax-dark);
  font-weight: 600; line-height: 1.7;
  border: 1px solid var(--honey-light);
}

/* ─── CONTACT ─── */
.contact { position: relative; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--black); margin-bottom: 16px;
}
.contact-info p { color: var(--grey); font-size: 1.05rem; line-height: 1.8; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--honey-light);
  border-radius: 20px; padding: 40px;
  box-shadow: 0 8px 32px rgba(232, 169, 23, 0.08);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 700;
  font-size: 0.9rem; color: var(--black);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid #E8E4DB;
  border-radius: 10px; font-family: var(--font-body);
  font-size: 1rem; color: var(--black);
  background: var(--comb-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(232, 169, 23, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; font-size: 1.1rem; padding: 16px; }

.form-feedback {
  display: none;
  margin-top: 14px;
  text-align: center;
  font-weight: 700;
  color: var(--wax-dark);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 48px 0 32px; text-align: center;
}
footer .logo-footer {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.3rem;
  color: var(--honey); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
footer .logo-footer-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
footer .closing-line {
  max-width: 560px; margin: 0 auto 28px;
  font-size: 0.95rem; line-height: 1.7;
}
footer .footer-divider {
  width: 60px; height: 2px; background: var(--wax-dark);
  margin: 0 auto 20px; border-radius: 1px;
}
footer .footer-company {
  margin-bottom: 20px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}
footer .footer-company-name {
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
}
footer .copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
footer .footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
footer .footer-social-link svg {
  width: 18px;
  height: 18px;
}
footer .footer-social-link:hover {
  background: var(--honey);
  color: var(--white);
  transform: translateY(-2px);
}
footer .footer-sep { margin: 0 6px; opacity: 0.4; }
footer .footer-heart { color: #e05252; font-style: normal; }
footer .footer-dappulse-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
footer .footer-dappulse-link:hover { color: var(--honey); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255, 248, 231, 0.97);
    backdrop-filter: blur(12px);
    padding: 20px 24px; gap: 16px;
    border-bottom: 2px solid var(--honey-light);
  }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 70px; }
  .service-card { padding: 24px 20px; }
  .contact-form { padding: 28px 20px; }
}
