*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #333; background: #fff; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

:root {
  --orange: #E8611A;
  --orange-dark: #c9520f;
  --orange-light: #ff7a33;
  --black: #1a1a1a;
  --charcoal: #333333;
  --dark-bg: #111111;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #999999;
  --gray-600: #666666;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-loaded .fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .fade-up.visible { opacity: 1; transform: translateY(0); }
.js-loaded .fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .fade-left.visible { opacity: 1; transform: translateX(0); }
.js-loaded .fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .fade-right.visible { opacity: 1; transform: translateX(0); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height);
  background: rgba(26, 26, 26, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 1000; transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled { background: rgba(17, 17, 17, 0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.nav__logo { height: 40px; width: auto; max-width: 200px; object-fit: contain; position: relative; z-index: 1001; }
@media (min-width: 900px) {
  .nav__logo { height: 44px; max-width: 220px; }
}
.nav__links { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.nav__links a {
  color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.4px; text-transform: uppercase; padding: 8px 10px;
  border-radius: 4px; transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--orange); }
.nav__links a.nav-cta {
  background: var(--orange); color: var(--white); font-weight: 700;
  padding: 10px 18px; border-radius: 4px; margin-left: 6px;
}
.nav__links a.nav-cta:hover,
.nav__links a.nav-cta.active { background: var(--orange-dark); color: var(--white); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 32px; height: 32px; cursor: pointer; z-index: 1001;
  background: none; border: none; padding: 0;
}
.hamburger span {
  display: block; width: 28px; height: 3px; background: var(--white);
  border-radius: 2px; transition: transform 0.35s ease, opacity 0.25s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: 100%;
  height: 100vh; height: 100dvh; background: rgba(17,17,17,0.98);
  backdrop-filter: blur(20px); z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  overflow-y: auto; padding: 80px 20px 40px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  color: var(--white); font-size: 1.25rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; padding: 10px 24px;
}
.mobile-menu a:hover { color: var(--orange); }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden; background: var(--black);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(232,97,26,0.03) 60px, rgba(232,97,26,0.03) 61px),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(232,97,26,0.03) 60px, rgba(232,97,26,0.03) 61px),
    radial-gradient(ellipse at 20% 80%, rgba(232,97,26,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232,97,26,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #222 60%, #1a1a1a 100%);
  z-index: 0;
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: 0.5;
}
.hero__bg::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom right, transparent 49.5%, var(--white) 50%); z-index: 1;
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 920px; }
.hero__badge {
  display: inline-block; color: var(--orange); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 24px;
  position: relative; padding: 0 20px;
}
.hero__badge::before, .hero__badge::after {
  content: ''; position: absolute; top: 50%; width: 40px; height: 2px; background: var(--orange);
}
.hero__badge::before { right: 100%; }
.hero__badge::after { left: 100%; }
.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: var(--white);
  line-height: 1.05; margin-bottom: 16px; text-transform: uppercase; letter-spacing: -1px;
}
.hero__title span { color: var(--orange); display: block; }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.65);
  font-weight: 300; letter-spacing: 2px; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'Roboto', sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 36px; border: none; border-radius: 4px; cursor: pointer; transition: all var(--transition);
}
.btn--primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 20px rgba(232,97,26,0.3); }
.btn--primary:hover { background: var(--orange-dark); box-shadow: 0 6px 30px rgba(232,97,26,0.4); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--charcoal); transform: translateY(-2px); }
.btn--sm { padding: 12px 24px; font-size: 0.85rem; }

/* SECTIONS */
.section { padding: 100px 0; position: relative; }
.section--dark { background: var(--dark-bg); color: var(--white); }
.section--gray { background: var(--gray-100); }
.section--orange { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); color: var(--white); }
.section__label {
  display: inline-block; color: var(--orange); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.section--dark .section__label,
.section--orange .section__label { color: rgba(255,255,255,0.85); }
.section__title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase;
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.5px;
}
.section__title--light { color: var(--white); }
.section__divider {
  width: 60px; height: 4px; background: var(--orange); margin-bottom: 32px; border-radius: 2px;
}
.section__divider--center { margin-left: auto; margin-right: auto; }
.section__divider--light { background: rgba(255,255,255,0.5); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p {
  max-width: 720px; margin: 0 auto; font-size: 1.1rem; color: var(--gray-600); line-height: 1.8;
}
.section--dark .section-header p { color: rgba(255,255,255,0.65); }
.prose p { font-size: 1.1rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 20px; }
.section--dark .prose p { color: rgba(255,255,255,0.7); }
.prose p:last-child { margin-bottom: 0; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--top { align-items: start; }
.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child { order: 1; }

/* CHECK / OFFERING LISTS */
.check-list { display: grid; gap: 12px; }
.check-list--2 { grid-template-columns: 1fr 1fr; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.98rem; color: var(--gray-600); line-height: 1.5;
}
.section--dark .check-list li { color: rgba(255,255,255,0.75); }
.check-list li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
  background: rgba(232,97,26,0.12); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23E8611A' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* CAPABILITY PILLS */
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  background: rgba(232,97,26,0.08); border: 1px solid rgba(232,97,26,0.15);
  border-radius: 4px; padding: 10px 18px; font-size: 0.85rem; font-weight: 600;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px;
}
.section--dark .pill {
  background: rgba(232,97,26,0.15); border-color: rgba(232,97,26,0.3); color: var(--orange-light);
}

/* ABOUT */
.about { position: relative; overflow: hidden; }
.about::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232,97,26,0.08), transparent 70%);
}
.about__logo-area { display: flex; align-items: center; justify-content: center; position: relative; }
.about__logo-area img { max-width: 300px; position: relative; z-index: 1; }
.about__logo-area::before {
  content: ''; position: absolute; width: 280px; height: 280px;
  border: 2px solid rgba(232,97,26,0.15); border-radius: 50%;
}
.about__logo-area::after {
  content: ''; position: absolute; width: 340px; height: 340px;
  border: 1px solid rgba(232,97,26,0.08); border-radius: 50%;
}
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.about__stat {
  text-align: center; padding: 24px 12px; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; background: rgba(255,255,255,0.02);
}
.about__stat-number { font-size: 1.8rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.about__stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.services-grid--4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--white); border-radius: 8px; padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,97,26,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px; background: rgba(232,97,26,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon { background: var(--orange); }
.service-card__icon svg { width: 26px; height: 26px; color: var(--orange); transition: color var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card__title {
  font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.service-card__desc { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }

/* QUOTE */
.quote-block {
  background: var(--gray-100); border-left: 4px solid var(--orange);
  padding: 28px 32px; border-radius: 0 8px 8px 0; margin: 32px 0;
}
.quote-block p {
  font-size: 1.15rem; font-style: italic; color: var(--charcoal); line-height: 1.7; margin-bottom: 12px;
}
.quote-block cite { font-style: normal; font-weight: 700; color: var(--orange); font-size: 0.9rem; }

/* JOC */
.joc-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,97,26,0.1); color: var(--orange); font-weight: 700;
  padding: 10px 18px; border-radius: 4px; font-size: 0.95rem; margin: 20px 0;
}
.coop-logos {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  flex-wrap: wrap; margin: 40px 0; padding: 32px; background: var(--white);
  border-radius: 8px; border: 1px solid var(--gray-200);
}
.coop-logos img { max-height: 90px; width: auto; object-fit: contain; }
.coop-logos img.coop-tips { max-height: 70px; max-width: 280px; }
.joc-process-img {
  width: 100%; max-width: 900px; margin: 0 auto 48px; border-radius: 8px;
  box-shadow: var(--shadow-md); background: var(--white); padding: 24px;
}
.steps { display: grid; gap: 20px; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 24px;
}
.step__num {
  width: 56px; height: 56px; background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.25rem;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--black); text-transform: uppercase; letter-spacing: 0.3px; }
.step ul { display: grid; gap: 6px; }
.step li { font-size: 0.95rem; color: var(--gray-600); padding-left: 16px; position: relative; }
.step li::before { content: '•'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* FORM LAYOUTS */
.form-card {
  background: var(--white); border-radius: 8px; padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}
.form-card--dark {
  background: var(--black); border-color: transparent; color: var(--white);
}
.form-card--dark .form__label { color: rgba(255,255,255,0.7); }
.form-card--dark .form__input,
.form-card--dark .form__textarea,
.form-card--dark .form__select {
  /* background-color only — shorthand would reset select chevron (repeat/position/size) */
  background-color: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: var(--white);
}
.form-card--dark .form__input::placeholder,
.form-card--dark .form__textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-card h3 {
  font-size: 1.5rem; font-weight: 900; text-transform: uppercase;
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.form-card--dark h3 { color: var(--orange); }
.form-card .form-intro { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 28px; }
.form-card--dark .form-intro { color: rgba(255,255,255,0.55); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 18px; }
.form__label {
  display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--charcoal); margin-bottom: 8px;
}
.form__input, .form__textarea, .form__select {
  width: 100%; padding: 14px 18px; font-family: 'Roboto', sans-serif; font-size: 1rem;
  color: var(--charcoal); background: var(--white); border: 2px solid var(--gray-200);
  border-radius: 4px; transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.form-card--dark .form__select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,97,26,0.1);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__file {
  width: 100%; padding: 12px; font-family: 'Roboto', sans-serif; font-size: 0.9rem;
  color: var(--gray-600); background: var(--gray-100); border: 2px dashed var(--gray-200);
  border-radius: 4px; cursor: pointer;
}
.form-card--dark .form__file { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.form__check {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-size: 0.95rem; color: var(--gray-600);
}
.form-card--dark .form__check { color: rgba(255,255,255,0.7); }
.form__check input { width: 18px; height: 18px; accent-color: var(--orange); }
.form__submit { width: 100%; margin-top: 8px; }
.form__submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-status {
  display: none; margin-top: 16px; padding: 12px 16px; border-radius: 4px;
  font-size: 0.9rem; font-weight: 500;
}
.form-status.success { display: block; background: rgba(40,167,69,0.12); color: #1e7e34; border: 1px solid rgba(40,167,69,0.25); }
.form-status.error { display: block; background: rgba(220,53,69,0.1); color: #b02a37; border: 1px solid rgba(220,53,69,0.25); }
.form-card--dark .form-status.success { background: rgba(40,167,69,0.2); color: #7ddea0; }
.form-card--dark .form-status.error { background: rgba(220,53,69,0.2); color: #f1a0a8; }

/* TWO COL FORM SECTION */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-panel {
  padding: 40px; background: var(--black); border-radius: 8px; color: var(--white); height: 100%;
}
.info-panel h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }
.info-panel p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.info-panel ul { display: grid; gap: 10px; margin-bottom: 24px; }
.info-panel li {
  color: rgba(255,255,255,0.75); padding-left: 20px; position: relative; font-size: 0.95rem;
}
.info-panel li::before { content: '→'; position: absolute; left: 0; color: var(--orange); }
.doc-list { display: grid; gap: 10px; }
.doc-list li {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 12px 16px; color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.note-box {
  background: rgba(232,97,26,0.08); border: 1px solid rgba(232,97,26,0.2);
  border-radius: 6px; padding: 16px 18px; font-size: 0.9rem; color: var(--gray-600); margin-top: 20px;
}
.section--dark .note-box { color: rgba(255,255,255,0.7); background: rgba(232,97,26,0.12); }

/* LOCATIONS */
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.location-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 28px 24px; text-align: center; transition: all var(--transition);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(232,97,26,0.25); }
.location-card--hq { border-color: var(--orange); box-shadow: 0 0 0 1px rgba(232,97,26,0.2); }
.location-card__badge {
  display: inline-block; background: var(--orange); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px; margin-bottom: 12px;
}
.location-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.location-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }
.location-card a { color: var(--orange); font-weight: 600; }

/* COMING SOON */
.coming-soon {
  text-align: center; padding: 60px 40px; background: var(--white);
  border: 2px dashed var(--gray-200); border-radius: 12px;
}
.coming-soon h3 {
  font-size: 1.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; color: var(--black);
}
.coming-soon p { color: var(--gray-600); max-width: 520px; margin: 0 auto 24px; line-height: 1.7; }
.coming-soon__tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.coming-soon__tags span {
  background: var(--gray-100); border: 1px solid var(--gray-200); padding: 8px 16px;
  border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: var(--gray-600);
}

/* CONTACT INFO */
.contact-info { padding: 40px; background: var(--black); border-radius: 8px; color: var(--white); }
.contact-info__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; text-transform: uppercase; }
.contact-info__item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info__icon {
  width: 44px; height: 44px; background: rgba(232,97,26,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-info__label {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray-400); margin-bottom: 4px; font-weight: 500;
}
.contact-info__value { font-size: 1rem; color: var(--white); font-weight: 500; }
.contact-info__value a { color: var(--white); }
.contact-info__value a:hover { color: var(--orange); }
.contact-info__divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin: 28px 0; }
.contact-info__hours { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.contact-info__hours strong { color: rgba(255,255,255,0.8); }

/* FOOTER */
.footer { background: var(--black); padding: 60px 0 0; color: var(--white); position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark), var(--orange));
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { height: 56px; margin-bottom: 20px; }
.footer__desc { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 320px; }
.footer__heading {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--orange); margin-bottom: 24px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: rgba(255,255,255,0.5); font-size: 0.95rem; transition: color var(--transition), padding-left var(--transition); }
.footer__links a:hover { color: var(--orange); padding-left: 8px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.85rem; color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.35); }
.footer__bottom a:hover { color: var(--orange); }

.scroll-top {
  position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px;
  background: var(--orange); border: none; border-radius: 50%; color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(20px); transition: all var(--transition);
  z-index: 900; box-shadow: 0 4px 16px rgba(232,97,26,0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-4px); }
.scroll-top svg { width: 20px; height: 20px; }

/* VALUES STRIP */
.values-strip {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px;
}
.values-strip span {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8); padding: 8px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav__links a { font-size: 0.72rem; padding: 8px 8px; }
  .services-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .split { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 28px; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .section { padding: 72px 0; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > :first-child, .split--reverse > :last-child { order: initial; }
  .check-list--2 { grid-template-columns: 1fr; }
  .services-grid, .services-grid--4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .about__stats { grid-template-columns: 1fr; }
  .about__logo-area img { max-width: 200px; }
  .about__logo-area::before { width: 180px; height: 180px; }
  .about__logo-area::after { width: 220px; height: 220px; }
  .form-card, .info-panel, .contact-info { padding: 28px 22px; }
  .coop-logos { gap: 24px; padding: 24px; }
  .coop-logos img { max-height: 70px; }
  .step { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px; }
  .step__num { width: 44px; height: 44px; font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .hero__badge::before, .hero__badge::after { width: 24px; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 72px) 0 64px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(232,97,26,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(232,97,26,0.08) 0%, transparent 45%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section__label { color: var(--orange); }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  line-height: 1.7;
}
.page-hero .section__divider { margin-bottom: 20px; }

/* Home teaser cards */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.teaser-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,97,26,0.25);
}
.teaser-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--black);
}
.teaser-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.teaser-card .link-arrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.teaser-card:hover .link-arrow { color: var(--orange-dark); }

body:not(.page-home) .nav { background: rgba(17, 17, 17, 0.98); }

@media (max-width: 768px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-height) + 48px) 0 48px; }
}



/* ===== SEO / AEO: FAQ & BREADCRUMBS ===== */
.breadcrumbs {
  padding: 16px 0 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
body.page-home .breadcrumbs { display: none; }
.page-hero + .breadcrumbs,
.breadcrumbs {
  background: transparent;
  border-bottom: none;
  padding: 12px 0 0;
}
.page-hero .breadcrumbs,
.breadcrumbs--on-dark {
  position: relative;
  z-index: 1;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0;
}
.page-hero + nav.breadcrumbs .breadcrumbs__list,
.page-hero .breadcrumbs__list {
  color: rgba(255,255,255,0.55);
}
.breadcrumbs__list li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs__list li:not(:last-child)::after {
  content: '/';
  color: var(--gray-400);
  margin-left: 2px;
}
.page-hero + nav.breadcrumbs .breadcrumbs__list li:not(:last-child)::after {
  color: rgba(255,255,255,0.3);
}
.breadcrumbs__list a {
  color: var(--orange);
  font-weight: 500;
}
.page-hero + nav.breadcrumbs .breadcrumbs__list a {
  color: rgba(255,255,255,0.75);
}
.breadcrumbs__list a:hover { text-decoration: underline; }
.breadcrumbs__list [aria-current="page"] span {
  color: var(--charcoal);
  font-weight: 600;
}
.page-hero + nav.breadcrumbs .breadcrumbs__list [aria-current="page"] span {
  color: rgba(255,255,255,0.9);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: rgba(232,97,26,0.35);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232,97,26,0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 22px 20px;
}
.faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0;
}

/* Visually hidden but available to AT / parsers when needed */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ===== NEW LOGO SUITE ===== */
.about__logo-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.about__logo-area img {
  max-width: 280px;
}
.footer__logo {
  height: auto;
  width: auto;
  max-height: 44px;
  max-width: 200px;
  object-fit: contain;
}
