﻿/* ============================================================
   GK Manifest - Production Stylesheet
   Based on Variant 2 (Navy Premium)
   ============================================================ */

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

/* --- VARIABLES --- */
:root {
  --navy: #2b4368;
  --navy-deep: #1a2d47;
  --navy-darker: #111e30;
  --steel: #86a6bf;
  --steel-light: #a8c4d9;
  --steel-pale: #d4e2ee;
  --orange: #ff7a00;
  --orange-hover: #e86e00;
  --cream: #f9f1ec;
  --cream-dark: #efe3d8;
  --bg: #f4f0ec;
  --white: #ffffff;
  --text: #1a2332;
  --text-light: #5e7188;
  --border: rgba(43,67,104,0.12);
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(26,45,71,0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --container: 1240px;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: var(--font);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100vw; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; max-width: 100vw; min-width: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; }
/* --- CONTAINER --- */
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: all .25s ease; font-family: var(--font); text-align: center; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,122,0,0.35); }
.btn-glass { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,0.22); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.header { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: background .3s, padding .3s, box-shadow .3s; }
.header.sticky { position: fixed; background: var(--navy-darker); padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; }
.logo strong { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 28px; }
.nav a, .nav-drop > span, .nav-drop > a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); transition: color .2s; cursor: pointer; }
.nav a:hover, .nav-drop:hover > span, .nav-drop:hover > a { color: #fff; }
.nav-drop { position: relative; }
.nav-drop > span i, .nav-drop > a i { font-size: 10px; margin-left: 4px; transition: transform .2s; }
.nav-drop:hover > span i, .nav-drop:hover > a i { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: 100%; left: -12px; padding-top: 12px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .25s ease; }
.nav-drop:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-inner { background: #fff; border-radius: var(--radius-sm); box-shadow: 0 12px 40px rgba(0,0,0,0.15); padding: 8px 0; min-width: 220px; }
.nav-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: var(--text) !important; white-space: nowrap; transition: background .15s, color .15s; }
.nav-dropdown a:hover { background: var(--cream); color: var(--orange) !important; }
.nav-dropdown a i { color: var(--steel); font-size: 14px; width: 18px; text-align: center; }
.nav-dropdown a:hover i { color: var(--orange); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { color: #fff; font-size: 15px; font-weight: 700; }
.header-phone a { color: #fff; }

/* Mobile burger */
.burger { display: none; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; cursor: pointer; position: relative; flex-shrink: 0; }
.burger span, .burger::before, .burger::after { content: ''; position: absolute; left: 8px; right: 8px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.burger span { top: 50%; transform: translateY(-50%); }
.burger::before { top: 9px; }
.burger::after { bottom: 9px; }
.burger.active span { opacity: 0; }
.burger.active::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.active::after { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 99; background: var(--navy-darker); padding: 80px 24px 40px; flex-direction: column; gap: 0; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 16px 0; font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 20px; }
.mobile-nav .mob-phone { margin-top: 16px; font-size: 20px; font-weight: 800; color: #fff; }
.mobile-nav .mob-email { font-size: 14px; color: var(--steel); margin-top: 6px; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { position: relative; min-height: 100vh; background: var(--navy-darker); overflow: hidden; }
.hero-slider { position: relative; min-height: 100vh; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; display: flex; align-items: center; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-slide-bg { position: absolute; inset: 0; }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,45,71,0.95) 0%, rgba(43,67,104,0.8) 50%, rgba(134,166,191,0.6) 100%); }
.hero-slide-inner { position: relative; z-index: 2; width: min(var(--container), calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; padding: 130px 0 80px; }
.hero-content { color: #fff; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 24px; }
.hero :is(h1, .hero-title) { font-family: var(--font-serif); font-size: clamp(32px, 4.2vw, 52px); font-weight: 700; line-height: 1.15; margin-bottom: 20px; color: #fff; }
.hero :is(h1, .hero-title) em { font-style: normal; color: var(--orange); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hero-feat { padding: 18px; border-radius: var(--radius); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(6px); }
.hero-feat i { font-size: 22px; color: var(--orange); margin-bottom: 10px; display: block; }
.hero-feat h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hero-feat p { font-size: 12px; color: rgba(255,255,255,0.6); }
.hero-visual { position: relative; width: min(100%, 520px); min-height: 560px; justify-self: end; padding: 28px 0 42px 36px; }
.hero-media { position: relative; width: 100%; height: 100%; min-height: 490px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05)); border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 24px 60px rgba(0,0,0,0.28); backdrop-filter: blur(8px); }
.hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-float { position: absolute; z-index: 2; bottom: -20px; left: 0; background: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; }
.hero-float-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; }
.hero-float strong { display: block; font-size: 22px; color: var(--navy); }
.hero-float span { font-size: 12px; color: var(--text-light); }

/* Slider controls */
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all .3s; padding: 0; }
.hero-dot.active { background: var(--orange); border-color: var(--orange); width: 36px; border-radius: 6px; }
.hero-arrow { position: absolute; top: 50%; z-index: 10; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; backdrop-filter: blur(4px); }
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow--prev { left: 20px; transform: translateY(-50%); }
.hero-arrow--next { right: 20px; transform: translateY(-50%); }
.hero-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--orange); z-index: 10; transition: width linear; }

/* Desktop hero needs extra vertical room on short laptop/FHD browser viewports. */
@media (min-width: 1025px) and (max-height: 850px) {
  .hero,
  .hero-slider {
    min-height: 840px;
  }
  .hero-slide {
    align-items: flex-start;
    min-height: 840px;
  }
  .hero-slide-inner {
    padding: 150px 0 72px;
  }
  .hero-eyebrow {
    margin-bottom: 18px;
  }
  .hero :is(h1, .hero-title) {
    font-size: clamp(34px, 3.35vw, 44px);
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-actions {
    margin-bottom: 28px;
  }
  .hero-visual {
    min-height: 480px;
    padding-top: 20px;
    padding-bottom: 32px;
  }
  .hero-media {
    min-height: 420px;
  }
  .hero-feat {
    padding: 14px 16px;
  }
  .hero-feat i {
    margin-bottom: 8px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .hero-slide-inner {
    gap: 36px;
  }
  .hero :is(h1, .hero-title) {
    font-size: clamp(34px, 3.8vw, 48px);
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.7;
  }
  .hero-actions {
    margin-bottom: 36px;
  }
  .hero-visual {
    width: min(100%, 460px);
    min-height: 520px;
    padding-left: 24px;
  }
  .hero-media {
    min-height: 450px;
  }
  .hero-feat {
    padding: 16px;
  }
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section { padding: 48px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-deep); color: #fff; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .eyebrow { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 12px; }
.section-head h2 { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 38px); font-weight: 700; line-height: 1.25; color: var(--navy-deep); }
.section-navy .section-head h2 { color: #fff; }
.section-head p { font-size: 16px; color: var(--text-light); max-width: 580px; margin: 14px auto 0; }
.section-navy .section-head p { color: rgba(255,255,255,0.6); }
.center-btn { text-align: center; margin-top: 8px; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card { background: #fff; border-radius: var(--radius); padding: 30px 22px; text-align: center; border: 1px solid var(--border); transition: all .3s ease; cursor: pointer; position: relative; overflow: hidden; }
.cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform .3s; }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cat-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--steel-pale), var(--cream)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all .3s; }
.cat-icon i { font-size: 22px; color: var(--navy); transition: color .3s; }
.cat-card:hover .cat-icon { background: linear-gradient(135deg, var(--orange), #ff9a3e); }
.cat-card:hover .cat-icon i { color: #fff; }
.cat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.cat-card p { font-size: 12px; color: var(--text-light); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all .35s ease; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-thumb { position: relative; height: 210px; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 50px; z-index: 2; }
.product-body { padding: 20px; }
.product-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.product-meta { font-size: 12px; color: var(--text-light); margin-bottom: 14px; }
.product-price { font-size: 22px; font-weight: 800; color: var(--orange); margin-bottom: 14px; }
.product-price small { font-size: 13px; color: var(--text-light); font-weight: 500; }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; padding: 10px; font-size: 13px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-float { position: absolute; bottom: -24px; right: -24px; width: 200px; border-radius: var(--radius); overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow-lg); }
.about-img-float img { width: 100%; height: 140px; object-fit: cover; }
.about-content .eyebrow { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 14px; }
.about-content h2 { font-family: var(--font-serif); font-size: clamp(24px, 2.5vw, 34px); font-weight: 700; color: var(--navy-deep); line-height: 1.25; margin-bottom: 18px; }
.about-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.about-checks { margin: 24px 0; }
.about-checks li { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 14px; font-weight: 600; color: var(--navy); }
.about-checks li i { width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { text-align: center; padding: 36px 24px; position: relative; }
.process-step::after { content: ''; position: absolute; top: 44px; right: 0; width: 40px; height: 2px; background: rgba(255,255,255,0.15); }
.process-step:last-child::after { display: none; }
.process-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 20px; font-weight: 800; color: var(--orange); }
.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ============================================================
   STATS / GEO
   ============================================================ */
.geo-bar { background: linear-gradient(135deg, var(--navy), var(--steel)); padding: 56px 0; }
.geo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; color: #fff; }
.geo-grid strong { display: block; font-size: clamp(32px, 4vw, 44px); font-weight: 900; line-height: 1; margin-bottom: 8px; }
.geo-grid span { font-size: 14px; opacity: 0.8; }

/* ============================================================
   CTA / FORM
   ============================================================ */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.06; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.cta-content h2 { font-family: var(--font-serif); font-size: clamp(24px, 2.5vw, 34px); font-weight: 700; color: var(--navy-deep); margin-bottom: 16px; line-height: 1.25; }
.cta-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.cta-info { display: flex; flex-direction: column; gap: 12px; }
.cta-info a { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--navy); transition: color .2s; }
.cta-info a:hover { color: var(--orange); }
.cta-info a i { color: var(--orange); width: 20px; text-align: center; flex-shrink: 0; }
.cta-form { background: var(--navy-deep); border-radius: var(--radius-lg); padding: 40px; color: #fff; }
.cta-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.cta-form .form-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 22px; }
.field { width: 100%; padding: 13px 18px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: #fff; font-size: 14px; margin-bottom: 12px; transition: border-color .2s; }
.field::placeholder { color: rgba(255,255,255,0.4); }
.field:focus { border-color: var(--orange); background: rgba(255,255,255,0.1); }
textarea.field { min-height: 100px; resize: vertical; }
.cta-form .btn { width: 100%; margin-top: 4px; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 12px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-darker); color: rgba(255,255,255,0.7); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
/* Page hero - reusable for all info pages */
.page-hero { position: relative; padding: 150px 0 70px; color: #fff; overflow: hidden; background: var(--navy-deep); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,30,48,0.82) 0%, rgba(43,67,104,0.65) 50%, rgba(26,45,71,0.8) 100%); }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.page-hero-content {}
.page-hero .breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.page-hero .breadcrumbs a { color: rgba(255,255,255,0.55); transition: color .2s; }
.page-hero .breadcrumbs a:hover { color: var(--orange); }
.page-hero .breadcrumbs i { font-size: 9px; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(30px, 3.8vw, 46px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-sidebar { display: flex; flex-direction: column; gap: 16px; justify-self: end; width: 100%; max-width: 340px; }
.page-hero-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 22px 24px; display: flex; align-items: center; gap: 16px; transition: all .3s; cursor: default; }
.page-hero-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); border-color: rgba(255,255,255,0.22); }
.page-hero-card i { font-size: 24px; color: var(--orange); width: 28px; text-align: center; flex-shrink: 0; }
.page-hero-card strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.page-hero-card span { font-size: 12px; color: rgba(255,255,255,0.5); }
/* Floating geometric decorations */
.page-hero-decor { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); pointer-events: none; z-index: 1; }
.page-hero-decor--1 { width: 300px; height: 300px; top: -80px; right: -60px; animation: heroFloat 8s ease-in-out infinite; }
.page-hero-decor--2 { width: 180px; height: 180px; bottom: -40px; left: 10%; animation: heroFloat 6s ease-in-out infinite reverse; }
.page-hero-decor--3 { width: 80px; height: 80px; top: 40%; right: 20%; background: rgba(255,122,0,0.06); animation: heroFloat 5s ease-in-out infinite 1s; }
@keyframes heroFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-18px) scale(1.04); } }
/* Orange accent line at bottom */
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--orange), transparent); }
/* ============================================================
   DELIVERY & PAYMENT PAGE
   ============================================================ */
.info-section { padding: 72px 0; }
.info-section:nth-child(even) { background: var(--cream); }
.info-section-head { margin-bottom: 40px; }
.info-section-head .eyebrow { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 10px; }
.info-section-head h2 { font-family: var(--font-serif); font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; color: var(--navy-deep); line-height: 1.25; }
.info-section-head p { font-size: 15px; color: var(--text-light); margin-top: 10px; max-width: 680px; line-height: 1.7; margin-left: auto; margin-right: auto; }
.info-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { background: #fff; border-radius: var(--radius); padding: 32px 26px; border: 1px solid var(--border); transition: all .3s; }
.info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.info-card-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--steel-pale), var(--cream)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all .3s; }
.info-card-icon i { font-size: 22px; color: var(--navy); transition: color .3s; }
.info-card:hover .info-card-icon { background: linear-gradient(135deg, var(--orange), #ff9a3e); }
.info-card:hover .info-card-icon i { color: #fff; }
.info-card h3 { font-size: 17px; font-weight: 700; color: var(--navy-deep); margin-bottom: 10px; }
.info-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.info-card ul { margin-top: 10px; }
.info-card ul li { font-size: 13px; color: var(--text-light); padding: 5px 0; padding-left: 20px; position: relative; line-height: 1.6; }
.info-card ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 32px; }
.info-table th { background: var(--navy-deep); color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 14px 20px; text-align: left; }
.info-table td { padding: 14px 20px; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { background: var(--cream); }
.info-table td i { color: var(--orange); margin-right: 8px; }
.info-highlight { display: flex; align-items: center; gap: 20px; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); border-radius: var(--radius); padding: 28px 32px; color: #fff; margin-top: 32px; }
.info-highlight i { font-size: 32px; color: var(--orange); flex-shrink: 0; }
.info-highlight div { flex: 1; }
.info-highlight strong { display: block; font-size: 17px; margin-bottom: 4px; }
.info-highlight span { font-size: 13px; color: rgba(255,255,255,0.6); }
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pay-card { background: #fff; border-radius: var(--radius); padding: 36px 28px; border: 1px solid var(--border); text-align: center; transition: all .3s; }
.pay-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pay-card-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #ff9a3e); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-size: 28px; }
.pay-card h3 { font-size: 18px; font-weight: 700; color: var(--navy-deep); margin-bottom: 10px; }
.pay-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row { display: flex; gap: 32px; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid var(--border); }
.service-row:last-child { border-bottom: none; }
.service-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #ff9a3e); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; flex-shrink: 0; }
.service-body h3 { font-size: 20px; font-weight: 700; color: var(--navy-deep); margin-bottom: 10px; }
.service-body > p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }
.service-body ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.service-body ul li { font-size: 13px; color: var(--text-light); padding-left: 20px; position: relative; line-height: 1.7; }
.service-body ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
/* Service visual cards */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.svc-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .35s, box-shadow .35s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card-img { position: absolute; inset: 0; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,30,48,0.92) 0%, rgba(17,30,48,0.5) 45%, rgba(17,30,48,0.15) 100%); }
.svc-card-body { position: relative; z-index: 2; padding: 32px; color: #fff; }
.svc-card-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; margin-bottom: 16px; }
.svc-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.svc-card-body p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 18px; }
.svc-card-body .btn { padding: 10px 20px; font-size: 13px; }
.svc-card--wide { grid-column: 1 / -1; min-height: 280px; }
.svc-card--wide .svc-card-body { max-width: 560px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* Intro two-column */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-intro-text .eyebrow { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 14px; }
.about-intro-text h2 { font-family: var(--font-serif); font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; color: var(--navy-deep); line-height: 1.3; margin-bottom: 18px; }
.about-intro-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-intro-img img { width: 100%; height: 380px; object-fit: cover; }
/* Mission quote */
.mission-block { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); border-radius: var(--radius-lg); padding: 48px 52px; color: #fff; display: flex; align-items: flex-start; gap: 28px; margin-top: 48px; }
.mission-block i { font-size: 36px; color: var(--orange); flex-shrink: 0; margin-top: 4px; }
.mission-block blockquote { font-family: var(--font-serif); font-size: 19px; line-height: 1.7; font-style: italic; color: rgba(255,255,255,0.85); }
.mission-block cite { display: block; margin-top: 14px; font-style: normal; font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--orange); }
/* Timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: var(--steel-pale); transform: translateX(-50%); }
.timeline-item { position: relative; display: flex; align-items: flex-start; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) { justify-content: flex-start; padding-right: calc(50% + 40px); }
.timeline-item:nth-child(even) { justify-content: flex-end; padding-left: calc(50% + 40px); }
.timeline-dot { position: absolute; left: 50%; top: 8px; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); border: 4px solid var(--bg); transform: translateX(-50%); z-index: 2; }
.timeline-card { background: #fff; border-radius: var(--radius); padding: 24px 28px; border: 1px solid var(--border); box-shadow: var(--shadow); max-width: 100%; transition: all .3s; }
.timeline-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.timeline-card .year { font-size: 13px; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.timeline-card h3 { font-size: 16px; font-weight: 700; color: var(--navy-deep); margin-bottom: 6px; }
.timeline-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
/* Guarantees grid */
.guarantees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.guarantees-section { background: var(--navy-deep); padding: 72px 0; color: #fff; }
.guarantees-section .info-section-head h2 { color: #fff; }
.guarantees-section .info-section-head p { color: rgba(255,255,255,0.55); }
.guarantee-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px 26px; text-align: center; transition: all .3s; }
.guarantee-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.guarantee-card i { font-size: 32px; color: var(--orange); margin-bottom: 16px; display: block; }
.guarantee-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.guarantee-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
/* Stats row inside page */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.about-stat { text-align: center; padding: 24px 16px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.about-stat strong { display: block; font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.about-stat span { font-size: 13px; color: var(--text-light); }

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contacts-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: #fff; border-radius: var(--radius); padding: 28px 28px; border: 1px solid var(--border); display: flex; align-items: flex-start; gap: 18px; transition: box-shadow .3s; }
.contact-card:hover { box-shadow: var(--shadow-lg); }
.contact-card-icon { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #ff9a3e); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.contact-card-body { flex: 1; min-width: 0; }
.contact-card-body label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 6px; }
.contact-card-body .contact-value { font-size: 20px; font-weight: 700; color: var(--navy-deep); word-break: break-all; }
.contact-card-body .contact-value a { color: var(--navy-deep); transition: color .2s; }
.contact-card-body .contact-value a:hover { color: var(--orange); }
.contact-card-body .contact-sub { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.copy-row { display: flex; align-items: center; gap: 10px; }
.copy-btn { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--navy); cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.copy-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.copy-btn.copied { background: #27ae60; color: #fff; border-color: #27ae60; }
.contacts-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); min-height: 460px; }
.contacts-map iframe { display: block; width: 100%; height: 460px; border: 0; }
.contacts-address { background: #fff; border-radius: var(--radius); padding: 24px 28px; border: 1px solid var(--border); margin-top: 20px; display: flex; align-items: center; gap: 16px; }
.contacts-address i { font-size: 22px; color: var(--orange); }
.contacts-address div { font-size: 15px; font-weight: 600; color: var(--navy-deep); }
.contacts-address span { display: block; font-size: 13px; font-weight: 400; color: var(--text-light); margin-top: 2px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero, .hero-slider { min-height: auto; }
  .hero-slide { position: relative; }
  .hero-slide:not(.active) { display: none; }
  .hero-slide-inner { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-visual { width: min(100%, 500px); min-height: 500px; justify-self: center; margin: 0 auto; }
  .hero-media { min-height: 440px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-float { position: static; width: 100%; margin-top: 12px; }
  .about-img-float img { height: 180px; }
  .cta-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-sidebar { justify-self: start; max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .page-hero-card { flex: 1; min-width: 200px; }
  .info-cards-3 { grid-template-columns: 1fr; }
  .pay-methods { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .guarantees-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { padding-left: 56px; padding-right: 0; justify-content: flex-start; }
  .timeline-dot { left: 20px; }
  .mission-block { flex-direction: column; padding: 32px 28px; gap: 16px; }
  .service-row { flex-direction: column; gap: 20px; }
  .service-body ul { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card--wide { grid-column: auto; }
  .svc-card { min-height: 280px; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .header-right .btn { display: none; }
  .burger { display: block; }
}

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .geo-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-features { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 430px; }
  .hero-media { min-height: 380px; }
  .hero-arrow { display: none; }
  .info-cards-3, .pay-methods { grid-template-columns: repeat(2, 1fr); }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 600px) {
  .container { width: calc(100% - 24px); }
  .section { padding: 56px 0; }
  .hero { min-height: auto; }
  .hero-slider { min-height: auto; }
  .hero-slide { position: relative; }
  .hero-slide:not(.active) { display: none; }
  .hero-slide-inner { padding: 100px 0 56px; gap: 32px; }
  .hero-eyebrow { display: flex; width: 100%; max-width: 340px; min-width: 0; white-space: normal; overflow-wrap: anywhere; flex-wrap: wrap; border-radius: 18px; font-size: 10px; letter-spacing: 0.04em; line-height: 1.45; }
  .hero :is(h1, .hero-title) { max-width: 340px; font-size: 23px; line-height: 1.18; overflow-wrap: anywhere; }
  .hero-desc { max-width: 340px; font-size: 15px; overflow-wrap: anywhere; }
  .hero-actions { width: 100%; max-width: 340px; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-features { width: 100%; max-width: 340px; grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-float { display: none; }
  .cat-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-img-main img { height: 260px; }
  .cta-form { padding: 28px 20px; }
  .section-head h2 { font-size: 22px; }
  .contact-card { padding: 20px 18px; }
  .contact-card-body .contact-value { font-size: 17px; }
  .contacts-map iframe { height: 320px; }
  .contacts-map { min-height: 320px; }
  .page-hero { padding: 110px 0 48px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero-sidebar { flex-direction: column; }
  .page-hero-card { min-width: 0; }
  .page-hero-decor { display: none; }
  .about-intro-img img { height: 240px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-stat strong { font-size: 26px; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .mission-block blockquote { font-size: 16px; }
}


/* ============================================================
   PARTNERS CAROUSEL
   ============================================================ */
.partners-section { background: var(--white); }
.partners-track-wrap { overflow: hidden; margin-top: 40px; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.partners-track { display: flex; gap: 48px; animation: partnerScroll 25s linear infinite; width: max-content; }
.partners-track:hover { animation-play-state: paused; }
.partner-logo { flex-shrink: 0; display: flex; align-items: center; justify-content: center; height: 64px; min-width: 140px; padding: 8px 16px; }
.partner-logo img { max-height: 52px; max-width: 140px; object-fit: contain; filter: grayscale(100%) opacity(0.55); transition: all .3s ease; }
.partner-logo:hover img { filter: grayscale(0%) opacity(1); }
@keyframes partnerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   GEOGRAPHY
   ============================================================ */
.geo-section { background: var(--cream); }
.geo-map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }

@keyframes geoPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,122,0,0.3); } 50% { box-shadow: 0 0 0 8px rgba(255,122,0,0.1); } }
.geo-map-visual { border-radius: var(--radius-lg); overflow: hidden; }
.geo-photo { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.geo-info { display: flex; flex-direction: column; gap: 16px; }
.geo-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); }
.geo-card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.geo-card-body { display: flex; flex-direction: column; gap: 4px; }
.geo-card-body strong { font-size: 16px; font-weight: 700; }
.geo-card-body span { font-size: 14px; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s ease; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 600; color: var(--text); }
.faq-q i { font-size: 13px; color: var(--orange); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   RESPONSIVE additions
   ============================================================ */
@media (max-width: 900px) {
  .geo-map-grid { grid-template-columns: 1fr; }
  }
@media (max-width: 600px) {
  .partner-logo img { max-height: 40px; max-width: 110px; }
  .partners-track { gap: 32px; }
    .geo-card { padding: 16px; }
  .faq-q { padding: 16px 20px; font-size: 15px; }
  .faq-a p { padding: 0 20px 16px; font-size: 14px; }
}

/* ============================================================
   SERVICE PAGES V2
   ============================================================ */
.svc-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.svc-about-text .eyebrow { margin-bottom: 12px; }
.svc-about-text h2 { margin-bottom: 20px; }
.svc-about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.svc-checklist { display: flex; flex-direction: column; gap: 12px; }
.svc-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; }
.svc-checklist li i { color: var(--orange); margin-top: 4px; flex-shrink: 0; }

.svc-price-wrap { max-width: 860px; margin: 40px auto 0; }
.svc-price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.svc-price-table thead { background: var(--navy-deep); color: #fff; }
.svc-price-table th { padding: 14px 20px; text-align: left; font-size: 14px; font-weight: 600; }
.svc-price-table td { padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--border); }
.svc-price-table tr:last-child td { border-bottom: none; }
.svc-price-table tr:hover td { background: rgba(255,122,0,0.04); }
.price-val { font-weight: 700; color: var(--orange); white-space: nowrap; }
.svc-price-note { margin-top: 16px; padding: 14px 20px; background: var(--white); border-radius: var(--radius-sm); font-size: 14px; color: var(--text-light); }
.svc-price-note i { color: var(--orange); margin-right: 8px; }

.svc-steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 40px auto 0; position: relative; }
.svc-steps::before { content: ''; position: absolute; left: 23px; top: 24px; bottom: 24px; width: 2px; background: var(--border); }
.svc-step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; position: relative; }
.svc-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; flex-shrink: 0; position: relative; z-index: 1; }
.svc-step-body h3 { font-size: 17px; margin-bottom: 6px; }
.svc-step-body p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

.svc-advs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.svc-adv { text-align: center; padding: 32px 20px; }
.svc-adv-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,122,0,0.15); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 16px; }
.svc-adv h3 { font-size: 16px; color: #fff; margin-bottom: 8px; }
.svc-adv p { font-size: 14px; color: var(--steel-light); line-height: 1.6; }

.svc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.svc-form-info .eyebrow { margin-bottom: 12px; }
.svc-form-info h2 { margin-bottom: 16px; }
.svc-form-info p { color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.svc-form-contacts { display: flex; flex-direction: column; gap: 12px; }
.svc-form-contacts div { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.svc-form-contacts i { color: var(--orange); width: 18px; text-align: center; }
.svc-form-contacts a { color: var(--text); }
.svc-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 14px; }
.svc-form input, .svc-form textarea { padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; background: var(--bg); transition: border-color .2s; }
.svc-form input:focus, .svc-form textarea:focus { border-color: var(--orange); background: var(--white); }
.svc-form small { font-size: 12px; color: var(--text-light); text-align: center; }

@media (max-width: 900px) {
  .svc-about-grid, .svc-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-advs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-advs { grid-template-columns: 1fr; }
  .svc-price-table th, .svc-price-table td { padding: 10px 14px; font-size: 14px; }
  .svc-form { padding: 24px 18px; }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(10,18,30,0.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; padding: 20px; }
.modal-overlay.open { opacity: 1; visibility: visible; transition: opacity .3s ease; }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; max-width: 480px; width: 100%; position: relative; transform: translateY(20px) scale(0.97); transition: transform .3s ease; box-shadow: 0 24px 80px rgba(0,0,0,0.3); }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: var(--text-light); transition: all .2s; }
.modal-close:hover { background: var(--orange); color: #fff; }
.modal-header { margin-bottom: 24px; }
.modal-header h3 { font-size: 22px; margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--text-light); }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form input, .modal-form textarea { padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; background: var(--bg); transition: border-color .2s; }
.modal-form input:focus, .modal-form textarea:focus { border-color: var(--orange); background: var(--white); outline: none; }
.modal-file { cursor: pointer; }
.modal-file input[type="file"] { display: none; }
.modal-file-btn { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border: 1px dashed var(--border); border-radius: var(--radius-sm); font-size: 14px; color: var(--text-light); transition: all .2s; }
.modal-file-btn:hover { border-color: var(--orange); color: var(--orange); }
.modal-file small { display: block; margin-top: 4px; font-size: 12px; color: var(--text-light); opacity: 0.7; }
.modal-file.has-file .modal-file-btn { border-color: var(--orange); color: var(--orange); background: rgba(255,122,0,0.05); }
.modal-privacy { font-size: 12px; color: var(--text-light); text-align: center; }
.modal-status { text-align: center; font-size: 14px; min-height: 20px; }
.modal-status.success { color: #2a9d4a; }
.modal-status.error { color: #d63031; }
.modal-submit.sending { opacity: 0.6; pointer-events: none; }

@media (max-width: 600px) {
  .modal { padding: 28px 20px; }
  .modal-header h3 { font-size: 20px; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.page-hero--compact { padding: 120px 0 40px; min-height: auto; background: var(--navy-deep); }
.page-hero--compact h1 { color: #fff; font-size: 32px; margin-top: 12px; }
.page-hero--compact .breadcrumbs { margin-bottom: 0; }
.legal-page { padding: 48px 0 64px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 20px; margin: 32px 0 12px; color: var(--navy-deep); }
.legal-content h3 { font-size: 17px; margin: 20px 0 8px; }
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--text-light); margin-bottom: 12px; }
.legal-content ul { margin: 8px 0 16px 20px; }
.legal-content li { font-size: 15px; line-height: 1.8; color: var(--text-light); list-style: disc; margin-bottom: 4px; }
.legal-content a { color: var(--orange); text-decoration: underline; }

/* Consent checkbox */
.form-consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--text-light); line-height: 1.5; }
.form-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--orange); cursor: pointer; }
.form-consent a { color: var(--orange); text-decoration: underline; }

/* Footer legal links */
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-legal a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

/* Cookie bar */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; transform: translateY(100%); transition: transform .4s ease; }
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 1240px; margin: 0 auto; padding: 0 16px; }
.cookie-bar p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0; }
.cookie-bar a { color: var(--orange); text-decoration: underline; }
.cookie-accept { white-space: nowrap; padding: 10px 24px; font-size: 13px; }

@media (max-width: 600px) {
  .cookie-bar-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}



/* ============================================================
   TOPBAR - info panel for inner pages
   ============================================================ */
.topbar { background: var(--navy-darker, #152238); border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 4px; min-height: 34px; width: 100%; box-sizing: border-box; }
.topbar-info { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,.55); text-decoration: none; white-space: nowrap; transition: color .2s; }
a.topbar-item:hover { color: rgba(255,255,255,.9); text-decoration: none; }
.topbar-item i { font-size: 11px; color: var(--orange); }
.topbar-promo { color: rgba(255,255,255,.7); font-weight: 600; }
.topbar-promo i { color: var(--orange); }
.topbar-crumbs { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.topbar-crumbs a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.topbar-crumbs a:hover { color: rgba(255,255,255,.8); }
.topbar-crumbs span { color: rgba(255,255,255,.3); }
.topbar-crumbs .current { color: rgba(255,255,255,.65); }
@media (max-width: 768px) { .topbar-crumbs { display: none; } }


/* Breadcrumbs on inner pages - sits on cream strip below topbar */
.page-inner .breadcrumbs { background: var(--cream); border-bottom: 1px solid #eaedf1; }
.page-inner .breadcrumbs .breadcrumbs-wrap { padding-top: 10px; padding-bottom: 10px; }

@media (max-width: 600px) {
  .topbar-info { gap: 10px; }
  .topbar-right { display: none; }
  .topbar-item { font-size: 11px; }
}



.page-inner .breadcrumbs { display: none; }

/* --- Inner-page header fix: solid bg on non-hero pages --- */
.page-inner .header {
  position: relative;
  background: var(--navy-deep);
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.page-inner .header.sticky {
  position: fixed;
  top: 0;
}

/* --- Category top nav --- */
.cat-topnav { background: #fff; border-bottom: 1px solid #e8ecf0; }
.cat-topnav-inner { max-width: 1240px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; }
.cat-topnav-inner::-webkit-scrollbar { display: none; }
.cat-topnav a { padding: 11px 16px; font-size: 13px; font-weight: 600; color: var(--navy); white-space: nowrap; text-decoration: none; border-bottom: 2px solid transparent; transition: all .2s; }
.cat-topnav a:hover { color: var(--orange); }
.cat-topnav a.active { color: var(--orange); border-bottom-color: var(--orange); }


.cat-topnav-more { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.cat-topnav-more-btn { padding: 11px 16px; font-size: 13px; font-weight: 600; color: #1a2d47; background: none; border: none; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.cat-topnav-more-btn i { font-size: 10px; transition: transform .2s; }
.cat-topnav-more.open .cat-topnav-more-btn i { transform: rotate(180deg); }
.cat-topnav-drop { display: none; position: absolute; top: 100%; right: 0; background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.15); min-width: 220px; z-index: 100; padding: 8px 0; }
.cat-topnav-more.open .cat-topnav-drop { display: block; }
.cat-topnav-drop a { display: block; padding: 10px 16px; font-size: 13px; font-weight: 500; color: #1a2d47; white-space: nowrap; text-decoration: none; border-bottom: none; }
.cat-topnav-drop a:hover { background: #f5f7fa; color: #ff7a00; }

/* --- Catalog page layout --- */
.cat-page { padding: 0 0 60px; background: var(--cream); }
.cat-container { max-width: 1240px; margin: 0 auto; padding: 0 16px; width: 100%; box-sizing: border-box; }
.cat-header { margin-bottom: 20px; padding-top: 20px; }
.cat-header h1 { font-size: 28px; font-weight: 800; color: var(--navy); margin: 0 0 4px; }
.cat-header-count { font-size: 14px; color: var(--steel); }
.cat-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }

/* --- Sidebar filters --- */
.cat-filters { background: #fff; border-radius: 14px; padding: 20px; position: sticky; top: 16px; box-shadow: 0 1px 6px rgba(0,0,0,.04); }
.cat-filters-head { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.cat-filters-head .f-reset { font-size: 12px; color: var(--orange); font-weight: 600; cursor: pointer; text-decoration: none; }
.f-group { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f0f2f5; }
.f-group:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.f-label { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; }
.f-label i { font-size: 11px; color: var(--steel); transition: transform .3s; }
.f-label.collapsed i { transform: rotate(-90deg); }
.f-opts { display: flex; flex-direction: column; gap: 6px; }
.f-opts.hidden { display: none; }
.f-opt { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--navy); cursor: pointer; }
.f-opt input[type="checkbox"] { accent-color: var(--orange); width: 15px; height: 15px; }
.f-price { display: flex; gap: 8px; align-items: center; }
.f-price input { width: 100%; padding: 7px 10px; border: 1px solid #dde3ea; border-radius: 8px; font-size: 13px; outline: none; }
.f-price input:focus { border-color: var(--orange); }
.f-btn { width: 100%; padding: 10px; background: var(--orange); color: #fff; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; margin-top: 12px; }
.cat-cta { margin-top: 16px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); border-radius: 14px; padding: 20px 16px; color: #fff; text-align: center; }
.cat-cta h4 { font-size: 15px; margin: 0 0 6px; }
.cat-cta p { font-size: 12px; opacity: .7; margin: 0 0 12px; line-height: 1.4; }
.cat-cta .btn { width: 100%; font-size: 13px; padding: 10px; }

/* --- Subcategory chips --- */
.cat-subs { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-bottom: 20px; }
.cat-sub { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #fff; border: 1px solid #e8ecf0; border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; transition: all .2s; }
.cat-sub:hover { border-color: var(--orange); color: var(--orange); }
.cat-sub i { color: var(--orange); font-size: 14px; }
.cat-sub-cnt { font-size: 11px; color: var(--steel); margin-left: auto; }

/* --- Toolbar --- */
.cat-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding: 9px 14px; background: #fff; border-radius: 10px; flex-wrap: wrap; gap: 10px; }
.cat-toolbar-left { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--steel); }
.cat-toolbar-left select { border: 1px solid #dde3ea; border-radius: 8px; padding: 5px 10px; font-size: 13px; outline: none; cursor: pointer; color: var(--navy); }
.cat-toolbar-right { display: flex; align-items: center; gap: 10px; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid #dde3ea; border-radius: 8px; background: #fff; cursor: pointer; color: var(--steel); transition: all .2s; }
.view-btn.active, .view-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,122,0,.04); }

/* --- Products: GRID --- */
.p-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.p-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid transparent; transition: all .2s; display: flex; flex-direction: column; text-decoration: none; }
.p-card:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.p-card-img { aspect-ratio: 4/3; background: #f5f7fa; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 10px; }
.p-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .3s; }
.p-card:hover .p-card-img img { transform: scale(1.04); }
.p-card-img .noimg { font-size: 42px; color: #d0d6de; }
.p-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.p-card-name { font-size: 14px; font-weight: 700; color: var(--navy); margin: 0 0 4px; line-height: 1.3; }
.p-card-name a { color: inherit; text-decoration: none; }
.p-card-name a:hover { color: var(--orange); }
.p-card-meta { font-size: 12px; color: var(--steel); margin-bottom: 8px; line-height: 1.5; }
.p-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid #f0f2f5; }
.p-card-price { font-size: 18px; font-weight: 800; color: var(--navy); }
.p-card-unit { font-size: 12px; color: var(--steel); }
.p-card-noprice { font-size: 13px; font-weight: 600; color: var(--orange); }
.p-card-btn { padding: 7px 14px; font-size: 12px; border-radius: 8px; background: var(--orange); color: #fff; border: none; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s; }
.p-card-btn:hover { background: #e06800; }

/* --- Products: LIST --- */
.p-list { display: none; }
.p-row { display: grid; grid-template-columns: 170px 1fr auto; gap: 16px; align-items: center; background: #fff; border-radius: 12px; padding: 14px; margin-bottom: 10px; border: 1px solid transparent; transition: all .2s; }
.p-row:hover { border-color: rgba(255,122,0,.15); box-shadow: 0 3px 14px rgba(0,0,0,.05); }
.p-row-img { width: 100%; aspect-ratio: 4/3; border-radius: 8px; background: #f5f7fa; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 6px; }
.p-row-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.p-row-img .noimg { font-size: 32px; color: #d0d6de; }
.p-row-info { flex: 1; }
.p-row-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.p-row-name a { color: inherit; text-decoration: none; }
.p-row-meta { font-size: 12px; color: var(--steel); line-height: 1.6; }
.p-row-right { text-align: right; min-width: 140px; }
.p-row-price { font-size: 20px; font-weight: 800; color: var(--navy); }
.p-row-unit { font-size: 12px; color: var(--steel); margin-bottom: 10px; }
.p-row-noprice { font-size: 13px; font-weight: 600; color: var(--orange); margin-bottom: 10px; }
.p-row-btn { padding: 9px 20px; background: var(--orange); color: #fff; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; }

/* --- Product Detail --- */
.product-detail { background: var(--cream); padding: 0 0 60px; }
.product-detail-wrap { max-width: 1240px; margin: 0 auto; padding: 0 16px; }
.product-top { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 24px; }
.product-gallery { background: #fff; border-radius: 14px; padding: 24px; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.product-gallery img { max-width: 100%; max-height: 400px; object-fit: contain; }
.product-info { padding: 8px 0; }
.product-info-title { font-size: 26px; font-weight: 800; color: var(--navy); margin: 0 0 10px; line-height: 1.3; }
.product-info-gost { font-size: 14px; color: var(--steel); margin: 0 0 16px; }
.product-info-price { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.product-info-price small { font-size: 16px; font-weight: 400; color: var(--steel); }
.product-info-vat { font-size: 13px; color: var(--steel); margin: 0 0 16px; }
.price-request { font-size: 18px; font-weight: 700; color: var(--orange); margin: 0 0 16px; }
.product-info-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.product-info-actions .btn { padding: 12px 24px; font-size: 14px; }
.product-specs { margin-top: 20px; }
.product-specs-title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 9px 0; font-size: 14px; border-bottom: 1px solid #eaedf1; }
.specs-table td:first-child { color: var(--steel); width: 45%; }
.specs-table td:last-child { font-weight: 600; color: var(--navy); }
.product-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.product-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--navy); font-weight: 600; }
.product-trust-item i { color: var(--orange); font-size: 16px; }
.product-tabs { margin-top: 36px; background: #fff; border-radius: 14px; overflow: hidden; }
.product-tabs-nav { display: flex; border-bottom: 1px solid #eaedf1; }
.product-tabs-nav button { padding: 14px 28px; font-size: 14px; font-weight: 600; color: var(--steel); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; transition: all .2s; }
.product-tabs-nav button.active { color: var(--orange); border-bottom-color: var(--orange); }
.product-tab-content { display: none; padding: 24px; font-size: 15px; line-height: 1.7; color: var(--text); }
.product-tab-content.active { display: block; }
.product-cta { margin-top: 28px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); border-radius: 14px; padding: 32px; text-align: center; color: #fff; }
.product-cta h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.product-cta p { font-size: 14px; opacity: .75; margin: 0 0 16px; }

/* --- Catalog responsive (desktop->tablet) --- */
@media (max-width: 960px) {
  .cat-layout { grid-template-columns: 1fr; }
  .cat-filters { position: static; }
  .p-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .p-row { grid-template-columns: 130px 1fr auto; }
  .product-top { grid-template-columns: 1fr; }
  .product-gallery { min-height: 260px; }
}

/* HOMEPAGE CATEGORY GRID */
.cg{display:grid;grid-template-columns:repeat(30,1fr);gap:16px}
.cc{position:relative;border-radius:14px;overflow:hidden;background:#fff;border:1px solid var(--border);transition:all .35s ease;display:flex;flex-direction:column;text-decoration:none;color:inherit;min-height:230px}
.cc:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(26,45,71,.15);border-color:var(--orange)}
.cc::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--orange);transform:scaleX(0);transition:transform .3s;z-index:5}
.cc:hover::before{transform:scaleX(1)}


.cc-img{flex:1;position:relative;background:linear-gradient(135deg,#f0f4f8 0%,var(--cream) 100%);display:flex;align-items:center;justify-content:center;overflow:hidden;min-height:0}
.cc.big .cc-img{min-height:160px}
.cc-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;padding:0;filter:none;transition:transform .4s ease}
.cc:hover .cc-img img{transform:scale(1.08)}
.cc-img .cc-fallback{font-size:56px;color:var(--steel-pale);transition:color .3s}
.cc.big .cc-img .cc-fallback{font-size:72px}
.cc:hover .cc-img .cc-fallback{color:var(--steel)}
.cc-body{padding:16px 18px;background:#fff;position:relative;z-index:2}
.cc.big .cc-body{padding:20px 24px}
.cc-top{display:flex;align-items:center;gap:10px;margin-bottom:6px}
.cc-icon{width:30px;height:30px;border-radius:8px;background:linear-gradient(135deg,var(--navy),#2a4a6b);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cc-icon i{color:#fff;font-size:12px}
.cc.big .cc-icon{width:36px;height:36px;border-radius:10px}
.cc.big .cc-icon i{font-size:14px}
.cc-name{font-size:14px;font-weight:700;color:var(--navy);line-height:1.2}
.cc.big .cc-name{font-size:17px}
.cc-desc{font-size:12px;color:var(--text-light);line-height:1.4;margin-bottom:10px}
.cc-footer{display:flex;align-items:center;justify-content:space-between}
.cc-btn{font-size:12px;font-weight:700;color:var(--orange);display:inline-flex;align-items:center;gap:5px;transition:gap .25s}
.cc:hover .cc-btn{gap:10px}
.cc-badge{display:inline-flex;align-items:center;gap:4px;font-size:11px;font-weight:600;color:var(--text-light);background:#f0f4f8;padding:3px 9px;border-radius:20px}
.cc-badge i{font-size:9px;color:var(--orange)}
/* Category grid: row1=2, row2=3, row3=5 (30-col grid) */
.cc:nth-child(-n+2) { grid-column: span 15; min-height: 300px; }
.cc:nth-child(-n+2) .cc-img { min-height: 180px; }
.cc:nth-child(-n+2) .cc-name { font-size: 17px; }
.cc:nth-child(-n+2) .cc-desc { font-size: 13px; }
.cc:nth-child(-n+2) .cc-icon { width: 36px; height: 36px; border-radius: 10px; }
.cc:nth-child(-n+2) .cc-icon i { font-size: 14px; }
.cc:nth-child(-n+2) .cc-body { padding: 20px 24px; }
.cc:nth-child(n+3):nth-child(-n+5) { grid-column: span 10; min-height: 260px; }
.cc:nth-child(n+3):nth-child(-n+5) .cc-img { min-height: 140px; }
.cc:nth-child(n+6) { grid-column: span 6; min-height: 220px; }
.cc:nth-child(n+6) .cc-img { min-height: 90px; }
.cc:nth-child(n+6) .cc-name { font-size: 13px; }
.cc:nth-child(n+6) .cc-desc { font-size: 11px; }

@media(max-width:1024px){.cg{grid-template-columns:repeat(2,1fr);gap:12px}.cc{grid-column:span 1!important;min-height:200px!important}}
@media(max-width:640px){.cg{grid-template-columns:1fr;gap:10px}.cc{grid-column:span 1!important;min-height:auto!important}.cc .cc-desc{display:block}.cc .cc-badge{display:inline-flex}.cc-body{padding:12px 14px}.cc-icon{width:26px;height:26px;border-radius:6px}.cc-icon i{font-size:10px}.cc-img{flex:none;height:160px;min-height:160px}}

/* RELATED PRODUCTS */
.related{padding:40px 0 60px;background:#f8fafc}
.related-wrap{max-width:1240px;margin:0 auto;padding:0 20px}
.related-head{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:24px}
.related-head h2{font-family:var(--font);font-size:24px;font-weight:700;color:var(--navy);margin:0 0 4px}
.related-head p{font-size:13px;color:var(--text-light);margin:0}
.related-arrows{display:flex;gap:8px}
.ra{width:42px;height:42px;border-radius:10px;border:1px solid var(--border);background:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .25s;color:var(--navy);font-size:14px}
.ra:hover{background:var(--orange);color:#fff;border-color:var(--orange);transform:scale(1.05)}
.related-track{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;padding:4px 0 8px}
.related-track::-webkit-scrollbar{display:none}
.rp-card{position:relative;scroll-snap-align:start;flex:0 0 200px;border-radius:12px;overflow:hidden;background:#fff;border:1px solid var(--border);transition:all .3s;text-decoration:none;color:inherit;display:flex;flex-direction:column}
.rp-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(26,45,71,.13);border-color:var(--orange)}
.rp-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--orange);transform:scaleX(0);transition:transform .3s;z-index:2}
.rp-card:hover::before{transform:scaleX(1)}
.rp-img{height:150px;background:linear-gradient(145deg,#edf1f5 0%,#faf5f0 100%);display:flex;align-items:center;justify-content:center;overflow:hidden}
.rp-img img{width:100%;height:100%;object-fit:contain;padding:14px;filter:drop-shadow(0 4px 12px rgba(26,45,71,.08));transition:transform .35s}
.rp-card:hover .rp-img img{transform:scale(1.07)}
.rp-fb{display:flex;align-items:center;justify-content:center;font-size:36px;color:var(--steel-pale);transition:color .3s}
.rp-card:hover .rp-fb{color:var(--steel)}
.rp-body{padding:12px 14px 14px;flex:1;display:flex;flex-direction:column;justify-content:space-between;gap:6px}
.rp-name{font-size:12.5px;font-weight:600;color:var(--navy);line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.rp-price{font-size:15px;font-weight:700;color:var(--orange)}
.rp-price span{font-size:11px;font-weight:500;color:var(--text-light)}
.rp-req{font-size:11.5px;font-weight:600;color:var(--text-light)}
@media(max-width:768px){.rp-card{flex:0 0 170px}.rp-img{height:120px}.related-head h2{font-size:20px}}
@media(max-width:480px){.rp-card{flex:0 0 150px}.rp-img{height:100px}.rp-name{font-size:11.5px}.rp-body{padding:10px 12px}}

/* CONTACTS PAGE */
.ct-hero{background:var(--navy-deep);padding:140px 20px 70px;text-align:center;position:relative;overflow:hidden}
.ct-hero::before{content:'';position:absolute;top:-50%;right:-20%;width:500px;height:500px;background:radial-gradient(circle,rgba(255,122,0,.08) 0%,transparent 70%);border-radius:50%}
.ct-hero::after{content:'';position:absolute;bottom:-30%;left:-10%;width:400px;height:400px;background:radial-gradient(circle,rgba(255,122,0,.05) 0%,transparent 70%);border-radius:50%}
.ct-hero-inner{position:relative;z-index:1}
.ct-hero-crumbs{font-size:13px;color:rgba(255,255,255,.4);margin-bottom:24px}
.ct-hero-crumbs a{color:rgba(255,255,255,.4);text-decoration:none;transition:color .2s}
.ct-hero-crumbs a:hover{color:var(--orange)}
.ct-hero-crumbs span{margin:0 6px;opacity:.5}
.ct-hero h1{font-family:var(--font);font-size:42px;color:#fff;margin-bottom:10px}
.ct-hero p{font-size:16px;color:rgba(255,255,255,.55);max-width:500px;margin:0 auto}
.ct-block{padding:60px 20px}
.ct-inner{max-width:1240px;margin:0 auto}
.ct-white{background:#fff}
.ct-bg{background:var(--bg)}
.ct-label{font-size:12px;text-transform:uppercase;letter-spacing:1.2px;color:var(--orange);font-weight:700;margin-bottom:10px}
.ct-label i{margin-right:4px}
.ct-call{display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center}
.ct-call-big{font-family:var(--font);font-size:48px;font-weight:700;color:var(--navy);line-height:1.15;margin-bottom:12px}
.ct-call-big a{color:var(--navy);text-decoration:none;transition:color .2s}
.ct-call-big a:hover{color:var(--orange)}
.ct-call-sub{font-size:14px;color:var(--text-light);margin-bottom:20px;line-height:1.6}
.ct-btn-orange{display:inline-flex;align-items:center;gap:10px;padding:16px 32px;border-radius:12px;font-size:15px;font-weight:700;color:#fff;background:var(--orange);transition:all .25s;text-decoration:none}
.ct-btn-orange:hover{background:var(--orange-hover);transform:translateY(-2px);box-shadow:0 8px 30px rgba(255,122,0,.35)}
.ct-call-icon{width:200px;height:200px;border-radius:50%;background:linear-gradient(135deg,var(--cream),#fff);display:flex;align-items:center;justify-content:center;font-size:64px;color:var(--orange);box-shadow:0 10px 40px rgba(255,122,0,.12)}
.ct-email-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.ct-email-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:32px;transition:all .3s}
.ct-email-card:hover{box-shadow:0 10px 35px rgba(26,45,71,.1);border-color:var(--orange);transform:translateY(-3px)}
.ct-email-tag{font-size:12px;text-transform:uppercase;letter-spacing:1px;color:var(--orange);font-weight:700;margin-bottom:10px}
.ct-email-addr{font-size:24px;font-weight:700;color:var(--navy);margin-bottom:6px;word-break:break-all}
.ct-email-addr a{color:var(--navy);text-decoration:none;transition:color .2s}
.ct-email-addr a:hover{color:var(--orange)}
.ct-email-desc{font-size:13px;color:var(--text-light);margin-bottom:16px;line-height:1.5}
.ct-email-btns{display:flex;gap:8px;flex-wrap:wrap}
.ct-ebtn{display:inline-flex;align-items:center;gap:6px;padding:10px 18px;border-radius:8px;font-size:12px;font-weight:600;transition:all .2s;cursor:pointer;border:0;font-family:'Montserrat',sans-serif;text-decoration:none}
.ct-ebtn-fill{background:var(--orange);color:#fff}
.ct-ebtn-fill:hover{background:var(--orange-hover)}
.ct-ebtn-ghost{background:var(--cream);color:var(--orange)}
.ct-ebtn-ghost:hover{background:var(--orange);color:#fff}
.ct-map{display:grid;grid-template-columns:1.4fr 1fr;gap:0;border-radius:16px;overflow:hidden;border:1px solid var(--border);box-shadow:0 4px 20px rgba(26,45,71,.08)}
.ct-map iframe{width:100%;height:420px;border:0;display:block}
.ct-map-info{background:#fff;padding:40px;display:flex;flex-direction:column;justify-content:center}
.ct-map-addr{font-family:var(--font);font-size:22px;color:var(--navy);font-weight:700;margin-bottom:8px;line-height:1.35}
.ct-map-city{font-size:14px;color:var(--text-light);margin-bottom:20px}
.ct-map-routes{display:flex;flex-direction:column;gap:14px}
.ct-route{display:flex;gap:12px;align-items:flex-start}
.ct-route-icon{width:36px;height:36px;border-radius:10px;background:var(--cream);display:flex;align-items:center;justify-content:center;color:var(--orange);font-size:14px;flex-shrink:0}
.ct-route-text{font-size:13px;color:var(--text);line-height:1.5}
.ct-route-text strong{color:var(--navy);font-weight:600}
.ct-map-link{display:inline-flex;align-items:center;gap:6px;margin-top:20px;font-size:13px;font-weight:600;color:var(--orange);text-decoration:none}
.ct-map-link:hover{text-decoration:underline}
.ct-trust{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.ct-trust-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:30px 24px;text-align:center;transition:all .3s}
.ct-trust-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(26,45,71,.1);border-color:var(--orange)}
.ct-trust-num{font-family:var(--font);font-size:36px;font-weight:700;color:var(--orange);margin-bottom:6px}
.ct-trust-text{font-size:13px;color:var(--text-light);line-height:1.5}
.ct-cta{background:var(--navy-deep);padding:70px 20px;position:relative;overflow:hidden}
.ct-cta::before{content:'';position:absolute;top:-40%;right:5%;width:400px;height:400px;background:radial-gradient(circle,rgba(255,122,0,.06) 0%,transparent 70%);border-radius:50%}
.ct-cta-inner{max-width:600px;margin:0 auto;text-align:center;position:relative;z-index:1}
.ct-cta h2{font-family:var(--font);font-size:30px;color:#fff;margin-bottom:8px}
.ct-cta p{color:rgba(255,255,255,.55);font-size:14px;margin-bottom:30px}
.ct-cta-form{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.ct-input{padding:14px 18px;border-radius:10px;border:1.5px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);color:#fff;font-size:14px;font-family:inherit;outline:none;transition:border .2s}
.ct-input::placeholder{color:rgba(255,255,255,.35)}
.ct-input:focus{border-color:var(--orange)}
.ct-full{grid-column:1/-1}
.ct-submit{grid-column:1/-1;padding:16px;border-radius:10px;background:var(--orange);color:#fff;font-size:15px;font-weight:700;border:0;cursor:pointer;transition:all .25s;font-family:inherit}
.ct-submit:hover{background:var(--orange-hover);box-shadow:0 8px 25px rgba(255,122,0,.4)}
.ct-note{grid-column:1/-1;font-size:11px;color:rgba(255,255,255,.3);margin-top:6px}
@media(max-width:1024px){.ct-call{grid-template-columns:1fr;text-align:center}.ct-call-icon{margin:0 auto}.ct-call-big{font-size:34px}.ct-email-grid{grid-template-columns:1fr}.ct-map{grid-template-columns:1fr}.ct-map iframe{height:300px}.ct-trust{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.ct-hero h1{font-size:28px}.ct-call-big{font-size:26px}.ct-call-icon{width:140px;height:140px;font-size:44px}.ct-email-addr{font-size:18px}.ct-trust{grid-template-columns:1fr 1fr}.ct-trust-num{font-size:28px}.ct-cta-form{grid-template-columns:1fr}}

/* PRICE LIST CALCULATOR */
.pl-card{display:grid;grid-template-columns:1fr 1fr;background:var(--white);border-radius:20px;box-shadow:0 8px 40px rgba(26,45,71,.08);overflow:hidden;min-height:420px}
.pl-left{padding:48px 40px;display:flex;flex-direction:column;justify-content:center}
.pl-left .eyebrow{margin-bottom:12px}
.pl-left h2{font-size:28px;font-weight:800;color:var(--navy);line-height:1.25;margin-bottom:8px}
.pl-left>p{font-size:15px;color:var(--text-light);margin-bottom:32px;line-height:1.5}
.pl-selects{display:flex;flex-direction:column;gap:12px;margin-bottom:24px}
.pl-select{position:relative}
.pl-select select{width:100%;padding:13px 40px 13px 44px;border:2px solid var(--steel-pale);border-radius:10px;font-size:14px;color:var(--text);background:var(--white);appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8a9e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;cursor:pointer;transition:border-color .2s}
.pl-select select:focus{outline:none;border-color:var(--orange)}
.pl-select select:disabled{background:#f5f5f5;color:#aaa;cursor:not-allowed}
.pl-select>i{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:var(--text-light);font-size:14px;pointer-events:none}
.pl-info{display:flex;align-items:center;gap:12px;margin-bottom:24px;padding:14px 16px;background:var(--cream);border-radius:10px}
.pl-num{font-size:28px;font-weight:800;color:var(--navy)}
.pl-lbl{font-size:13px;color:var(--text-light);line-height:1.3}
.pl-actions{display:flex;gap:10px;flex-wrap:wrap}
.pl-actions .btn{padding:13px 24px;border:none;border-radius:10px;font-size:14px;font-weight:600;cursor:pointer;transition:all .2s;display:inline-flex;align-items:center;gap:8px;text-decoration:none}
.pl-actions .btn-orange{background:var(--orange);color:var(--white)}
.pl-actions .btn-orange:hover{background:#d06a25;transform:translateY(-1px);box-shadow:0 4px 16px rgba(232,121,47,.3)}
.pl-actions .btn-orange:disabled{background:var(--steel-pale);color:var(--text-light);cursor:not-allowed;transform:none;box-shadow:none}
.pl-actions .btn-ghost{background:transparent;color:var(--navy);border:2px solid var(--steel-pale)}
.pl-actions .btn-ghost:hover{border-color:var(--navy)}
.pl-right{background:var(--navy);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:48px 32px;position:relative;overflow:hidden}
.pl-right::before{content:'';position:absolute;width:300px;height:300px;border:1px solid rgba(255,255,255,.05);border-radius:50%;top:-80px;right:-80px}
.pl-right::after{content:'';position:absolute;width:200px;height:200px;border:1px solid rgba(255,255,255,.04);border-radius:50%;bottom:-60px;left:-40px}
.pl-visual{text-align:center;position:relative;z-index:1}
.pl-icon{width:80px;height:80px;background:rgba(232,121,47,.15);border-radius:20px;display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.pl-icon i{font-size:32px;color:var(--orange)}
.pl-features{list-style:none;text-align:left;max-width:220px;padding:0;margin:0}
.pl-features li{color:rgba(255,255,255,.8);font-size:13px;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.06);display:flex;align-items:center;gap:10px}
.pl-features li:last-child{border:none}
.pl-features li i{color:var(--orange);font-size:11px;flex-shrink:0}
@media(max-width:768px){.pl-card{grid-template-columns:1fr}.pl-left{padding:28px 20px}.pl-right{padding:28px;min-height:auto}}

/* Dynamic filter scroll */
.f-scroll{max-height:200px;overflow-y:auto}
.f-scroll::-webkit-scrollbar{width:4px}
.f-scroll::-webkit-scrollbar-thumb{background:var(--steel-pale);border-radius:2px}
.f-opt .cnt{font-size:11px;color:var(--text-light)}
@media (max-width: 768px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; box-sizing: border-box; }
}
/* === DELIVERY PAGE MOBILE === */
@media (max-width: 768px) {
  /* Hero */
  .page-hero-grid { gap: 24px; }
  .page-hero-content h1 { font-size: 22px; }
  .page-hero-desc { font-size: 14px; }
  .page-hero-actions { flex-direction: column; align-items: center; }
  .page-hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .page-hero-card { padding: 14px 16px; gap: 12px; }
  .page-hero-card i { font-size: 20px; }
  .page-hero-card div strong { font-size: 14px; }
  .page-hero-card div span { font-size: 12px; }

  /* Section heads */
  .info-section-head h2 { font-size: 20px; }
  .info-section-head p { font-size: 13px; }

  /* Info cards */
  .info-card { padding: 20px 16px; }
  .info-card-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .info-card-icon i { font-size: 18px; }
  .info-card h3 { font-size: 15px; margin-bottom: 6px; }
  .info-card p { font-size: 13px; }
  .info-card ul li { font-size: 12px; }

  /* Table: horizontal scroll wrapper via overflow */
  .info-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .info-table thead { display: table; width: 100%; }
  .info-table tbody { display: table; width: 100%; }
  .info-table tr { display: table-row; }
  .info-table th, .info-table td { display: table-cell; }
  .info-table th { padding: 10px 12px; font-size: 11px; }
  .info-table td { padding: 10px 12px; font-size: 12px; white-space: normal; min-width: 100px; }
  .info-table td:first-child { min-width: 140px; white-space: nowrap; }

  /* Highlight */
  .info-highlight { padding: 18px 16px; gap: 14px; flex-direction: column; text-align: center; }
  .info-highlight i { font-size: 26px; }
  .info-highlight strong { font-size: 15px; }
  .info-highlight span { font-size: 12px; }

  /* Pay cards */
  .pay-card { padding: 24px 18px; }
  .pay-card-icon { width: 56px; height: 56px; margin-bottom: 14px; font-size: 22px; }
  .pay-card h3 { font-size: 16px; }
  .pay-card p { font-size: 13px; }

  /* CTA */
  .cta-grid { gap: 24px; }
  .cta-content h2 { font-size: 20px; }
  .cta-form { padding: 24px 18px; }
  .cta-form h3 { font-size: 18px; }
  .cta-info a { font-size: 13px; }

  /* Info section spacing */
  .info-section { padding: 32px 0; }
}

/* Catalog pagination */
.pn-wrap{display:flex;justify-content:center;padding:30px 0 8px;clear:both}
.pn{display:flex;align-items:center;justify-content:center;gap:6px;flex-wrap:wrap;max-width:100%}
.pn-link,.pn-skip{display:inline-flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 11px;border-radius:8px;font-size:14px;font-weight:700;line-height:1;text-decoration:none;box-sizing:border-box}
.pn-link{background:#fff;border:1px solid rgba(43,67,104,.14);color:var(--navy);box-shadow:0 2px 8px rgba(43,67,104,.05);transition:background .18s,border-color .18s,color .18s,box-shadow .18s}
.pn-link:hover{background:var(--orange);border-color:var(--orange);color:#fff;text-decoration:none;box-shadow:0 6px 16px rgba(232,121,47,.22)}
.pn-link.active{background:var(--navy);border-color:var(--navy);color:#fff;pointer-events:none;box-shadow:none}
.pn-link.prev,.pn-link.next{font-size:20px;padding-bottom:2px}
.pn-skip{min-width:26px;padding:0 4px;color:var(--steel);box-shadow:none}
@media(max-width:600px){
  .pn-wrap{padding:22px 0 4px}
  .pn{gap:5px}
  .pn-link,.pn-skip{min-width:34px;height:34px;padding:0 8px;border-radius:7px;font-size:12px}
  .pn-link.prev,.pn-link.next{min-width:38px;font-size:18px}
  .pn-link.first,.pn-link.last{display:none}
  .pn-skip{min-width:18px;padding:0 2px}
}

/* Company-only footer while the catalogue is private. */
@media (min-width: 1025px) { .footer-grid--company { grid-template-columns: 1.5fr 1fr 1fr; } }

/* Keep the whole request form reachable on short/mobile viewports. */
.modal { max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow-y: auto; overscroll-behavior: contain; }
.modal-overlay { padding: 16px; }
.ct-cta-form .form-consent { grid-column: 1 / -1; text-align: left; }
.ct-cta-form .form-consent input { flex: 0 0 auto; }
.ct-cta-form .modal-status { grid-column: 1 / -1; }
.ct-cta-form .modal-status.success { color: #b5efbe; }
.ct-cta-form .modal-status.error { color: #ffc4c4; }
