@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@400;600&display=swap');

:root {
  --orange:    #F5920A;
  --orange-dk: #C97500;
  --black:     #1A1A1C;
  --gray-dk:   #2E2E32;
  --gray-mid:  #6B6B72;
  --gray-lt:   #E4E3DF;
  --bg:        #F7F6F3;
  --white:     #FFFFFF;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.13);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --nav-h:     72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  line-height: 1.65;
  font-size: 16px;
}

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

/* ── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--gray-dk); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

/* ── LAYOUT ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark     { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--gray-dk); }
.btn-ghost    { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-ghost:hover { background: var(--orange); color: var(--white); }

/* ── NAV ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  display: flex; align-items: center;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
}
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-dk);
  transition: color .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--orange); }
.nav__cta { margin-left: 1rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all .3s; }
.nav__mobile { display: none; }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-lt);
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
  }
  .nav__mobile a {
    font-family: var(--font-head); font-size: .9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .04em; color: var(--gray-dk);
    padding: .5rem 0; border-bottom: 1px solid var(--gray-lt);
  }
  .nav__mobile a:last-child { border-bottom: none; }
  .nav__mobile .btn { width: 100%; justify-content: center; }
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  margin-top: var(--nav-h);
  background: var(--black);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1c 55%, #2e2417 100%);
}
.hero__accent {
  position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  background: var(--orange);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .08;
}
.hero__content {
  position: relative; z-index: 2;
  padding: 80px 0;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.72); max-width: 520px; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CARDS ───────────────────────────────────── */
.cards-grid { display: grid; gap: 1.5rem; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card__icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--white); stroke-width: 2; }
.card__body { padding: 1.75rem; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p  { font-size: .95rem; }
.card__link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--orange);
  margin-top: 1.25rem; transition: gap .2s;
}
.card__link:hover { gap: .6rem; }
.card__img { width: 100%; height: 200px; object-fit: cover; background: var(--gray-lt); }

/* ── PHOTO PLACEHOLDER ───────────────────────── */
.photo-ph {
  width: 100%; height: 200px;
  background: repeating-linear-gradient(
    45deg,
    var(--gray-lt),
    var(--gray-lt) 6px,
    #ebe9e5 6px,
    #ebe9e5 12px
  );
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem;
  color: var(--gray-mid); font-family: monospace; font-size: .75rem; text-align: center;
}
.photo-ph svg { width: 32px; height: 32px; opacity: .4; }

/* ── VIDEO PLACEHOLDER ───────────────────────── */
.video-ph {
  width: 100%; aspect-ratio: 16/9;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; color: rgba(255,255,255,.5);
  font-family: monospace; font-size: .8rem; text-align: center;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.video-ph__play {
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.video-ph__play svg { width: 24px; height: 24px; fill: white; margin-left: 3px; }

/* ── SECTION HEADER ──────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center p { max-width: 560px; margin: .75rem auto 0; }
.section-header p { margin-top: .75rem; max-width: 560px; }

/* ── DIVIDER ─────────────────────────────────── */
.divider {
  width: 48px; height: 4px;
  background: var(--orange);
  border-radius: 2px; margin: .75rem 0 1rem;
}
.divider--center { margin: .75rem auto 1rem; }

/* ── DARK SECTION ────────────────────────────── */
.section-dark { background: var(--black); }
.section-dark h2, .section-dark h3, .section-dark .section-label { color: var(--white); }
.section-dark .divider { background: var(--orange); }
.section-dark p { color: rgba(255,255,255,.65); }

/* ── ORANGE SECTION ──────────────────────────── */
.section-orange { background: var(--orange); }
.section-orange h2, .section-orange p { color: var(--white); }
.section-orange .divider { background: var(--white); }

/* ── APP CARD ────────────────────────────────── */
.app-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.app-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.app-card__badge {
  display: inline-block;
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: #FFF3E0; color: var(--orange-dk);
  padding: .3rem .75rem; border-radius: 20px;
  margin-bottom: 1rem; align-self: flex-start;
}
.app-card__name { font-family: var(--font-head); font-size: .8rem; color: var(--gray-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.app-card h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.app-card p  { font-size: .95rem; flex: 1; }
.app-card__footer { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--gray-lt); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.app-card__platform { font-size: .8rem; color: var(--gray-mid); font-family: var(--font-head); font-weight: 600; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  background: var(--orange);
  padding: 2rem 0;
}
.stats-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.stats-bar__item h3 { font-size: 2rem; color: var(--white); }
.stats-bar__item p  { font-size: .85rem; color: rgba(255,255,255,.8); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── FORM ────────────────────────────────────── */
.form-section { background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--gray-dk);
}
.form-group input, .form-group select, .form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; color: var(--black);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,146,10,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { margin-top: 1rem; padding: .75rem 1rem; border-radius: var(--radius); font-family: var(--font-head); font-size: .875rem; font-weight: 600; display: none; }
.form-msg.success { background: #E8F5E9; color: #2E7D32; display: block; }
.form-msg.error   { background: #FFEBEE; color: #C62828; display: block; }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--black); color: rgba(255,255,255,.7); padding: 56px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer__brand p { font-size: .9rem; max-width: 280px; line-height: 1.6; }
.footer__col h4 {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col ul a { font-size: .9rem; transition: color .2s; }
.footer__col ul a:hover { color: var(--orange); }
.footer__col .contact-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; margin-bottom: .6rem; }
.footer__col .contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--orange); fill: none; stroke-width: 2; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .82rem; }
.footer__bottom a { color: var(--orange); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--black);
  padding: 64px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero__accent {
  position: absolute; right: -5%; top: 0; width: 420px; height: 100%;
  background: var(--orange); opacity: .07;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero .section-label { color: var(--orange); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 600px; }

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .82rem; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.breadcrumb span { color: var(--orange); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1000px) {
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .cards-grid--3, .cards-grid--2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
}