/* =============================================================
   PrinterGuide — Shared Stylesheet
   Design system: navy + electric blue + amber accent
   ============================================================= */

:root {
  --navy: #0a1628;
  --navy-2: #0d1f3c;
  --blue: #1a56db;
  --blue-dark: #1447c0;
  --sky: #3b82f6;
  --accent: #f59e0b;
  --light: #f0f4ff;
  --light-2: #f8faff;
  --white: #ffffff;
  --gray: #64748b;
  --gray-2: #94a3b8;
  --border: #e2e8f0;
  --success: #16a34a;
  --danger: #dc2626;
  --shadow-sm: 0 2px 20px rgba(10,22,40,0.07);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.14);
  --shadow-lg: 0 30px 80px rgba(10,22,40,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* =============================================================
   HEADER + NAVIGATION (with dropdown)
   ============================================================= */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  box-shadow: var(--shadow-sm);
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  box-shadow: 0 4px 14px rgba(26,86,219,0.3);
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
}
.logo-name em { color: var(--blue); font-style: normal; }

nav { display: flex; align-items: center; gap: 28px; }
nav > a, nav > .dropdown > a {
  text-decoration: none; color: var(--gray);
  font-size: 0.92rem; font-weight: 500;
  transition: color 0.2s; position: relative;
  padding: 6px 0;
}
nav > a:not(.btn-primary):hover, nav > .dropdown > a:hover { color: var(--blue); }
nav > a.btn-primary,
nav > a.btn-primary:hover,
nav > a.btn-primary:focus { color: #fff; }
nav > a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 2px;
}
nav > a.active { color: var(--navy); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.92rem; font-weight: 500;
  color: var(--gray); padding: 6px 0;
  transition: color 0.2s;
}
.dropdown-toggle:hover { color: var(--blue); }
.dropdown-toggle .chev {
  transition: transform 0.25s; font-size: 0.7em; margin-top: 2px;
}
.dropdown.open .dropdown-toggle .chev { transform: rotate(180deg); }
.dropdown.open .dropdown-toggle { color: var(--blue); }

.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(10,22,40,0.15);
  border: 1px solid var(--border);
  min-width: 220px; padding: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 99;
}
.dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.dropdown-menu a {
  display: block; padding: 10px 14px;
  text-decoration: none; color: var(--navy);
  font-size: 0.88rem; font-weight: 500;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.dropdown-menu a:hover { background: var(--light); color: var(--blue); }

.btn-primary {
  background: var(--blue); color: #fff;
  padding: 11px 22px; border-radius: 8px;
  text-decoration: none; font-size: 0.88rem; font-weight: 600;
  transition: all 0.25s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.35);
}

.btn-outline {
  background: transparent; color: #fff;
  padding: 12px 26px; border-radius: 8px;
  text-decoration: none; font-size: 0.9rem; font-weight: 600;
  transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.45);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* =============================================================
   GENERAL LAYOUT
   ============================================================= */
.section-wrap {
  width: 90%; max-width: 1100px;
  margin: auto; padding: 100px 0;
}
.section-eyebrow {
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.18; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--gray); font-size: 0.98rem;
  max-width: 540px; line-height: 1.75; font-weight: 300;
}

/* Page header (for inner pages) */
.page-hero {
  position: relative; padding: 150px 5% 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--blue) 130%);
  color: #fff; overflow: hidden;
}
.page-hero::before {
  content:''; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content:''; position: absolute; bottom: -200px; left: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; max-width: 1100px; margin: auto;
  width: 100%;
}
.breadcrumb {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.78); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; color: #fff;
  line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  max-width: 640px; line-height: 1.7; font-weight: 300;
}

/* =============================================================
   CONTENT PAGE STYLING (for legal/info pages)
   ============================================================= */
.content-page {
  width: 90%; max-width: 880px;
  margin: auto; padding: 70px 0 100px;
}
.content-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--navy); margin: 38px 0 14px;
  letter-spacing: -0.01em;
}
.content-page h3 {
  font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin: 26px 0 10px;
}
.content-page p {
  font-size: 0.96rem; color: var(--gray);
  line-height: 1.78; margin-bottom: 14px;
}
.content-page ul, .content-page ol {
  margin: 8px 0 16px 22px; color: var(--gray);
  font-size: 0.96rem; line-height: 1.78;
}
.content-page ul li, .content-page ol li { margin-bottom: 6px; }
.content-page strong { color: var(--navy); font-weight: 600; }
.content-page .highlight-box {
  background: var(--light); border-left: 4px solid var(--blue);
  padding: 18px 22px; border-radius: 8px; margin: 20px 0;
}
.content-page .highlight-box p { color: var(--navy); margin: 0; }

/* =============================================================
   FOOTER (multi-column QuickSetup style)
   ============================================================= */
footer.site-footer {
  background: #0a0f1c; color: rgba(255,255,255,0.6);
  padding: 80px 5% 30px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.4fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-brand-col .logo-wrap { margin-bottom: 18px; }
.footer-brand-col .logo-wrap img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand-col .logo-name { color: #fff; }
.footer-brand-col p {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  color: #fff; font-size: 1rem; font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  font-size: 0.86rem; color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.contact-list .ic {
  color: var(--accent); margin-top: 2px;
  font-size: 1rem; min-width: 18px;
}
.contact-list a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-list a:hover { color: var(--accent); }

.payment-row {
  display: flex; gap: 8px; margin-top: 20px;
  flex-wrap: wrap;
}
.payment-row .pay {
  background: #fff; padding: 6px 10px;
  border-radius: 5px;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
  min-width: 50px; text-align: center;
}
.payment-row .pay.visa { color: #1a1f71; }
.payment-row .pay.mc { color: #eb001b; }
.payment-row .pay.amex { background: #2e77bb; color: #fff; }
.payment-row .pay.disc { color: #ff6000; }

.footer-disclaimer-bar {
  width: 100%;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}
.footer-disclaimer {
  width: 100%;
  padding: 10px 5%;
  font-size: 0.74rem; color: #64748b;
  line-height: 1.55; text-align: center;
}
.footer-disclaimer strong { color: #334155; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center; font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* =============================================================
   COOKIE BANNER
   ============================================================= */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #0a0f1c;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.86rem; font-weight: 400;
  flex: 1; min-width: 280px;
}
.cookie-text a {
  color: var(--sky); text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn {
  padding: 10px 22px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.2s;
}
.cookie-btn.accept { background: var(--blue); color: #fff; }
.cookie-btn.accept:hover { background: var(--blue-dark); }
.cookie-btn.decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.cookie-btn.decline:hover { border-color: #fff; }

/* =============================================================
   FORM (Get Help)
   ============================================================= */
.form-section { background: #fff; }
.form-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.form-img-sticky {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,22,40,0.18);
  position: sticky; top: 90px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  /* Show the support-team-expert.jpg as background */
  background-image: url('/images/support-team-expert.jpg');
  background-size: cover;
  background-position: center top;
}
/* Dark overlay so text stays readable over the photo */
.form-img-sticky::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.55) 55%, rgba(10,22,40,0.25) 100%);
  border-radius: 20px;
}
.form-img-content { position: relative; z-index: 1; padding: 50px 40px; }
.form-img-content { text-align: center; color: #fff; }
.form-img-content .big-icon {
  font-size: 90px; margin-bottom: 20px;
  filter: drop-shadow(0 8px 22px rgba(245,158,11,0.4));
}
.form-img-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; margin-bottom: 14px; font-weight: 700;
}
.form-img-content p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7; font-size: 0.95rem;
  max-width: 320px; margin: 0 auto 22px;
}
.form-img-features {
  list-style: none; padding: 0; text-align: left;
  max-width: 280px; margin: 30px auto 0;
}
.form-img-features li {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.form-img-features li::before {
  content:'✓'; color: var(--accent);
  font-weight: 700; font-size: 0.95rem;
}

.form-card {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 20px; padding: 38px;
}
.form-card .form-desc {
  color: var(--gray); font-size: 0.92rem;
  margin-bottom: 26px; line-height: 1.65;
}
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block; font-size: 0.76rem; font-weight: 700;
  color: var(--navy); margin-bottom: 5px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; color: var(--navy);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  width: 100%; padding: 14px;
  background: var(--blue); color: #fff;
  border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s;
  margin-top: 6px; letter-spacing: 0.02em;
}
.submit-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.35);
}
#msg { text-align: center; font-size: 0.87rem; margin-top: 12px; font-weight: 500; min-height: 20px; }

/* =============================================================
   HERO (homepage)
   ============================================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, #1a3666 100%);
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 1; z-index: 0;
}
.hero::before {
  content:''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,22,40,0.90) 0%, rgba(13,31,60,0.80) 50%, rgba(26,86,219,0.42) 100%);
}
.hero::after {
  content:''; position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  width: 90%; max-width: 1100px; margin: auto;
  padding: 130px 0 70px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--accent);
  padding: 6px 15px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 700;
  color: #fff; line-height: 1.08;
  max-width: 720px; margin-bottom: 22px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.6s 0.15s ease both;
}
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-content > p {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 540px; margin-bottom: 38px;
  font-weight: 300; line-height: 1.75;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.45s ease both;
}
.hero-actions .btn-primary { padding: 14px 30px; font-size: 0.95rem; }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 64px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeUp 0.6s 0.6s ease both;
}
.hero-stat span {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: #fff;
}
.hero-stat p {
  font-size: 0.78rem; color: rgba(255,255,255,0.48);
  margin: 0; text-transform: uppercase; letter-spacing: 0.09em;
}

/* Quick nav under hero */
.quick-nav {
  background: #fff; box-shadow: 0 20px 60px rgba(10,22,40,0.1);
  position: relative; z-index: 3;
}
.quick-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1100px; margin: auto;
}
.quick-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 36px 20px;
  text-decoration: none; color: var(--navy);
  border-right: 1px solid var(--border);
  transition: all 0.3s; cursor: pointer;
  position: relative;
}
.quick-card:last-child { border-right: none; }
.quick-card::after {
  content:''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transition: transform 0.3s;
}
.quick-card:hover { background: var(--light); color: var(--blue); }
.quick-card:hover::after { transform: scaleX(1); }
.quick-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: all 0.3s;
}
.quick-card:hover .quick-icon {
  background: rgba(26,86,219,0.1);
  transform: scale(1.08);
}
.quick-label { font-weight: 600; font-size: 0.88rem; }

/* Two-col layout */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* Image card */
.img-wrap {
  position: relative; border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  min-height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.illus-container {
  width: 100%; height: 100%;
  padding: 30px;
  display: flex; align-items: center; justify-content: center;
}
.img-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 14px 18px; border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.img-badge .ib-icon { font-size: 22px; }
.img-badge strong { display: block; font-size: 0.83rem; color: var(--navy); }
.img-badge span { font-size: 0.75rem; color: var(--gray); }

/* Steps list */
.steps-list {
  list-style: none; margin-top: 34px;
  display: flex; flex-direction: column; gap: 16px;
}
.step-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px; border-radius: 12px;
  transition: all 0.3s; border: 1px solid transparent;
}
.step-item:hover {
  background: var(--light);
  border-color: var(--border);
  transform: translateX(4px);
}
.step-num {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 10px; background: var(--blue);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.step-text strong { display: block; font-size: 0.93rem; margin-bottom: 3px; }
.step-text p { font-size: 0.84rem; color: var(--gray); line-height: 1.55; }

/* WiFi section (light blue bg) */
.wifi-section { background: var(--light); }
.wifi-steps { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.wifi-step {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 18px; background: #fff;
  border-radius: 10px; border: 1px solid var(--border);
  transition: all 0.3s;
}
.wifi-step:hover {
  border-color: var(--sky);
  box-shadow: 0 4px 20px rgba(26,86,219,0.1);
  transform: translateX(4px);
}
.wifi-step-icon {
  font-size: 20px; width: 40px; height: 40px; min-width: 40px;
  background: rgba(26,86,219,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.wifi-step-text strong { display: block; font-size: 0.88rem; }
.wifi-step-text span { font-size: 0.82rem; color: var(--gray); }

/* Computer (dark) section */
.computer-section {
  background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
.computer-section::before {
  content:''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.28) 0%, transparent 70%);
}
.computer-section .section-eyebrow { color: var(--accent); }
.computer-section .section-title { color: #fff; }

.os-tabs { display: flex; gap: 8px; margin-top: 26px; margin-bottom: 18px; }
.os-tab {
  padding: 8px 18px; border-radius: 6px;
  font-size: 0.84rem; font-weight: 600; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}
.os-tab.active, .os-tab:hover {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.os-steps {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 22px;
  display: flex; flex-direction: column; gap: 13px;
}
.os-step {
  display: flex; gap: 14px; align-items: center;
  padding: 11px; border-radius: 8px;
  transition: background 0.2s;
}
.os-step:hover { background: rgba(255,255,255,0.05); }
.os-step-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky); min-width: 8px;
}
.os-step-text { font-size: 0.87rem; color: rgba(255,255,255,0.78); }

/* Brand card grid (for printer setup index) */
.brand-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 50px;
}
.brand-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  text-decoration: none; color: var(--navy);
  transition: all 0.3s;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.brand-card::before {
  content:''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26,86,219,0.12);
}
.brand-card .brand-logo {
  width: 60px; height: 60px;
  background: var(--light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 18px;
}
.brand-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.brand-card p {
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.65; margin-bottom: 18px; flex: 1;
}
.brand-card .arrow {
  font-size: 0.85rem; font-weight: 600;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s;
}
.brand-card:hover .arrow { gap: 12px; }

/* Contact info cards */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-bottom: 50px;
}
.contact-info-grid.contact-info-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.contact-card {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px;
  text-align: center;
  transition: all 0.3s;
}
.contact-card:hover {
  background: #fff;
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26,86,219,0.1);
}
.contact-card .ic-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.contact-card h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray); margin-bottom: 8px;
}
.contact-card p {
  font-size: 1rem; font-weight: 600;
  color: var(--navy); margin: 0;
  line-height: 1.5;
}
.contact-card a { color: inherit; text-decoration: none; }

/* About page values */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26,86,219,0.08);
}
.value-card .v-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.value-card h3 {
  font-size: 1.08rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* FAQ accordion */
.faq-list { margin-top: 30px; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 12px;
  overflow: hidden; transition: all 0.3s;
}
.faq-item.open { border-color: var(--sky); box-shadow: 0 6px 20px rgba(26,86,219,0.08); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--navy);
}
.faq-q .plus { font-size: 1.4rem; color: var(--blue); transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }
.faq-a p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* Animation */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 5%; box-shadow: 0 14px 30px rgba(0,0,0,0.1); border-bottom: 1px solid var(--border); }
  nav.open { display: flex; }
  nav > a, nav > .dropdown > .dropdown-toggle { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; text-align: left; justify-content: space-between; display: flex; }
  .dropdown { width: 100%; }
  .dropdown-menu { position: static; transform: none; box-shadow: none; border: none; padding: 0 0 8px 14px; min-width: 0; opacity: 1; visibility: visible; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .dropdown.open .dropdown-menu { transform: none; max-height: 300px; }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a { padding: 10px 14px; font-size: 0.9rem; }
  .nav-toggle { display: block; }
  nav .btn-primary { margin-top: 12px; justify-content: center; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-card:nth-child(2) { border-right: none; }
  .quick-card:nth-child(3), .quick-card:nth-child(4) { border-top: 1px solid var(--border); }
  .two-col, .form-two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-img-sticky { position: static; min-height: 360px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .brand-grid, .contact-info-grid, .values-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 14px 5%; }
  .cookie-actions { width: 100%; justify-content: center; }
}
@media (max-width: 500px) {
  .section-wrap { padding: 70px 0; }
  .page-hero { padding: 130px 5% 50px; }
  .form-card { padding: 26px 20px; }
  .hero-content { padding: 110px 0 50px; }
  .hero-stat span { font-size: 1.6rem; }
}