/* ── MR SOLUTIONS — DESIGN SYSTEM ── */
:root {
  --orange:       #FF6600;
  --orange-dark:  #E05500;
  --orange-light: #FFF0E6;
  --black:        #111111;
  --dark:         #1A1A1A;
  --gray-dark:    #3D3D3D;
  --gray-mid:     #6B6B6B;
  --gray-light:   #F5F5F5;
  --border:       #E8E8E8;
  --border-strong:#CCCCCC;
  --white:        #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --nav-h:        70px;
  --max-w:        1200px;
  --section-py:   80px;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-dark); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 100px; padding: 14px 28px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; }
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,102,0,0.3); }
.btn--outline { background: transparent; color: var(--black); border: 2px solid var(--border-strong); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: rgba(17,17,17,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.3s; }
.nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; gap: 40px; }
.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 36px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 32px; list-style: none; margin-left: auto; }
.nav__menu a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav__menu a:hover { color: var(--orange); }
.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: 24px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.3s; }
.nav__menu-mobile-only { display: none; }

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--dark); flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { padding: 12px 0; font-size: 16px; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__actions { display: none; }
  .nav__menu-mobile-only { display: block; padding-top: 12px; }
  .container { padding: 0 20px; }
}

/* ── SECTIONS ── */
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--gray-light); }
.section--dark { background: var(--dark); }
.section--orange { background: var(--orange); }
.section__head { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-headline { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; color: var(--black); line-height: 1.1; letter-spacing: -0.02em; }
.section-headline em { font-style: italic; font-weight: 300; color: var(--orange); }
.section-sub { font-size: 16px; color: var(--gray-mid); line-height: 1.7; margin-top: 14px; font-weight: 300; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── HERO ── */
.hero { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px; background: var(--dark); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(255,102,0,0.05) 100%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.display-headline { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; color: #fff; }
.display-headline em { font-style: italic; font-weight: 300; color: var(--orange); }
.hero__sub { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-top: 20px; font-weight: 300; max-width: 520px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,102,0,0.12); border: 1px solid rgba(255,102,0,0.2); border-radius: 100px; padding: 8px 16px; margin-top: 28px; }
.hero__badge-num { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--orange); }
.hero__badge-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.3; }

/* Hero visual */
.hero__visual { display: flex; flex-direction: column; gap: 14px; }
.hero__stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; transition: border-color 0.25s; }
.hero__stat-card:hover { border-color: rgba(255,102,0,0.3); }
.hero__stat-card__num { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.hero__stat-card__label { font-size: 13px; color: rgba(255,255,255,0.5); }
.hero__stat-card__desc { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 6px; line-height: 1.5; }

/* ── SERVICES ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; transition: all 0.25s; position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.25s; }
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(255,102,0,0.2); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon { width: 48px; height: 48px; background: var(--orange-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.svc-card__icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-card__title { font-size: 17px; font-weight: 700; color: var(--black); }
.svc-card__desc { font-size: 14px; color: var(--gray-mid); line-height: 1.7; flex: 1; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px; display: flex; gap: 18px; }
.why-card__icon { width: 48px; height: 48px; background: rgba(255,102,0,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-card__icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.why-card__desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── PROCESS ── */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.proc-grid::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, transparent, var(--border-strong), transparent); }
.proc-step { text-align: center; position: relative; }
.proc-step__num { width: 56px; height: 56px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-weight: 600; margin: 0 auto 20px; position: relative; z-index: 1; }
.proc-step__title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.proc-step__desc { font-size: 13px; color: var(--gray-mid); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info__item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info__icon { width: 40px; height: 40px; background: var(--orange-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-info__label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 3px; }
.contact-info__value { font-size: 15px; color: var(--black); font-weight: 500; }
.contact-info__value a { color: var(--black); transition: color 0.15s; }
.contact-info__value a:hover { color: var(--orange); }

/* Contact form */
.contact-form { background: var(--gray-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.contact-form p { font-size: 14px; color: var(--gray-mid); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 12px; font-weight: 700; color: var(--black); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select { width: 100%; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; font-family: var(--font-body); font-size: 14px; color: var(--black); outline: none; transition: border-color 0.2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--orange); color: #fff; border: none; border-radius: 100px; padding: 14px; font-family: var(--font-body); font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,102,0,0.3); }
.form-success { text-align: center; padding: 32px 0; color: var(--gray-mid); font-size: 15px; display: none; }
.form-success svg { width: 48px; height: 48px; stroke: var(--orange); fill: none; margin: 0 auto 16px; display: block; }

/* ── FOOTER ── */
.footer { background: #0A0A0A; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__brand-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; margin-top: 16px; max-width: 240px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer__social-link:hover { background: var(--orange); }
.footer__social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__social-link:hover svg { stroke: #fff; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer__col-links a:hover { color: var(--orange); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer__contact-item svg { width: 14px; height: 14px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer__contact-item span, .footer__contact-item a { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer__contact-item a:hover { color: var(--orange); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 12px; color: rgba(255,255,255,0.2); transition: color 0.15s; }
.footer__bottom-links a:hover { color: var(--orange); }

/* ── LEGAL ── */
.legal-hero { padding: 120px 0 40px; border-bottom: 1px solid var(--border); }
.legal-body { padding: 56px 0 80px; }
.legal-content { max-width: 720px; }
.legal-content p { font-size: 15px; color: var(--gray-mid); line-height: 1.8; margin-bottom: 20px; }
.legal-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--black); margin-top: 40px; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.legal-content ul li { font-size: 15px; color: var(--gray-mid); line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--orange); text-decoration: underline; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; transform: translateY(100%); transition: transform 0.35s ease; }
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner__text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-banner__text strong { color: rgba(255,255,255,0.8); }
.cookie-banner__text a { color: var(--orange); text-decoration: underline; margin-left: 6px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__decline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); border-radius: 100px; padding: 8px 18px; font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.cookie-banner__decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
.cookie-banner__accept { background: var(--orange); border: none; color: #fff; border-radius: 100px; padding: 8px 20px; font-family: var(--font-body); font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.cookie-banner__accept:hover { background: var(--orange-dark); }

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  :root { --section-py: 56px; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__decline, .cookie-banner__accept { flex: 1; text-align: center; }
}
