/* ============================================================
   S-COMPUTERS — SHARED STYLESHEET
   Light Warm Design System — #1A3A6B + #C8512F
   ============================================================ */

/* Fonty (Lora + Source Sans 3) ładowane przez <link> w <head> każdej strony */

:root {
  --bg: #F4F6F9;
  --surface: #FFFFFF;
  --surface-2: #EBF0F8;
  --fg: #111827;
  --fg-muted: #4B5563;
  /* Aliasy używane w stylach inline (podpis-elektroniczny.html) */
  --text: var(--fg);
  --text-secondary: var(--fg-muted);
  --primary: #1A3A6B;
  --primary-light: #2554A0;
  --primary-glow: rgba(26,58,107,0.2);
  --secondary: #C8512F;
  --secondary-glow: rgba(200,81,47,0.2);
  --accent: #D96840;
  --border: #D1D5DB;
  --border-bright: #9CA3AF;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;
  --font-display: 'Lora', Georgia, serif;
  --font-mono: 'Courier New', Courier, monospace;
  --radius-sm: 4px;
  --radius-md: 6px;
  --transition: 150ms ease;
  --nav-h: 80px;
  --topbar-h: 36px;
  --shadow-sm: 0 1px 3px rgba(26,58,107,.08), 0 1px 2px rgba(26,58,107,.06);
  --shadow: 0 4px 16px rgba(26,58,107,.10), 0 2px 8px rgba(26,58,107,.07);
  --shadow-lg: 0 10px 40px rgba(26,58,107,.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--topbar-h));
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--primary); color: #fff; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; z-index: 1; }

/* ─── TOPBAR ─── */
#topbar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 12px; }
.topbar-addr { font-size: 11px; color: rgba(255,255,255,0.8); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-phone { font-size: 12px; color: #fff; text-decoration: none; font-weight: 700; letter-spacing: 0.04em; transition: opacity var(--transition); }
.topbar-phone:hover { opacity: 0.8; }
.topbar-hours { font-size: 11px; color: rgba(255,255,255,0.7); }

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
  background: var(--surface);
}
#nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.nav-logo-text { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--primary); }
.nav-logo-text span { color: var(--secondary); }
.nav-logo-img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-size: 14px; font-weight: 600;
  color: var(--fg-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--primary); background: rgba(26,58,107,0.06); }
.nav-link.active { color: var(--primary); }
.nav-link svg { transition: transform var(--transition); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 200ms ease;
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; font-size: 13px; color: var(--fg-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-dropdown a:hover, .nav-dropdown a.active {
  color: var(--primary); background: rgba(26,58,107,0.06); padding-left: 16px;
}
.nav-dropdown a::before {
  content: ''; width: 4px; height: 4px; background: var(--primary);
  border-radius: 50%; flex-shrink: 0; opacity: 0; transition: opacity var(--transition);
}
.nav-dropdown a:hover::before, .nav-dropdown a.active::before { opacity: 1; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.01em; border: 2px solid transparent; cursor: pointer;
  border-radius: var(--radius-sm); transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); box-shadow: 0 4px 16px rgba(200,81,47,0.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.nav-cta { margin-left: 8px; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: all 250ms ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: calc(var(--nav-h) + var(--topbar-h)); left: 0; right: 0; bottom: 0;
  background: var(--surface); backdrop-filter: blur(20px);
  overflow-y: auto; z-index: 999; padding: 24px;
  transform: translateX(100%); transition: transform 250ms ease;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: block; transform: translateX(0); }
.mobile-section-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary); margin: 20px 0 8px; font-weight: 700; }
.mobile-link { display: block; padding: 12px 0; font-size: 15px; font-weight: 600; color: var(--fg-muted); border-bottom: 1px solid var(--border); transition: color var(--transition), padding-left var(--transition); }
.mobile-link:hover { color: var(--primary); padding-left: 8px; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: calc(var(--nav-h) + var(--topbar-h));
  position: relative; z-index: 1;
}
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--fg-muted); flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--fg-muted); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--border-bright); }
.breadcrumb-current { color: var(--secondary); font-weight: 600; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 500px; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(26,58,107,0.04) 100%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.hero-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary); display: block; margin-bottom: 16px; font-weight: 700; }
.hero-h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 20px; color: var(--primary); }
.hero-h1 .grad { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 32px; max-width: 50ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── TYPOGRAPHY ─── */
.section-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary); display: block; margin-bottom: 12px; font-weight: 700; }
.section-h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 16px; color: var(--primary); }
.accent-line { display: block; width: 48px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); margin-bottom: 2.5rem; border-radius: 2px; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── CARD GRID ─── */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; margin-bottom: 64px;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface); padding: 28px 24px;
  transition: background var(--transition); position: relative;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity var(--transition);
}
.card:hover { background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card-icon-box {
  width: 40px; height: 40px;
  background: rgba(26,58,107,0.08); border: 1px solid rgba(26,58,107,0.15);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--primary); transition: all var(--transition);
}
.card:hover .card-icon-box { background: rgba(26,58,107,0.15); border-color: var(--primary); color: var(--secondary); }
.card h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--primary); }
.card p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }

/* ─── FEATURE LIST ─── */
.feature-list {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; margin-bottom: 64px;
}
.feature-row { background: var(--surface); display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; transition: background var(--transition); }
.feature-row:hover { background: var(--surface-2); }
.feature-row-icon { width: 36px; height: 36px; background: rgba(26,58,107,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; transition: all var(--transition); }
.feature-row:hover .feature-row-icon { background: rgba(26,58,107,0.15); color: var(--secondary); }
.feature-row h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--primary); }
.feature-row p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ─── CHECK LIST ─── */
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-item::before { content: '✓'; font-size: 12px; font-weight: 700; color: #fff; background: var(--secondary); border-radius: var(--radius-sm); width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }
.check-item strong { color: var(--fg); font-weight: 600; }

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin: 2rem 0 4rem;
}
.process-steps::after {
  content: ''; position: absolute; top: 28px;
  left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary)); z-index: 0;
}
.ps-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.ps-dot { width: 56px; height: 56px; background: var(--surface); border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; font-size: 13px; font-weight: 700; color: var(--primary); transition: all 200ms ease; }
.ps-item:hover .ps-dot { border-color: var(--primary); background: rgba(26,58,107,0.08); box-shadow: 0 0 16px var(--primary-glow); }
.ps-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--primary); }
.ps-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.6; max-width: 18ch; margin: 0 auto; }

/* ─── FAQ ─── */
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { background: var(--surface); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-size: 15px; font-weight: 600; cursor: pointer; user-select: none; transition: background var(--transition), color var(--transition); border: none; background: transparent; width: 100%; text-align: left; color: var(--fg); }
.faq-question:hover { background: var(--surface-2); }
.faq-item.open .faq-question { background: rgba(26,58,107,0.04); color: var(--primary); }
.faq-icon { width: 22px; height: 22px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); color: var(--fg-muted); }
.faq-item.open .faq-icon { background: rgba(200,81,47,0.12); border-color: var(--secondary); color: var(--secondary); transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 300ms ease; }
.faq-item.open .faq-answer { max-height: 1000px; } /* fallback; JS sets the exact px height so long answers never clip */
.faq-answer-inner { padding: 16px 24px 20px; font-size: 14px; color: var(--fg-muted); line-height: 1.75; border-top: 1px solid var(--border); }
.faq-answer-inner a { color: var(--secondary); }

/* ─── CTA SECTION ─── */
.cta-section { padding: 72px 0; position: relative; background: var(--primary); color: #fff; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--secondary), var(--accent)); }
.cta-box { text-align: center; }
.cta-box h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; color: #fff; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 32px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--secondary); border-color: var(--secondary); }
.cta-section .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ─── FORMS (kontakt + formularz wstrzykiwany w CTA przez sc-common.js) ─── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--fg-muted); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 15px; color: var(--fg); background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,107,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-rodo { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.form-rodo input { margin-top: 4px; width: auto; flex-shrink: 0; }
.form-rodo label { font-weight: 400; margin-bottom: 0; letter-spacing: normal; }
.form-rodo a { color: var(--secondary); text-decoration: underline; }
.form-status { display: none; margin-top: 12px; padding: 12px 14px; border-radius: var(--radius-md); font-size: 14px; line-height: 1.5; }
.form-status.ok { display: block; background: #E6F4EA; color: #1E6B3A; }
.form-status.err { display: block; background: #FDECE6; color: #9A3412; }
.form-status a { font-weight: 700; text-decoration: underline; color: inherit; }
.cta-form {
  max-width: 560px; margin: 36px auto 0; text-align: left;
  background: var(--surface); color: var(--fg);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow);
}
.cta-form h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 18px; }

/* ─── RELATED ─── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 64px; }
.related-card { background: var(--surface); padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: background var(--transition); text-decoration: none; }
.related-card:hover { background: var(--surface-2); }
.related-card-label { font-size: 10px; letter-spacing: 0.12em; color: var(--secondary); text-transform: uppercase; font-weight: 700; }
.related-card h3 { font-size: 15px; font-weight: 700; color: var(--primary); }
.related-card p { font-size: 12px; color: var(--fg-muted); line-height: 1.6; }
.related-arrow { color: var(--secondary); margin-top: auto; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.related-card:hover .related-arrow { gap: 10px; }

/* ─── DEALER BADGE ─── */
.dealer-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(26,58,107,0.06); border: 1px solid rgba(26,58,107,0.2); border-radius: var(--radius-sm); padding: 14px 20px; margin-bottom: 28px; }
.dealer-badge-icon { width: 40px; height: 40px; background: var(--primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dealer-badge-text { font-size: 12px; color: var(--primary); font-weight: 700; letter-spacing: 0.05em; }
.dealer-badge-sub { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

/* ─── INDUSTRY TAGS ─── */
.industry-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.industry-tag { font-size: 11px; letter-spacing: 0.06em; color: var(--fg-muted); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 5px 12px; transition: all var(--transition); }
.industry-tag:hover { border-color: var(--secondary); color: var(--secondary); background: rgba(200,81,47,0.05); }

/* ─── PRODUCT GRID ─── */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; margin-bottom: 64px;
}
.product-card {
  background: var(--surface); display: flex; flex-direction: column;
  transition: background var(--transition); position: relative;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity var(--transition); z-index: 2;
}
.product-card:hover { background: var(--surface-2); }
.product-card:hover::before { opacity: 1; }
.product-img-wrap {
  background: #ffffff; padding: 24px; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.product-img-wrap img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; transition: transform 300ms ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-model { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--primary); line-height: 1.25; }
.product-price {
  font-size: 18px; font-weight: 700; color: var(--secondary);
  display: inline-flex; align-items: baseline; gap: 4px;
}
.product-price .pp-net { font-size: 11px; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.04em; }
.product-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ─── FOOTER ─── */
footer { background: var(--primary); color: rgba(255,255,255,0.85); border-top: 1px solid rgba(255,255,255,0.08); padding: 64px 0 32px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-mark { width: 32px; height: 32px; background: rgba(255,255,255,0.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; }
.footer-logo-text { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.footer-logo-text span { color: var(--secondary); }
.footer-logo-img { height: 42px; width: auto; display: block; background: #fff; padding: 6px 12px; border-radius: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 30ch; margin-bottom: 16px; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); font-size: 13px; color: rgba(255,255,255,0.8); transition: all var(--transition); }
.footer-social:hover { border-color: rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.18); }
.footer-col-title { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary); margin-bottom: 16px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-info { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 2; }
.footer-contact-info a { transition: color var(--transition); }
.footer-contact-info a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ─── FLOATING PHONE BUTTON ─── */
#float-phone {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  display: none; align-items: center; gap: 10px;
  background: var(--secondary); color: #fff;
  padding: 14px 20px; border-radius: 28px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 24px rgba(200,81,47,0.45);
  transition: all 200ms ease; text-decoration: none;
  animation: fp-pulse 3s ease infinite;
}
#float-phone:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,81,47,0.5); }
@keyframes fp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,81,47,0.4), 0 4px 24px rgba(200,81,47,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(200,81,47,0), 0 4px 24px rgba(200,81,47,0.4); }
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -48px; left: 8px; z-index: 2000;
  background: var(--primary); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: top 150ms ease;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--secondary); outline-offset: 2px; }

/* ─── COOKIE BANNER ─── */
#sc-cookie-banner {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1500;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 16px 20px;
}
#sc-cookie-banner .sc-cookie-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
#sc-cookie-banner p { font-size: 13px; color: var(--fg-muted); line-height: 1.55; flex: 1 1 320px; margin: 0; }
#sc-cookie-banner a { color: var(--secondary); font-weight: 600; text-decoration: underline; }
#sc-cookie-banner #sc-cookie-accept { flex-shrink: 0; }
@media (max-width: 600px){
  #sc-cookie-banner .sc-cookie-inner { flex-direction: column; align-items: stretch; }
  #sc-cookie-banner p { flex: 0 0 auto; }
  #sc-cookie-banner #sc-cookie-accept { width: 100%; justify-content: center; }
}

/* ─── FOCUS STATES ─── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 100ms; }
.reveal-d2 { transition-delay: 200ms; }
.reveal-d3 { transition-delay: 300ms; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-svg { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  #topbar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .cards-grid, .cards-grid-2, .cards-grid-4 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::after { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  #float-phone { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  #float-phone .float-text { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
