/* =====================================================
   Scalezee Technologies – Main Stylesheet
   Extracted from v9.1 prototype
   ===================================================== */

:root {
  --blue:        #1D7DB9;
  --blue-dark:   #003E5C;
  --blue-light:  #EBF4FB;
  --blue-mid:    #DEE8F4;
  --green:       #2DAF4A;
  --green-light: #E8F7EC;
  --red:         #C0392B;
  --grey-bg:     #F4F6F8;
  --grey-line:   #E2E8EE;
  --grey-muted:  #6B7A8D;
  --ink:         #0D1B2A;
  --white:       #FFFFFF;
  --font-head:   'Sora', sans-serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 8px rgba(29,125,185,.10);
  --shadow-md:   0 6px 24px rgba(29,125,185,.13);
  --shadow-lg:   0 16px 48px rgba(29,125,185,.16);
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

@keyframes fadeUp  { from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn  { from{opacity:0;}to{opacity:1;} }
@keyframes slideR  { from{opacity:0;transform:translateX(32px);}to{opacity:1;transform:translateX(0);} }
@keyframes pulse   { 0%,100%{transform:scale(1);}50%{transform:scale(1.06);} }
@keyframes floatUp { 0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);} }

.reveal { opacity:0; transform:translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION SEPARATOR ── */
.section { padding: 6rem 0; border-top: 1px solid var(--grey-line); }
.section--grey { background: var(--grey-bg); }

/* ── EYEBROW — RED, LARGER ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1.08rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
}
.eyebrow::before { display:none; }

/* ── SECTION TITLE — BRAND COLOURS (blue-dark), LARGER ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.76rem, 3.2vw, 2.56rem);
  font-weight: 700; line-height: 1.12;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--blue); }
.section-subtitle {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--grey-muted); max-width: 600px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600; letter-spacing: .04em;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.btn-green:hover { background: #239e3c; border-color: #239e3c; transform: translateY(-2px); }
.btn svg { width:16px; height:16px; }

/* ══ NAV ══ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .75rem 0; background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-line);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: all var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .875rem; font-weight: 500; color: var(--grey-muted);
  position: relative; transition: color var(--transition); padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--blue);
  transition: width var(--transition); border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { margin-left: .5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; }
.hamburger span { display:block; width:100%; height:2px; background:var(--blue-dark); border-radius:2px; transition: all var(--transition); }
.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); }

/* ══ HERO ══ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 0 4rem; position: relative; overflow: hidden;
  background: var(--white); border-top: none;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(29,125,185,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(29,125,185,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-blob-1 { position: absolute; top: -10%; right: -8%; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(29,125,185,.12) 0%, transparent 70%); animation: floatUp 8s ease-in-out infinite; }
.hero-blob-2 { position: absolute; bottom: 5%; left: -6%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(45,175,74,.09) 0%, transparent 70%); animation: floatUp 11s ease-in-out infinite reverse; }
.hero-content { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--blue-light); border: 1px solid rgba(29,125,185,.25);
  border-radius: 100px; padding: .35rem 1rem .35rem .5rem;
  font-size: .78rem; font-weight: 600; color: var(--blue);
  margin-bottom: 1.75rem; animation: fadeIn 1s both;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; color: var(--blue-dark);
  margin-bottom: 1.5rem; animation: fadeUp .8s .1s both;
}
.hero-headline .accent-blue { color: var(--blue); }
.hero-headline .accent-green { color: var(--green); }
.hero-desc { font-size: 1.05rem; line-height: 1.8; color: var(--grey-muted); margin-bottom: 2.5rem; max-width: 500px; animation: fadeUp .8s .2s both; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; animation: fadeUp .8s .3s both; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--grey-line); animation: fadeUp .8s .4s both; }
.hero-trust-label { font-size: .78rem; color: var(--grey-muted); font-weight:500; }
.trust-badges { display:flex; gap:.75rem; flex-wrap:wrap; }
.trust-badge { background: var(--grey-bg); border: 1px solid var(--grey-line); border-radius: 6px; padding: .3rem .75rem; font-size: .75rem; font-weight: 600; color: var(--blue-dark); }
.hero-right { position: relative; animation: slideR .9s .2s both; }
.hero-visual {
  background: linear-gradient(145deg, var(--blue-dark) 0%, #0f3d5c 100%);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hero-visual::before { content: ''; position: absolute; top: -30%; right: -20%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(45,175,74,.18) 0%, transparent 70%); }
.hero-visual-title { font-family: var(--font-head); font-size: .7rem; font-weight:600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.75rem; }
.service-pill-list { display:flex; flex-direction:column; gap:.75rem; }
.service-pill { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: .9rem 1.1rem; transition: all var(--transition); }
.service-pill:hover { background: rgba(255,255,255,.12); border-color: rgba(29,125,185,.5); }
.pill-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.pill-icon.blue { background: rgba(29,125,185,.3); }
.pill-icon.green { background: rgba(45,175,74,.3); }
.pill-icon.navy { background: rgba(0,62,92,.6); }
.pill-text { font-size: .875rem; font-weight: 600; color: var(--white); }
.pill-sub { font-size: .75rem; color: rgba(255,255,255,.5); margin-top:1px; }
.hero-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat { text-align:center; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.6rem; font-weight:700; color: var(--white); display:block; line-height:1; }
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: .7rem; color:rgba(255,255,255,.5); margin-top:.3rem; display:block; }

/* ══ ABOUT ══ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-card {
  border-radius: var(--radius-lg); overflow:hidden;
  background: #fff;
  border: 1px solid var(--grey-line);
  aspect-ratio: 1/1;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg); position:relative;
}
.about-img-card img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 1.5rem;
}
.about-float-badge { position:absolute; bottom:-1.5rem; right:-1.5rem; background: var(--white); border-radius: var(--radius); padding:1.1rem 1.4rem; box-shadow: var(--shadow-lg); border: 1px solid var(--grey-line); min-width:160px; }
.afb-num { font-family:var(--font-head); font-size:2rem; font-weight:700; color:var(--blue); display:block; line-height:1; }
.afb-label { font-size:.75rem; color:var(--grey-muted); margin-top:.25rem; display:block; text-transform:uppercase; letter-spacing:.07em; }
.about-float-badge2 { position:absolute; top:-1.25rem; left:-1.25rem; background:var(--green); border-radius:var(--radius); padding:.8rem 1.2rem; box-shadow:0 6px 20px rgba(45,175,74,.3); color:var(--white); }
.afb2-num { font-family:var(--font-head); font-size:1.5rem; font-weight:700; display:block; line-height:1; }
.afb2-label { font-size:.7rem; opacity:.85; margin-top:.2rem; display:block; }
.about-text .section-title { margin-bottom:1.25rem; }
.about-body { font-size:.975rem; line-height:1.85; color:var(--grey-muted); margin-bottom:2rem; }
.about-pillars { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:2rem; }
.pillar { padding:1.1rem 1.25rem; border-radius:var(--radius); border-left: 3px solid var(--blue); background:var(--blue-light); transition: transform var(--transition), box-shadow var(--transition); }
.pillar.green { border-color: var(--green); background: var(--green-light); }
.pillar:hover { transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.pillar-name { font-size:.875rem; font-weight:700; color:var(--blue-dark); margin-bottom:.25rem; }
.pillar-desc { font-size:.78rem; color:var(--grey-muted); line-height:1.5; }
.about-wysetek { font-size:.8rem; color:var(--grey-muted); margin-top:1.5rem; padding:.75rem 1rem; background:var(--grey-bg); border-radius:var(--radius); border:1px solid var(--grey-line); }
.about-wysetek strong { color:var(--blue-dark); }

/* ══ SERVICES ══ */
.services-header { text-align:center; margin-bottom:3.5rem; }
.services-header .section-subtitle { margin:0 auto; }
.services-tabs { display:flex; justify-content:center; gap:.75rem; margin-bottom:3rem; flex-wrap:wrap; }
.tab-btn { padding:.55rem 1.35rem; border-radius:100px; font-size:.82rem; font-weight:600; border:2px solid var(--grey-line); color:var(--grey-muted); cursor:pointer; transition:all var(--transition); background:var(--white); }
.tab-btn.active, .tab-btn:hover { background:var(--blue); color:var(--white); border-color:var(--blue); }
.service-section { display:none; }
.service-section.active { display:block; }
.service-hero-card { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); border-radius: var(--radius-lg); padding: 3rem; color: var(--white); margin-bottom: 2rem; display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; position:relative; overflow:hidden; }
.service-hero-card::before { content:''; position:absolute; right:-80px; top:-80px; width:300px; height:300px; border-radius:50%; background:rgba(45,175,74,.15); }
.shc-eyebrow { font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-bottom:.75rem; }
.shc-title { font-family:var(--font-head); font-size:1.9rem; font-weight:700; margin-bottom:.75rem; line-height:1.2; color: var(--white); }
.shc-desc { font-size:.95rem; line-height:1.75; color:rgba(255,255,255,.75); }
.shc-stats { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.shc-stat { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.15); border-radius:var(--radius); padding:1.1rem; }
.shc-stat-num { font-family:var(--font-head); font-size:1.75rem; font-weight:700; color:var(--green); display:block; }
.shc-stat-label { font-size:.75rem; color:rgba(255,255,255,.6); margin-top:.25rem; display:block; }
.service-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.srv-card { background:var(--white); border:1px solid var(--grey-line); border-radius:var(--radius); padding:1.6rem; transition:all var(--transition); position:relative; overflow:hidden; }
.srv-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--blue); transform:scaleX(0); transition:transform var(--transition); transform-origin:left; }
.srv-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); border-color:transparent; }
.srv-card:hover::before { transform:scaleX(1); }
.srv-card.green::before { background:var(--green); }
.srv-card-tag { display:inline-flex; align-items:center; gap:.5rem; font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); background:var(--blue-light); padding:.3rem .7rem; border-radius:100px; margin-bottom:1rem; }
.srv-card.green .srv-card-tag { color:var(--green); background:var(--green-light); }
.srv-card-name { font-family:var(--font-head); font-size:1.05rem; font-weight:700; color:var(--blue-dark); margin-bottom:.5rem; }
.srv-card-desc { font-size:.85rem; line-height:1.65; color:var(--grey-muted); }

/* ══ ADVANTAGE ══ */
.advantage-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-bottom:3.5rem; }
.adv-metric { text-align:center; padding:2rem 1.25rem; border-radius:var(--radius-lg); border:1px solid var(--grey-line); background:var(--white); transition:all var(--transition); }
.adv-metric:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.adv-metric-icon { width:52px; height:52px; border-radius:14px; margin:0 auto 1rem; display:flex; align-items:center; justify-content:center; font-size:1.5rem; }
.adv-metric-icon.blue { background:var(--blue-light); }
.adv-metric-icon.green { background:var(--green-light); }
.adv-metric-num { font-family:var(--font-head); font-size:2.2rem; font-weight:800; color:var(--blue-dark); display:block; line-height:1; }
.adv-metric-num.green { color:var(--green); }
.adv-metric-label { font-size:.82rem; color:var(--grey-muted); margin-top:.4rem; display:block; }
.advantage-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.adv-col { background:var(--white); border:1px solid var(--grey-line); border-radius:var(--radius-lg); padding:2rem; transition:all var(--transition); }
.adv-col:hover { box-shadow:var(--shadow-md); }
.adv-col-header { display:flex; align-items:center; gap:.75rem; margin-bottom:1.5rem; }
.adv-col-icon { width:44px; height:44px; border-radius:10px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1.3rem; }
.adv-col-icon.blue { background:var(--blue-light); }
.adv-col-icon.green { background:var(--green-light); }
.adv-col-title { font-family:var(--font-head); font-size:1rem; font-weight:700; color:var(--blue-dark); }
.adv-list li { display:flex; align-items:flex-start; gap:.6rem; font-size:.875rem; line-height:1.6; color:var(--grey-muted); margin-bottom:.7rem; }
.adv-list li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; margin-top:.1rem; }

/* ══ PLATFORMS ══ */
.platforms-header { text-align:center; margin-bottom:3.5rem; }
.platforms-header .section-subtitle { margin:0 auto; }
.platforms-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.platform-card { background:var(--white); border:1px solid var(--grey-line); border-radius:var(--radius-lg); padding:2rem; display:grid; grid-template-columns:auto 1fr; gap:1.5rem; align-items:start; transition:all var(--transition); }
.platform-card:hover { box-shadow:var(--shadow-md); border-color:var(--blue); transform:translateY(-3px); }
.platform-logo-box { width:64px; height:64px; border-radius:var(--radius); flex-shrink:0; display:flex; align-items:center; justify-content:center; background:var(--blue-light); border:1px solid var(--grey-line); font-size:1.8rem; }
.platform-logo-box.green { background:var(--green-light); }
.platform-name { font-family:var(--font-head); font-size:1.1rem; font-weight:700; color:var(--blue-dark); margin-bottom:.5rem; }
.platform-desc { font-size:.875rem; line-height:1.65; color:var(--grey-muted); }
.platform-tag { display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--blue); background:var(--blue-light); padding:.25rem .65rem; border-radius:100px; margin-bottom:.5rem; }
.platform-tag.green { color:var(--green); background:var(--green-light); }

/* ══ CONTACT ══ */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:5rem; align-items:start; }
.contact-info .section-title { margin-bottom:1.25rem; }
.contact-body { font-size:.975rem; line-height:1.8; color:var(--grey-muted); margin-bottom:2rem; }
.contact-details { display:flex; flex-direction:column; gap:1.25rem; }
.cd-item { display:flex; gap:1rem; align-items:flex-start; }
.cd-icon { width:42px; height:42px; border-radius:var(--radius); flex-shrink:0; display:flex; align-items:center; justify-content:center; background:var(--blue-light); font-size:1.1rem; }
.cd-label { font-size:.72rem; text-transform:uppercase; letter-spacing:.09em; color:var(--grey-muted); display:block; margin-bottom:.2rem; }
.cd-value { font-size:.95rem; font-weight:600; color:var(--blue-dark); }
.cd-value a { color:var(--blue); transition:color var(--transition); }
.cd-value a:hover { color:var(--blue-dark); }
.contact-form-card { background:var(--white); border:1px solid var(--grey-line); border-radius:var(--radius-lg); padding:2.5rem; box-shadow:var(--shadow-sm); }
.form-title { font-family:var(--font-head); font-size:1.5rem; font-weight:700; color:var(--blue-dark); margin-bottom:.4rem; }
.form-sub { font-size:.88rem; color:var(--grey-muted); margin-bottom:1.75rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.1rem; }
.form-label { display:block; font-size:.8rem; font-weight:600; color:var(--blue-dark); margin-bottom:.4rem; }
.form-input, .form-textarea, .form-select { width:100%; padding:.8rem 1rem; border:1.5px solid var(--grey-line); border-radius:var(--radius); background:var(--grey-bg); color:var(--ink); font-family:var(--font-body); font-size:.9rem; transition:all var(--transition); outline:none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color:var(--blue); background:var(--white); box-shadow:0 0 0 3px rgba(29,125,185,.1); }
.form-textarea { resize:vertical; min-height:110px; }
.form-select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7A8D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; cursor:pointer; }
.form-btn { width:100%; padding:1rem; border-radius:var(--radius); background:var(--blue); color:var(--white); font-family:var(--font-body); font-size:.9rem; font-weight:700; letter-spacing:.04em; transition:all var(--transition); cursor:pointer; border:none; margin-top:.5rem; }
.form-btn:hover { background:var(--blue-dark); transform:translateY(-2px); box-shadow:var(--shadow-md); }
#form-status { display:none; margin-bottom:1rem; padding:.8rem 1rem; border-radius:var(--radius); font-size:.875rem; font-weight:500; }
#form-status.success { background:var(--green-light); color:#1a7a2e; border:1px solid rgba(45,175,74,.3); }
#form-status.error { background:#fde8e9; color:#b91c1c; border:1px solid rgba(220,53,69,.3); }

/* ══ FOOTER ══ */
.footer { background:var(--blue-dark); color:var(--white); padding:4rem 0 2rem; border-top: 3px solid var(--blue); }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom:1.25rem; }
.footer-tagline { font-size:.875rem; line-height:1.75; color:rgba(255,255,255,.5); margin-bottom:1.5rem; max-width:260px; }
.footer-social { display:flex; gap:.6rem; }
.social-btn { width:43px; height:43px; border-radius:8px; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.6); transition:all var(--transition); text-decoration:none; }
.social-btn:hover { border-color:var(--blue); color:var(--white); background:rgba(29,125,185,.4); }
.social-btn svg { width:22px; height:22px; fill:currentColor; }
.social-connect-label { font-size:.8rem; font-weight:600; color:rgba(255,255,255,.6); }
.footer-col-title { font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:1.25rem; }
.footer-links { display:flex; flex-direction:column; gap:.75rem; }
.footer-link { font-size:.875rem; color:rgba(255,255,255,.55); transition:color var(--transition); }
.footer-link:hover { color:var(--white); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-copy { font-size:.8rem; color:rgba(255,255,255,.3); }
.footer-wysetek-wrap { display:flex; align-items:center; gap:.75rem; }
.footer-wysetek-logo { height:42px; width:auto; opacity:.7; transition:opacity var(--transition); }
.footer-wysetek-logo:hover { opacity:1; }
.footer-wysetek-link { display:flex; align-items:center; gap:.5rem; font-size:.8rem; color:rgba(255,255,255,.45); transition:color var(--transition); text-decoration:none; }
.footer-wysetek-link:hover { color:rgba(255,255,255,.8); }
.footer-legal { display:flex; gap:1.5rem; align-items:center; }
.footer-legal a { font-size:.8rem; color:#6B7A8D; transition:color var(--transition); }
.footer-legal a:hover { color:var(--blue-dark); }

/* ══ RESPONSIVE ══ */
@media(max-width:1024px){
  .hero-content { grid-template-columns:1fr; gap:3rem; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .about-img-wrap { max-width:480px; }
  .advantage-grid { grid-template-columns:repeat(2,1fr); }
  .advantage-cols { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .service-hero-card { grid-template-columns:1fr; }
}
@media(max-width:768px){
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }
  .nav-links.mobile-open { display:flex; flex-direction:column; position:fixed; inset:0; background:var(--white); padding:6rem 2rem 2rem; gap:2rem; z-index:999; align-items:flex-start; }
  .nav-links.mobile-open .nav-link { font-size:1.75rem; font-family:var(--font-head); font-weight:700; color:var(--blue-dark); }
  .nav-links.mobile-open .nav-cta { display:block; }
  .service-cards-grid { grid-template-columns:1fr; }
  .platforms-grid { grid-template-columns:1fr; }
  .advantage-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .about-pillars { grid-template-columns:1fr; }
  .shc-stats { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; align-items:flex-start; gap:1.25rem; }
}
@media(max-width:480px){
  .advantage-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; }
}

/* Wysetek bottom bar — light grey, dark text */
.footer-bottom {
  margin: 2rem -2rem -2rem -2rem;
  padding: 1.5rem 2rem;
  background: #F4F6F8;
  border-top: 1px solid #E2E8EE;
}
.footer-bottom, .footer-bottom * { color: var(--ink) !important; }
.footer-bottom a { color: var(--blue) !important; }
.footer-bottom a:hover { color: var(--blue-dark) !important; }

/* ══ TECH STACK GRID ══ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.tech-badge {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; padding: 1.25rem .75rem;
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: var(--radius); text-align: center;
  transition: all var(--transition); cursor: default;
}
.tech-badge:hover {
  border-color: var(--blue); box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.tech-icon-wrap { width:36px; height:36px; display:flex; align-items:center; justify-content:center; }
.tech-icon { font-size: 1.6rem; line-height: 1; display: block; }
.tech-name { font-size: .72rem; font-weight: 600; color: var(--blue-dark); line-height: 1.3; }
@media(max-width:1024px){ .tech-grid { grid-template-columns: repeat(4,1fr); } }
@media(max-width:768px){ .tech-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:480px){ .tech-grid { grid-template-columns: repeat(2,1fr); } }
