/* [project]/app/globals.css [app-client] (css) */
:root {
  --red: #e2001a;
  --red-dark: #b40015;
  --black: #0c0c0d;
  --ink: #171717;
  --muted: #5b5f66;
  --line: #e8e8ea;
  --panel: #f7f7f8;
  --page: #fff;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  background: var(--page);
  color: var(--ink);
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.eyebrow:before {
  content: "";
  background: var(--red);
  width: 22px;
  height: 2px;
  display: inline-block;
}

.section-title {
  letter-spacing: -.02em;
  color: var(--black);
  margin-top: 10px;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head .section-sub {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: .95rem;
  font-weight: 700;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
  display: inline-flex;
}

.btn:active {
  transform: scale(.97);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-outline {
  color: var(--black);
  border-color: var(--black);
  background: none;
}

.btn-outline:hover {
  background: var(--black);
  color: #fff;
}

.btn-outline-light {
  color: #fff;
  background: none;
  border-color: #ffffff80;
}

.btn-outline-light:hover {
  color: var(--black);
  background: #fff;
  border-color: #fff;
}

.site-header {
  z-index: 50;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  background: #ffffffe6;
  position: sticky;
  top: 0;
}

.site-header .container {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 84px;
  display: flex;
}

.brand {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.brand img {
  width: auto;
  height: 40px;
}

.nav-desktop {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 34px;
  display: flex;
}

.nav-desktop a {
  color: var(--ink);
  padding: 6px 0;
  font-size: .95rem;
  font-weight: 600;
  position: relative;
}

.nav-desktop a:hover {
  color: var(--red);
}

.header-actions {
  flex-shrink: 0;
  align-items: center;
  gap: 18px;
  display: flex;
}

.header-phone {
  color: var(--black);
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
}

.header-phone svg {
  color: var(--red);
  flex-shrink: 0;
}

.nav-toggle {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  display: none;
}

.nav-toggle span {
  background: var(--black);
  width: 24px;
  height: 2px;
  display: block;
}

.nav-mobile {
  border-bottom: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  padding: 8px 24px 22px;
  display: none;
}

.nav-mobile a {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-weight: 600;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile.open {
  display: flex;
}

.hero {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(720px 420px at 88% -10%, #e2001a59, #0000 60%), radial-gradient(600px 400px at 100% 100%, #e2001a2e, #0000 60%);
  position: absolute;
  inset: 0;
}

.hero .container {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  position: relative;
}

.hero-eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff5468;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.hero-eyebrow:before {
  content: "";
  background: var(--red);
  width: 22px;
  height: 2px;
  display: inline-block;
}

.hero h1 {
  letter-spacing: -.02em;
  margin-top: 18px;
  font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero p.lead {
  color: #ffffffb8;
  max-width: 520px;
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  display: flex;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 52px;
  display: flex;
}

.hero-stat strong {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
}

.hero-stat span {
  color: #ffffff8c;
  font-size: .85rem;
}

.hero-panel {
  background: #131315;
  border: 1px solid #ffffff14;
  border-radius: 20px;
  padding: 36px;
  position: relative;
}

.hero-panel-logo {
  background: #fff;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  padding: 28px;
  display: flex;
}

.hero-panel-logo img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.hero-panel-list {
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  display: flex;
}

.hero-panel-item {
  color: #ffffffd9;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  display: flex;
}

.hero-panel-item .dot {
  width: 34px;
  height: 34px;
  color: var(--red);
  background: #e2001a26;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.metiers {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.metiers .container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  display: flex;
}

.metiers span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .88rem;
  font-weight: 700;
}

section {
  padding: 88px 0;
}

.section-alt {
  background: var(--panel);
}

.cat-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
}

.cat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.cat-card:hover {
  border-color: #0000;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px #0c0c0d14;
}

.cat-icon {
  background: var(--black);
  width: 54px;
  height: 54px;
  color: var(--red);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.cat-card h3 {
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 700;
}

.cat-card p {
  color: var(--muted);
  margin-top: 10px;
  font-size: .95rem;
  line-height: 1.6;
}

.cat-card .cat-link {
  color: var(--red);
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .88rem;
  font-weight: 700;
  display: inline-flex;
}

.why-wrap {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 64px;
  display: grid;
}

.why-list {
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
  display: flex;
}

.why-item {
  gap: 18px;
  display: flex;
}

.why-item .num {
  border: 2px solid var(--red);
  width: 40px;
  height: 40px;
  color: var(--red);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .9rem;
  font-weight: 800;
  display: flex;
}

.why-item h3 {
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 700;
}

.why-item p {
  color: var(--muted);
  margin-top: 4px;
  font-size: .95rem;
  line-height: 1.6;
}

.why-media {
  background: var(--black);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.why-media:before {
  content: "";
  background: radial-gradient(400px 260px at 100% 0, #e2001a66, #0000 60%);
  position: absolute;
  inset: 0;
}

.why-media-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
  position: relative;
}

.why-stat {
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  padding: 22px;
}

.why-stat strong {
  color: var(--red);
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.why-stat span {
  color: #ffffffb3;
  margin-top: 6px;
  font-size: .85rem;
  line-height: 1.4;
  display: block;
}

.about-wrap {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  display: grid;
}

.about-badge {
  border: 1px solid var(--line);
  color: var(--black);
  background: #fff;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
  box-shadow: 0 10px 30px #0c0c0d0f;
}

.about-badge .dot {
  background: var(--red);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.about-visual {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 48px;
  display: flex;
}

.about-visual img {
  width: 100%;
  max-width: 340px;
}

.contact-wrap {
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  display: grid;
}

.contact-info {
  background: var(--black);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-info:before {
  content: "";
  background: radial-gradient(400px 300px at 0 100%, #e2001a59, #0000 60%);
  position: absolute;
  inset: 0;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  position: relative;
}

.contact-info-list {
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
  display: flex;
  position: relative;
}

.contact-info-item {
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.contact-info-item .icon {
  color: #ff5468;
  background: #e2001a2e;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.contact-info-item h4 {
  margin: 0 0 4px;
  font-size: .95rem;
  font-weight: 700;
}

.contact-info-item p, .contact-info-item a {
  color: #ffffffad;
  font-size: .92rem;
  line-height: 1.55;
}

.contact-map {
  border: 1px solid #ffffff1f;
  border-radius: 14px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  border: 0;
  width: 100%;
  height: 200px;
  display: block;
}

.contact-form {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}

.contact-form h3 {
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 800;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
  display: grid;
}

.field {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--black);
  font-size: .85rem;
  font-weight: 700;
}

.field input, .field textarea, .field select {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: #fff;
  border-radius: 10px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .15s;
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--red);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  display: flex;
}

.form-status {
  font-size: .9rem;
  font-weight: 600;
}

.form-status.ok {
  color: #1a8a3f;
}

.form-status.err {
  color: var(--red);
}

.cta-band {
  background: var(--red);
  color: #fff;
  border-radius: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 56px;
  display: flex;
}

.cta-band h2 {
  max-width: 480px;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
}

.cta-band p {
  color: #ffffffd9;
  max-width: 480px;
  margin-top: 10px;
}

.cta-band .btn-dark {
  background: #0c0c0d;
}

.site-footer {
  background: var(--black);
  color: #ffffffb3;
  padding: 64px 0 28px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  display: grid;
}

.footer-brand img {
  filter: brightness(0) invert();
  height: 34px;
}

.footer-brand p {
  color: #ffffff8c;
  max-width: 280px;
  margin-top: 18px;
  font-size: .9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
  font-size: .9rem;
  font-weight: 700;
}

.footer-col ul {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.footer-col a, .footer-col p {
  color: #fff9;
  font-size: .9rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  color: #ffffff73;
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  padding-top: 24px;
  font-size: .82rem;
  display: flex;
}

@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }

  .why-wrap, .about-wrap, .contact-wrap {
    grid-template-columns: 1fr;
  }

  .why-media {
    order: -1;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-desktop, .header-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 64px 0;
  }

  .cat-grid, .form-row {
    grid-template-columns: 1fr;
  }

  .cta-band {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 36px 28px;
  }

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

  .contact-info, .contact-form, .about-visual {
    padding: 28px;
  }

  .hero-stats {
    gap: 28px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: initial;
    --lightningcss-dark: ;
    color-scheme: light;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/