*{margin:0;padding:0;box-sizing:border-box}
:root{
  --orange:#f1560c;
  --orange-dark:#d14a0a;
  --teal:#0f484d;
  --teal-dark:#0a3337;
  --off-white:#F2F0EB;
  --white:#FFFFFF;
  --gray:#6B6B6B;
  --light-gray:#E8E6E1;
  --text-dark:#1A1A1A;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text-dark);background:var(--white);line-height:1.6;padding-top:64px}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(255,255,255,0.97);backdrop-filter:blur(8px);border-bottom:1px solid var(--light-gray);padding:0 5%}
.nav-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:64px}
.logo img{height:100px;width:auto;display:block}
.logo{text-decoration:none;display:inline-flex;align-items:center}
.nav-links{display:flex;gap:28px;list-style:none;align-items:center}
.nav-links a{color:var(--teal);font-weight:500;font-size:14px;text-decoration:none;transition:color 0.2s}
.nav-links a:hover{color:var(--orange)}
.nav-cta{background:var(--orange);color:var(--white);padding:10px 20px;border-radius:6px;font-weight:700;font-size:14px;text-decoration:none;transition:background 0.2s;white-space:nowrap}
.nav-cta:hover{background:var(--orange-dark)}
.hamburger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px;padding:4px}
.hamburger span{display:block;width:22px;height:2px;background:var(--teal);border-radius:2px}
.mobile-menu{display:none;position:fixed;top:64px;left:0;right:0;background:var(--white);border-bottom:1px solid var(--light-gray);padding:20px 5%;z-index:99;flex-direction:column}
.mobile-menu.open{display:flex}
.mobile-menu a{color:var(--teal);font-weight:600;font-size:16px;text-decoration:none;padding:14px 0;border-bottom:1px solid var(--light-gray)}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu .mob-cta{color:var(--orange)}
@media(max-width:680px){.nav-links,.nav-cta{display:none}.hamburger{display:flex}}

/* FOOTER */
footer{background:#0a2e30;padding:36px 5%}
.footer-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px}
.footer-logo{height:44px;width:auto;filter:brightness(0) invert(1)}
.footer-links{display:flex;gap:12px}
.footer-links a{color:rgba(255,255,255,0.5);text-decoration:none;transition:color 0.2s;display:flex;align-items:center;justify-content:center;width:36px;height:36px;border:1px solid rgba(255,255,255,0.15);border-radius:8px}
.footer-links a:hover{color:var(--orange);border-color:var(--orange)}
.footer-links svg{width:16px;height:16px;fill:currentColor}
.footer-copy{color:rgba(255,255,255,0.25);font-size:12px;width:100%;text-align:center;margin-top:20px;padding-top:20px;border-top:1px solid rgba(255,255,255,0.07)}

/* BUTTONS */
.btn-primary{background:var(--orange);color:var(--white);padding:16px 32px;border-radius:8px;font-weight:800;font-size:16px;text-decoration:none;border:none;cursor:pointer;transition:background 0.2s,transform 0.1s;display:inline-block;font-family:'Inter',sans-serif}
.btn-primary:hover{background:var(--orange-dark);transform:translateY(-1px)}
.btn-outline-white{background:transparent;color:var(--white);padding:16px 32px;border-radius:8px;font-weight:700;font-size:16px;text-decoration:none;border:2px solid rgba(255,255,255,0.4);transition:border-color 0.2s;display:inline-block}
.btn-outline-white:hover{border-color:rgba(255,255,255,0.8)}
.section-label{font-size:12px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--orange);margin-bottom:16px}
.section-inner{max-width:1100px;margin:0 auto}
