/* ============================================================
   MCKULA.COM — Shared Styles
   Used by both dark (Hire Us) and light (Join Our Team) sides
   ============================================================ */

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

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:root {
  --gold:         #179bc7;
  --gold-light:   #36B8D8;
  --gold-dark:    #0E7899;
  --gold-subtle:  rgba(23,155,199,0.12);
  --charcoal:     #111111;
  --charcoal-2:   #1A1A1A;
  --charcoal-3:   #222222;
  --cream:        #e8edf5;
  --cream-2:      #e8edf5;
  --cream-3:      #E2DAD0;
  --warm-dark:    #081419;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  999px;
  --transition:   0.2s ease;
  --max-w:        1140px;
  --gold-border:  rgba(23,155,199,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- SHARED NAV ---------- */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 239px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

/* ---------- SHARED BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(23,155,199,0.35);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-subtle);
}

.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover {
  background: var(--charcoal-2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: rgba(17,17,17,0.06);
}

/* ---------- SECTION LABELS ---------- */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
}

/* ---------- SHARED FOOTER ---------- */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--gold-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 48px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ---------- BADGE / PILL ---------- */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-gold {
  background: var(--gold-subtle);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.badge-dark {
  background: rgba(17,17,17,0.08);
  color: var(--charcoal);
  border: 1px solid rgba(17,17,17,0.15);
}

/* ---------- ICON SPRITE ---------- */
/* Sprite: 960×640px, 6 cols × 4 rows, 160×160px per cell.
   All positions hardcoded — no calc(), no variables.
   Row 0: laptop funnel gear lightbulb phone people
   Row 1: cloud check building search music envelope
   Row 2: globe location key document monitor chat
   Row 3: desktop home sun save cart clock            */

/* BASE — 44px display (background-size: 264×176) */
.icon-sp {
  display: inline-block;
  background-image: url('images/icons.png');
  background-repeat: no-repeat;
  background-size: 264px 176px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
/* row 0 */
.ic-laptop    { background-position:    0px    0px; }
.ic-funnel    { background-position:  -44px    0px; }
.ic-gear      { background-position:  -88px    0px; }
.ic-lightbulb { background-position: -132px    0px; }
.ic-phone     { background-position: -176px    0px; }
.ic-people    { background-position: -217px    0px; }
/* row 1 */
.ic-cloud     { background-position:    0px  -44px; }
.ic-check     { background-position:  -48px  -44px; }
.ic-building  { background-position:  -88px  -44px; }
.ic-search    { background-position: -130px  -44px; }
.ic-music     { background-position: -176px  -44px; }
.ic-envelope  { background-position: -220px  -44px; }
/* row 2 */
.ic-globe     { background-position:    -3px  -88px; }
.ic-location  { background-position:  -44px  -88px; }
.ic-key       { background-position:  -88px  -88px; }
.ic-document  { background-position: -132px  -88px; }
.ic-monitor   { background-position: -176px  -88px; }
.ic-chat      { background-position: -218px  -88px; }
/* row 3 */
.ic-desktop   { background-position:    0px -132px; }
.ic-home      { background-position:  -47px -132px; }
.ic-sun       { background-position:  -88px -132px; }
.ic-save      { background-position: -132px -132px; }
.ic-cart      { background-position: -176px -132px; }
.ic-clock     { background-position: -220px -132px; }

/* 52px — .service-icon (background-size: 312×208) */
.service-icon.icon-sp              { width: 52px; height: 52px; background-size: 312px 208px; }
.service-icon.ic-laptop            { background-position:    0px    0px; }
.service-icon.ic-funnel            { background-position:  -52px    0px; }
.service-icon.ic-gear              { background-position: -104px    0px; }
.service-icon.ic-lightbulb         { background-position: -156px    0px; }
.service-icon.ic-phone             { background-position: -208px    0px; }
.service-icon.ic-people            { background-position: -260px    0px; }
.service-icon.ic-cloud             { background-position:    0px  -52px; }
.service-icon.ic-check             { background-position:  -52px  -52px; }
.service-icon.ic-building          { background-position: -104px  -52px; }
.service-icon.ic-search            { background-position: -156px  -52px; }
.service-icon.ic-music             { background-position: -208px  -52px; }
.service-icon.ic-envelope          { background-position: -260px  -52px; }
.service-icon.ic-globe             { background-position:    0px -104px; }
.service-icon.ic-location          { background-position:  -52px -104px; }
.service-icon.ic-key               { background-position: -104px -104px; }
.service-icon.ic-document          { background-position: -153px -104px; }
.service-icon.ic-monitor           { background-position: -208px -104px; }
.service-icon.ic-chat              { background-position: -260px -104px; }
.service-icon.ic-desktop           { background-position:    0px -156px; }
.service-icon.ic-home              { background-position:  -52px -156px; }
.service-icon.ic-sun               { background-position: -104px -156px; }
.service-icon.ic-save              { background-position: -156px -156px; }
.service-icon.ic-cart              { background-position: -208px -156px; }
.service-icon.ic-clock             { background-position: -260px -156px; }

/* 48px — .benefit-icon (background-size: 288×192) */
.benefit-icon.icon-sp              { width: 48px; height: 48px; background-size: 288px 192px; }
.benefit-icon.ic-laptop            { background-position:    0px    0px; }
.benefit-icon.ic-funnel            { background-position:  -48px    0px; }
.benefit-icon.ic-gear              { background-position:  -96px    0px; }
.benefit-icon.ic-lightbulb         { background-position: -144px    0px; }
.benefit-icon.ic-phone             { background-position: -192px    0px; }
.benefit-icon.ic-people            { background-position: -236px    0px; }
.benefit-icon.ic-cloud             { background-position:    0px  -48px; }
.benefit-icon.ic-check             { background-position:  -51px  -48px; }
.benefit-icon.ic-building          { background-position:  -96px  -48px; }
.benefit-icon.ic-search            { background-position: -144px  -48px; }
.benefit-icon.ic-music             { background-position: -192px  -48px; }
.benefit-icon.ic-envelope          { background-position: -240px  -48px; }
.benefit-icon.ic-globe             { background-position:    0px  -96px; }
.benefit-icon.ic-location          { background-position:  -48px  -96px; }
.benefit-icon.ic-key               { background-position:  -96px  -96px; }
.benefit-icon.ic-document          { background-position: -142px  -96px; }
.benefit-icon.ic-monitor           { background-position: -192px  -96px; }
.benefit-icon.ic-chat              { background-position: -240px  -96px; }
.benefit-icon.ic-desktop           { background-position:    0px -144px; }
.benefit-icon.ic-home              { background-position:  -51px -144px; }
.benefit-icon.ic-sun               { background-position:  -96px -144px; }
.benefit-icon.ic-save              { background-position: -144px -144px; }
.benefit-icon.ic-cart              { background-position: -192px -144px; }
.benefit-icon.ic-clock             { background-position: -240px -144px; }

/* 40px — .lounge-card-icon (background-size: 240×160) */
.lounge-card-icon.icon-sp          { width: 40px; height: 40px; background-size: 240px 160px; }
.lounge-card-icon.ic-laptop        { background-position:    0px    0px; }
.lounge-card-icon.ic-funnel        { background-position:  -40px    0px; }
.lounge-card-icon.ic-gear          { background-position:  -80px    0px; }
.lounge-card-icon.ic-lightbulb     { background-position: -120px    0px; }
.lounge-card-icon.ic-phone         { background-position: -160px    0px; }
.lounge-card-icon.ic-people        { background-position: -200px    0px; }
.lounge-card-icon.ic-cloud         { background-position:    0px  -40px; }
.lounge-card-icon.ic-check         { background-position:  -40px  -40px; }
.lounge-card-icon.ic-building      { background-position:  -80px  -40px; }
.lounge-card-icon.ic-search        { background-position: -120px  -40px; }
.lounge-card-icon.ic-music         { background-position: -160px  -40px; }
.lounge-card-icon.ic-envelope      { background-position: -200px  -40px; }
.lounge-card-icon.ic-globe         { background-position:    0px  -80px; }
.lounge-card-icon.ic-location      { background-position:  -40px  -80px; }
.lounge-card-icon.ic-key           { background-position:  -80px  -80px; }
.lounge-card-icon.ic-document      { background-position: -120px  -80px; }
.lounge-card-icon.ic-monitor       { background-position: -158px  -80px; }
.lounge-card-icon.ic-chat          { background-position: -200px  -80px; }
.lounge-card-icon.ic-desktop       { background-position:    -2px -120px; }
.lounge-card-icon.ic-home          { background-position:  -40px -120px; }
.lounge-card-icon.ic-sun           { background-position:  -80px -120px; }
.lounge-card-icon.ic-save          { background-position: -120px -120px; }
.lounge-card-icon.ic-cart          { background-position: -160px -120px; }
.lounge-card-icon.ic-clock         { background-position: -200px -120px; }

/* 36px — .proof-icon, .tech-tile-icon (background-size: 216×144) */
.proof-icon.icon-sp,
.tech-tile-icon.icon-sp            { width: 36px; height: 36px; background-size: 216px 144px; }
.proof-icon.ic-laptop,    .tech-tile-icon.ic-laptop    { background-position:    -2px    0px; }
.proof-icon.ic-funnel,    .tech-tile-icon.ic-funnel    { background-position:  -36px    0px; }
.proof-icon.ic-gear,      .tech-tile-icon.ic-gear      { background-position:  -72px    0px; }
.proof-icon.ic-lightbulb, .tech-tile-icon.ic-lightbulb { background-position: -106px    0px; }
.proof-icon.ic-phone,     .tech-tile-icon.ic-phone     { background-position: -140px    0px; }
.proof-icon.ic-people,    .tech-tile-icon.ic-people    { background-position: -178px    0px; }
.proof-icon.ic-cloud,     .tech-tile-icon.ic-cloud     { background-position:    0px  -36px; }
.proof-icon.ic-check,     .tech-tile-icon.ic-check     { background-position:  -36px  -36px; }
.proof-icon.ic-building,  .tech-tile-icon.ic-building  { background-position:  -72px  -36px; }
.proof-icon.ic-search,    .tech-tile-icon.ic-search    { background-position: -108px  -36px; }
.proof-icon.ic-music,     .tech-tile-icon.ic-music     { background-position: -144px  -36px; }
.proof-icon.ic-envelope,  .tech-tile-icon.ic-envelope  { background-position: -180px  -36px; }
.proof-icon.ic-globe,     .tech-tile-icon.ic-globe     { background-position:    0px  -72px; }
.proof-icon.ic-location,  .tech-tile-icon.ic-location  { background-position:  -36px  -72px; }
.proof-icon.ic-key,       .tech-tile-icon.ic-key       { background-position:  -72px  -72px; }
.proof-icon.ic-document,  .tech-tile-icon.ic-document  { background-position: -108px  -72px; }
.proof-icon.ic-monitor,   .tech-tile-icon.ic-monitor   { background-position: -144px  -72px; }
.proof-icon.ic-chat,      .tech-tile-icon.ic-chat      { background-position: -180px  -72px; }
.proof-icon.ic-desktop,   .tech-tile-icon.ic-desktop   { background-position:    -2px -108px; }
.proof-icon.ic-home,      .tech-tile-icon.ic-home      { background-position:  -39px -108px; }
.proof-icon.ic-sun,       .tech-tile-icon.ic-sun       { background-position:  -72px -108px; }
.proof-icon.ic-save,      .tech-tile-icon.ic-save      { background-position: -108px -108px; }
.proof-icon.ic-cart,      .tech-tile-icon.ic-cart      { background-position: -144px -108px; }
.proof-icon.ic-clock,     .tech-tile-icon.ic-clock     { background-position: -180px -108px; }

/* 32px — .founder-cred-icon (background-size: 192×128) */
.founder-cred-icon.icon-sp         { width: 32px; height: 32px; background-size: 192px 128px; }
.founder-cred-icon.ic-laptop       { background-position:    0px    0px; }
.founder-cred-icon.ic-funnel       { background-position:  -32px    0px; }
.founder-cred-icon.ic-gear         { background-position:  -64px    0px; }
.founder-cred-icon.ic-lightbulb    { background-position:  -96px    0px; }
.founder-cred-icon.ic-phone        { background-position: -128px    0px; }
.founder-cred-icon.ic-people       { background-position: -154px   0px; }
.founder-cred-icon.ic-cloud        { background-position:    0px  -32px; }
.founder-cred-icon.ic-check        { background-position:  -32px  -32px; }
.founder-cred-icon.ic-building     { background-position:  -64px  -32px; }
.founder-cred-icon.ic-search       { background-position:  -96px  -32px; }
.founder-cred-icon.ic-music        { background-position: -128px  -32px; }
.founder-cred-icon.ic-envelope     { background-position: -160px  -32px; }
.founder-cred-icon.ic-globe        { background-position:    0px  -64px; }
.founder-cred-icon.ic-location     { background-position:  -32px  -64px; }
.founder-cred-icon.ic-key          { background-position:  -64px  -64px; }
.founder-cred-icon.ic-document     { background-position:  -94px  -64px; }
.founder-cred-icon.ic-monitor      { background-position: -123px  -64px; }
.founder-cred-icon.ic-chat         { background-position: -160px  -64px; }
.founder-cred-icon.ic-desktop      { background-position:    0px  -96px; }
.founder-cred-icon.ic-home         { background-position:  -32px  -96px; }
.founder-cred-icon.ic-sun          { background-position:  -64px  -96px; }
.founder-cred-icon.ic-save         { background-position:  -96px  -96px; }
.founder-cred-icon.ic-cart         { background-position: -128px  -96px; }
.founder-cred-icon.ic-clock        { background-position: -160px  -96px; }

/* ---------- DIVIDER ---------- */
.divider-gold {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 32px;
}

/* ---------- STAT BLOCK ---------- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 24px 40px;
}

.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--gold-border);
}

/* ---------- FORM ---------- */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 96px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--gold-border);
  }
  .nav-links.open { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .stats-row { flex-direction: column; }
  .stat-divider { display: none; }
  .stat-item { padding: 16px 0; }
}
