/* =========================================================================
   Kuzey Eksproof Elektrik Mağaza — Stylesheet
   Marka paleti referans alınarak: kuzeyeksproof.com
   ========================================================================= */

:root {
  --primary: #c41230;
  --primary-dark: #9e0e25;
  --primary-soft: #fceaee;
  --blue: #1e5fa8;
  --blue-dark: #164d8a;
  --dark: #1a1a2e;
  --dark-2: #232337;
  --gray: #3d3d3d;
  --muted: #666666;
  --light: #f5f5f5;
  --light-2: #fafafa;
  --white: #ffffff;
  --border: #e0e0e0;
  --border-soft: #ececec;

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --font-head: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, Segoe UI, sans-serif;

  --max-w: 1280px;
  --transition: 0.25s ease;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--primary-dark);
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
h3 {
  font-size: 1.125rem;
  font-weight: 600;
}
p {
  margin: 0 0 1em;
}
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius);
}
::selection {
  background: var(--primary);
  color: var(--white);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.25rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg {
  height: 48px;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
}
.btn-sm {
  height: 36px;
  padding: 0 0.875rem;
  font-size: 0.8125rem;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(196, 18, 48, 0.32);
}
.btn-secondary {
  background: var(--dark);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--dark-2);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
}
.btn-ghost:hover {
  background: var(--light);
}
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ---------- Top Contact Bar ---------- */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar a:hover {
  color: var(--primary-soft);
}
.top-bar-left {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.top-bar-right {
  display: none;
  align-items: center;
  gap: 0.4rem;
}
@media (min-width: 1024px) {
  .top-bar-right {
    display: inline-flex;
  }
}
@media (max-width: 639px) {
  .top-bar {
    display: none;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
}
.header-main {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img {
  height: 40px;
  width: auto;
}
.logo-tag {
  display: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
@media (min-width: 640px) {
  .logo-tag {
    display: inline;
  }
}

/* ---------- Primary Nav ---------- */
.primary-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
  }
}
.primary-nav a,
.primary-nav .nav-trigger {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
.primary-nav a:hover,
.primary-nav .nav-trigger:hover,
.primary-nav .nav-trigger[aria-expanded='true'] {
  color: var(--primary);
}
.primary-nav .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.primary-nav .nav-trigger[aria-expanded='true'] .chevron {
  transform: rotate(180deg);
}

/* ---------- Header Right (CTA) ---------- */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-call {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
}
.header-call:hover {
  background: var(--light);
}
.header-call .icon {
  color: var(--primary);
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  .header-call {
    display: inline-flex;
  }
}
.header-cta .btn-primary {
  display: none;
}
@media (min-width: 640px) {
  .header-cta .btn-primary {
    display: inline-flex;
  }
}

/* ---------- Mobile Toggle ---------- */
.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--dark);
}
.mobile-toggle:hover {
  background: var(--light);
}
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ---------- Mega Menu ---------- */
.mega-menu-wrap {
  position: relative;
}
.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: 8px;
  transform: translateX(-50%);
  width: min(96vw, 960px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 60;
}
.mega-menu.is-open {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .mega-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.mega-cats {
  padding: 1rem;
}
.mega-label {
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.mega-cat-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .mega-cat-list {
    grid-template-columns: 1fr 1fr;
  }
}
.mega-cat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--dark);
}
.mega-cat-item:hover {
  background: var(--light);
  color: var(--dark);
}
.mega-cat-item .icon-box {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--primary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.mega-cat-item:hover .icon-box {
  background: var(--primary);
  color: var(--white);
}
.mega-cat-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}
.mega-cat-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-feature {
  padding: 1.5rem;
  background: var(--dark);
  color: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
@media (min-width: 1024px) {
  .mega-feature {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
}
.mega-feature .small-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.mega-feature h4 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: var(--white);
}
.mega-feature p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
}
.mega-feature .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

/* ---------- Mobile Drawer ---------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}
.mobile-drawer.is-open {
  display: block;
}
.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 29, 0.6);
}
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 380px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer-header span {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
}
.mobile-drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0.5rem;
}
.mobile-drawer-nav a,
.mobile-drawer-nav .acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.mobile-drawer-nav a:hover,
.mobile-drawer-nav .acc-trigger:hover {
  background: var(--light);
}
.mobile-drawer-nav .acc-panel {
  display: none;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid var(--border);
}
.mobile-drawer-nav .acc-panel.is-open {
  display: block;
}
.mobile-drawer-nav .acc-panel a {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  color: var(--dark);
}
.mobile-drawer-nav .acc-panel a.muted-link {
  color: var(--primary);
  font-weight: 600;
}
.mobile-drawer-nav .acc-trigger[aria-expanded='true'] svg {
  transform: rotate(180deg);
}
.mobile-drawer-nav .acc-trigger svg {
  transition: transform var(--transition);
}
.mobile-drawer-footer {
  padding: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-drawer-footer .btn {
  width: 100%;
}
body.no-scroll {
  overflow: hidden;
}

/* ---------- Sections ---------- */
.section {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .section {
    padding: 5rem 0;
  }
}
.section-tight {
  padding: 3rem 0;
}
.section-bg-light {
  background: var(--light);
}
.section-bg-dark {
  background: var(--dark);
  color: var(--white);
}
.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3 {
  color: var(--white);
}

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(196, 18, 48, 0.45), transparent 38%),
    radial-gradient(circle at 80% 60%, rgba(30, 95, 168, 0.55), transparent 42%);
  opacity: 0.55;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 7fr 5fr;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(196, 18, 48, 0.45);
  background: rgba(196, 18, 48, 0.18);
  color: #f19cac;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero p.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  margin-top: 1.25rem;
  max-width: 56ch;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-self: center;
}
@media (min-width: 640px) {
  .hero-card-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .hero-card-list {
    grid-template-columns: 1fr;
  }
}
.hero-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
}
.hero-card .icon {
  color: #f19cac;
  width: 24px;
  height: 24px;
}
.hero-card-title {
  margin-top: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.hero-card-body {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Section Heading Block ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.section-head h2 {
  margin: 0;
  max-width: 36ch;
}
.section-head p {
  max-width: 56ch;
  color: var(--muted);
  margin: 0;
}
.section-head-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .section-head-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.link-arrow:hover {
  color: var(--primary-dark);
}

/* ---------- Card Grids ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: var(--dark);
  transition: all var(--transition);
}
.cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--dark);
}
.cat-card .icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--primary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.cat-card:hover .icon-box {
  background: var(--primary);
  color: var(--white);
}
.cat-card h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--dark);
}
.cat-card .cat-desc {
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.cat-card .link-arrow {
  align-self: flex-start;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background: var(--light);
  color: var(--border);
}
.product-img svg {
  width: 56px;
  height: 56px;
}
.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}
.product-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.product-card h3 a {
  color: var(--dark);
}
.product-card h3 a:hover {
  color: var(--primary);
}
.product-card .product-desc {
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-actions .link-arrow {
  font-size: 0.8125rem;
  color: var(--dark);
}
.product-actions .link-arrow:hover {
  color: var(--primary);
}

/* ---------- Why-us tiles ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-tile {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.why-tile .icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--primary);
  border-radius: var(--radius-md);
}
.why-tile h3 {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--dark);
}
.why-tile p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---------- Certifications ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cert-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.cert-tile .cert-circle {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--primary);
  border-radius: 999px;
}
.cert-tile p.code {
  margin-top: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.cert-tile p.label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--dark);
  color: var(--white);
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 3.5rem 0;
}
@media (min-width: 1024px) {
  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-strip h2 {
  color: var(--white);
  margin: 0;
}
.cta-strip p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
}
.cta-strip-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb li + li::before {
  content: '›';
  color: var(--border);
}
.breadcrumb a {
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb [aria-current='page'] {
  color: var(--dark);
  font-weight: 600;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .form-card {
    padding: 2rem;
  }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form-grid .full {
  grid-column: 1 / -1;
}
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-field label .req {
  color: var(--primary);
  margin-left: 2px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  height: 44px;
  padding: 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.form-field textarea {
  height: auto;
  min-height: 130px;
  padding: 0.75rem;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.12);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #b71c1c;
}
.form-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #b71c1c;
}
.checkbox-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--dark);
}
.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}
.checkbox-row a {
  font-weight: 600;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.form-actions small {
  color: var(--muted);
  font-size: 0.75rem;
}

.alert {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}
.alert.alert-error {
  background: #fdecea;
  border: 1px solid #f5c6c6;
  color: #b71c1c;
}
.alert.alert-success {
  background: #edfaf1;
  border: 1px solid #a3e4bc;
  color: #1a7a3f;
}

.success-card {
  text-align: center;
  background: var(--primary-soft);
  border: 1px solid rgba(196, 18, 48, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.success-card .check-circle {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.success-card h3 {
  color: var(--dark);
  margin-top: 1rem;
  font-size: 1.25rem;
}
.success-card p {
  color: var(--muted);
  margin-top: 0.5rem;
}
.success-card .btn {
  margin-top: 1.5rem;
}

/* ---------- Quote Process Steps ---------- */
.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.step-card {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.step-card-head {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.step-card-num {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius-md);
}
.step-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0 0;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ---------- Two-column on category page ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Product detail page ---------- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .product-hero {
    grid-template-columns: 1fr 1fr;
  }
}
.product-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--border);
}
.product-image-box svg {
  width: 70px;
  height: 70px;
}
.product-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-hero-meta h1 {
  margin: 0.5rem 0 0;
}
.cert-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.cert-chip svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}
.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.spec-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  color: var(--dark);
}
.spec-list li + li {
  border-top: 1px solid var(--border-soft);
}
.spec-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.cert-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .cert-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cert-card {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cert-card svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}
.cert-card h3 {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--dark);
}
.cert-card p {
  margin: 2px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.aside-card {
  padding: 1.5rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.aside-card h2,
.aside-card h3 {
  color: var(--dark);
}
.aside-card p {
  font-size: 0.875rem;
  color: var(--muted);
}
.aside-card ul.benefits {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.aside-card ul.benefits li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--dark);
}
.aside-card ul.benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.aside-card .btn {
  width: 100%;
  margin-top: 1.5rem;
}
.aside-second {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.aside-second h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}
.aside-second ul li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.2rem 0;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-card {
  display: block;
  height: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: var(--dark);
  transition: border-color var(--transition);
}
.contact-card:hover {
  border-color: var(--primary);
  color: var(--dark);
}
.contact-card .icon-box {
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  color: var(--dark);
}
.contact-card p {
  margin: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.map-frame {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.hours-table {
  margin-top: 1.25rem;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours-table li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
}
.hours-table li + li {
  border-top: 1px solid var(--border-soft);
}
.hours-table li span:first-child {
  font-weight: 600;
  color: var(--dark);
}
.hours-table li span:last-child {
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0f0f1d;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer h2 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 0 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}
.site-footer .logo-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .logo-block .logo-box {
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  align-self: flex-start;
}
.site-footer .logo-block p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.site-footer .logo-block .tagline {
  font-size: 0.75rem;
  color: var(--primary-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-list a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-list a:hover {
  color: var(--primary-soft);
}
.contact-list {
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.contact-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
}
.contact-list svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-list a {
  color: rgba(255, 255, 255, 0.78);
}
.contact-list a:hover {
  color: var(--primary-soft);
}
.cert-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.85);
}
.cert-pill svg {
  width: 12px;
  height: 12px;
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a:hover {
  color: var(--primary-soft);
}

/* ---------- 404 ---------- */
.notfound {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.notfound .big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 5rem;
  color: var(--primary);
  margin: 0;
}

/* ---------- Util ---------- */
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.875rem;
}
.text-center {
  text-align: center;
}
.empty-state {
  padding: 2rem;
  text-align: center;
  background: var(--light);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--muted);
}
.heading-with-kicker {
  margin-bottom: 2rem;
}
