@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --orange: #E2725B;
  --orange-dark: #C85A44;
  --orange-light: #FDF0ED;
  --gray: #7D7D7D;
  --charcoal: #1E1E1E;
  --off-white: #F4F2EF;
  --white: #FFFFFF;
  --border: #E5E3DF;
  --text: #1A1A1A;
  --text-muted: #888;
  --text-hint: #BBB;
  --green: #1D9E75;
  --green-light: #E1F5EE;
  --radius: 12px;
  --radius-sm: 7px;
  --nav-h: 58px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

#main-nav { position: sticky; top: 0; z-index: 200; background: var(--charcoal); display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: var(--nav-h); }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white); letter-spacing: .02em; text-decoration: none; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,.7); padding: 6px 10px; border-radius: 4px; transition: color .15s; display: flex; align-items: center; gap: 4px; text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.caret { width: 12px; height: 12px; transition: transform .2s; flex-shrink: 0; }
.nav-item.open .caret { transform: rotate(180deg); }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 7px 14px !important; border-radius: 6px !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px 0; }

.float-calc {
  position: fixed; bottom: 28px; right: 24px; z-index: 300;
  background: var(--orange); color: var(--white);
  border: none; border-radius: 99px;
  padding: 13px 20px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px rgba(226,114,91,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-calc:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(226,114,91,0.55); }
.float-calc svg { width: 18px; height: 18px; }

footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand { }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; color: var(--white); letter-spacing: 0.04em;
  display: block; margin-bottom: 10px;
}
.footer-logo span { color: var(--orange); }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 500; color: var(--white); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.15s; font-size: 14px;
  text-decoration: none;
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }

.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px; display: block;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1; letter-spacing: 0.01em; color: var(--text);
  margin-bottom: 14px;
}
.section-title span { color: var(--orange); }
.section-body { font-size: 15px; color: var(--text-muted); max-width: 580px; line-height: 1.75; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.15s; text-decoration: none; border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--orange-light); }
.btn svg { width: 16px; height: 16px; }

.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}

.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 99px;
  border: 1px solid var(--border); font-size: 12px;
  color: var(--text-muted); background: var(--white);
  cursor: pointer; transition: all 0.12s; user-select: none;
  font-family: 'DM Sans', sans-serif;
}
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.active { background: var(--orange); border-color: var(--orange); color: var(--white); font-weight: 500; }
.chip.disabled { background: #F5F5F5; color: var(--text-hint); pointer-events: none; }

.toggle {
  width: 42px; height: 24px; border-radius: 99px;
  background: #DDD; position: relative; cursor: pointer;
  transition: background 0.2s; flex-shrink: 0;
}
.toggle.on { background: var(--orange); }
.toggle::after {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); top: 3px; left: 3px;
  transition: left 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle.on::after { left: 21px; }

.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12px; color: var(--text-muted); }
.field input, .field select, .field textarea {
  height: 40px; background: #F9F8F7;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0 12px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--text); outline: none; transition: border-color 0.15s;
}
.field textarea { height: 80px; padding: 10px 12px; resize: none; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange); background: var(--white);
}

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500; padding: 4px 12px;
  border-radius: 99px; letter-spacing: 0.04em;
}
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-gray { background: #F0EFEC; color: var(--gray); }

.nav-item { position: relative; }
.caret { width: 12px; height: 12px; transition: transform .2s; flex-shrink: 0; }
.nav-item.open .caret { transform: rotate(180deg); }

.dropdown { visibility: hidden; opacity: 0; pointer-events: none; position: absolute; top: 100%; left: 0; padding-top: 8px; z-index: 300; transition: opacity .15s, visibility .15s; }
.dropdown-inner { background: var(--charcoal); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 8px; min-width: 260px; box-shadow: 0 8px 32px rgba(0,0,0,.35); }
.nav-item.open > .dropdown { visibility: visible; opacity: 1; pointer-events: auto; }

.acc-section-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.25); padding: 4px 6px 6px; display: block; }
.acc-grid { display: flex; flex-direction: column; gap: 2px; }

.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-sm); color: rgba(255,255,255,.7); font-size: 13px; transition: all .15s; text-decoration: none; }
.dropdown-item:hover { background: rgba(255,255,255,.06); color: var(--white); }
.dropdown-item:hover .dd-icon { background: var(--orange); }
.dropdown-item:hover .dd-icon svg { color: var(--white); }
.dd-icon { width: 30px; height: 30px; border-radius: 6px; background: rgba(226,114,91,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .12s; }
.dd-icon svg { width: 15px; height: 15px; color: var(--orange); transition: color .12s; }
.dd-text strong { display: block; font-size: 12px; font-weight: 500; color: var(--white); line-height: 1.3; }
.dd-text span { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 1px; }
.dropdown-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }
.dropdown-all { display: flex; align-items: center; gap: 6px; padding: 8px 10px; font-size: 12px; color: var(--orange); font-weight: 500; text-decoration: none; transition: opacity .15s; }
.dropdown-all:hover { opacity: .8; }
.dropdown-all svg { stroke: var(--orange); fill: none; }

.nav-toggle-btn { display: none; }

@media (max-width: 600px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--charcoal); padding: 6px 10px 10px; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,.08); max-height: calc(100vh - var(--nav-h)); overflow-y: auto; z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block !important; }
  .nav-links > li > a:not(.nav-cta) { display: block; padding: 11px 10px; font-size: 13px; color: rgba(255,255,255,.7); border-radius: 8px; width: 100%; }
  .nav-links > li > a.active { color: #fff; font-weight: 500; }
  .nav-links > li > a:hover { background: rgba(255,255,255,.05); color: #fff; }
  .nav-links > li.nav-item > div:first-child { display: flex; align-items: center; border-radius: 8px; margin-bottom: 2px; }
  .nav-links > li.nav-item > div:first-child > a { flex: 1; padding: 11px 10px; font-size: 13px; color: rgba(255,255,255,.7); }
  .nav-links > li.nav-item > div:first-child > a:hover { color: #fff; }
  .nav-toggle-btn { width: 38px; height: 38px; display: flex !important; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; border-radius: 6px; color: rgba(255,255,255,.45); transition: all .2s; flex-shrink: 0; }
  .nav-toggle-btn:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); }
  .nav-item.open .nav-toggle-btn { background: rgba(226,114,91,.12); color: var(--orange); }
  .dropdown { position: static !important; visibility: visible !important; opacity: 1 !important; pointer-events: auto !important; padding: 0 !important; transition: none !important; display: none !important; }
  .nav-item.open > .dropdown { display: block !important; }
  .dropdown-inner { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 8px; min-width: unset; box-shadow: none; margin: 0 0 6px 0; }
  .acc-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .dropdown-item { display: flex !important; flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px; border-radius: 8px; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05); }
  .dropdown-item:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); color: #fff; }
  .dd-text span { display: none; }
  .dropdown-divider { display: none; }
  .dropdown-all { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; padding: 8px 10px; border-radius: 8px; font-size: 12px; font-weight: 500; color: var(--orange); background: rgba(226,114,91,.06); border: 1px solid rgba(226,114,91,.1); }
  .dropdown-all:hover { background: rgba(226,114,91,.12); opacity: 1; }
  .nav-cta { display: block !important; width: 100%; text-align: center; padding: 11px 14px !important; margin-top: 6px; border-radius: 8px !important; }
}

.nav-link-label{
  font-size: 13px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: default;
  transition: color .15s;
}
.nav-item:hover .nav-link-label,
.nav-item.open .nav-link-label{
  color: var(--white);
}

.nav-logo{display:flex;align-items:center;gap:5px}
.nav-logo img{height:24px;width:auto;flex-shrink:0}
.nav-logo{font-size:24px}
.nav-logo .nav-logo-text{color:var(--white) !important}
.nav-logo-accent{color:var(--orange)}

@media (max-width:600px){
  .nav-logo img{height:20px}
  .nav-logo{font-size:20px}
}
