/* ================================================================
   SHARED STYLES — unexperted.pl
   ================================================================ */

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

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

:root {
  --orange:       #d4581a;
  --orange-dark:  #b84a12;
  --orange-light: #f5e8df;
  --dark:         #141414;
  --mid:          #2a2a2a;
  --gray:         #f4f3f1;
  --border:       #e8e4df;
  --text:         #5a5550;
  --white:        #fff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; background: var(--white); color: var(--dark); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SHARED NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
}
.nav-logo { font-size: 18px; font-weight: 800; letter-spacing: -.5px; color: var(--dark); }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta { background: var(--orange) !important; color: #fff !important; padding: 10px 22px; border-radius: 8px; font-weight: 700 !important; font-size: 13px !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav { display: none; position: fixed; inset: 0; top: 68px; background: #fff; z-index: 190; padding: 32px 24px; border-top: 1px solid var(--border); overflow-y: auto; }
.mob-nav.open { display: block; }
.mob-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mob-nav ul li a { display: block; font-size: 18px; font-weight: 700; color: var(--dark); padding: 12px 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.mob-nav ul li a:hover { color: var(--orange); }
.mob-nav ul li:last-child a { border: none; }
.mob-cta-wrap { margin-top: 24px; }
.mob-cta-wrap a { display: block; background: var(--orange); color: #fff; text-align: center; padding: 16px; border-radius: 10px; font-weight: 700; font-size: 16px; }

/* ── SHARED SECTION ── */
.s { padding: 96px 48px; max-width: 1200px; margin: 0 auto; }
.s-full { padding: 96px 48px; }
.s-tag { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.s-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 16px; }
.s-lead { font-size: 17px; color: var(--text); max-width: 560px; line-height: 1.7; }
.s-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }

/* ── SHARED BUTTONS ── */
.btn-main { background: var(--orange); color: #fff; padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: .2s; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; font-family: inherit; }
.btn-main:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,88,26,.3); }
.btn-sec { border: 2px solid var(--border); color: var(--dark); padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: .2s; display: inline-block; }
.btn-sec:hover { border-color: var(--orange); color: var(--orange); }
.btn-white { background: #fff; color: var(--orange); padding: 16px 36px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: .2s; display: inline-block; border: none; cursor: pointer; font-family: inherit; }
.btn-white:hover { background: #ffe8d8; }
.btn-outline-white { border: 2px solid rgba(255,255,255,.4); color: #fff; padding: 16px 36px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: .2s; display: inline-block; }
.btn-outline-white:hover { border-color: #fff; }

/* ── SHARED FOOTER ── */
.site-footer { background: var(--dark); padding: 72px 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.footer-logo-el { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -.5px; margin-bottom: 16px; display: block; }
.footer-logo-el span { color: var(--orange); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 24px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span { font-size: 14px; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 10px; transition: .2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.fsoc { width: 38px; height: 38px; background: rgba(255,255,255,.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.5); transition: .2s; }
.fsoc:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.45); transition: .2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,.25); margin-left: 20px; transition: .2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ── FADE IN ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:860px) {
  .site-nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .s, .s-full { padding: 60px 24px; }
  .site-footer { padding: 56px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
