:root {
  --bg: #ffffff;
  --surface: #f6f7f8;
  --text: #111111;
  --muted: #555555;
  --line: #e5e7eb;
  --accent: #1f2a37;
  --accent-2: #0f172a;
  
  /* Brand Colors */
  --brand-primary: #2563eb;
  --brand-primary-hover: #1d4ed8;
  --brand-primary-light: #dbeafe;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-hero: linear-gradient(180deg, rgba(245, 247, 250, 0) 0%, rgba(245, 247, 250, 0.6) 100%);
  --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  
  /* Enhanced Gradient Meshes */
  --gradient-mesh-hero: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 40%, transparent 70%),
                        radial-gradient(ellipse 100% 60% at 80% 20%, rgba(29, 78, 216, 0.06) 0%, transparent 50%),
                        linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
  --gradient-mesh-contact: radial-gradient(ellipse 100% 70% at 30% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
                           radial-gradient(ellipse 80% 50% at 70% 100%, rgba(29, 78, 216, 0.08) 0%, transparent 50%),
                           linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  
  /* Shadows - Elevation System */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  
  --radius: 10px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Fine Noise Texture Overlay for Premium Feel */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.015;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
a rect, a line, a polyline, a path, a circle { transition: stroke 0.2s ease; }

.icon { width: 18px; height: 18px; flex-shrink: 0; }
.icon-p { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.icon-c { width: 32px; height: 32px; margin-bottom: 12px; color: var(--accent); display: block; }
.icon-s { width: 16px; height: 16px; flex-shrink: 0; color: var(--muted); vertical-align: middle; margin-right: 4px; }
.btn .icon { margin-right: 8px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  min-width: 220px;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  font-weight: 800;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.1;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 6px;
  border-radius: 8px;
}

.nav a:hover {
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  min-width: 240px;
}

.phone {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 10px 14px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
}

.btn:hover { background: var(--surface); text-decoration: none; }

.btn-primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Sections */
section {
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -0.3px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
  position: relative;
  z-index: 1;
}

/* Hero */
.hero {
  padding: 70px 0 84px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.6px;
  font-weight: 900;
  color: var(--accent-2);
}

.hero p {
  margin: 0 0 24px 0;
  color: var(--muted);
  max-width: 65ch;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.hero-card .meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pill {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px;
}

.pill b { font-size: 14px; }
.pill span { display: block; font-size: 13px; color: var(--muted); line-height: 1.3; margin-top: 2px; }

.photo {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  min-height: 240px;
  display: flex;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-image {
  height: 160px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 18px;
}

.card h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  letter-spacing: -0.1px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Lists */
.list {
  margin: 22px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.list li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.contact-box h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
}

.kv {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.kv div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.kv div svg {
  margin-top: 2px;
}

.kv b { color: var(--text); font-weight: 700; }

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

input, textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

input:focus, textarea:focus {
  outline: 2px solid rgba(31, 42, 55, 0.25);
  border-color: var(--accent);
}

textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
}

.consent input { width: 18px; height: 18px; margin-top: 2px; }

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hint {
  color: var(--muted);
  font-size: 13px;
}

/* Footer */
footer {
  padding: 28px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 920px) {
  .header-cta { min-width: unset; }
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .list { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  section { padding: 64px 0; }
  .hero { padding: 54px 0 64px 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

/* Mobile Toggle - initially hidden */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  border-radius: var(--radius);
}

.mobile-toggle:hover {
  background: var(--surface);
}

.mobile-toggle .icon {
  width: 24px;
  height: 24px;
}

/* Enhanced Mobile Navigation Styles */
@media (max-width: 920px) {
  .mobile-toggle {
    display: flex; /* Show toggle on mobile */
  }

  /* Reset the display:none from previous styles and use generic hiding */
  .nav {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    gap: 10px;
    align-items: stretch;
    z-index: 49;
  }

  .nav.is-open {
    display: flex;
    animation: slideDown 0.2s ease-out;
  }

  .nav a {
    text-align: center;
    padding: 12px;
    border: 1px solid var(--line);
    font-size: 16px;
    font-weight: 500;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO SECTION ENHANCEMENTS
   ============================================ */

/* Hero Enhanced Gradient Mesh Background */
.hero {
  background: var(--gradient-mesh-hero);
  animation: gradientShift 25s ease-in-out infinite;
}

/* Venetian Blinds Geometric Pattern Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(37, 99, 235, 0.015) 10px,
    rgba(37, 99, 235, 0.015) 11px,
    transparent 11px,
    transparent 40px,
    rgba(37, 99, 235, 0.025) 40px,
    rgba(37, 99, 235, 0.025) 42px
  );
  pointer-events: none;
  z-index: 0;
}

/* Animated Gradient Orb */
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50px, 30px) scale(1.1);
    opacity: 0.8;
  }
}

/* Enhanced hero card */
.hero-card {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced pills with icon backgrounds */
.pill {
  transition: all 0.3s ease;
}

.pill:hover {
  background: var(--brand-primary-light);
  border-color: var(--brand-primary);
}

.pill .icon-p {
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pill:hover .icon-p {
  background: var(--brand-primary);
  color: white;
  transform: scale(1.1);
}

/* Modernized Trust Signals (Pills) */
.pill {
  background: transparent;
  border: none;
  padding: 8px 0;
  gap: 16px;
}

.pill .icon-p {
  background: var(--surface);
  padding: 8px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--accent);
}

.pill b {
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
}

.hero-card {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  background: #fff;
}

/* Hero Section Enhancements */
.hero h1 {
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-2);
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 65ch;
}

/* ============================================
   INTERACTIVE ELEMENTS
   ============================================ */

/* Enhanced card interactions */
.card {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-primary-light);
}

.card-image img {
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.08);
}

/* Icon animations */
.icon-c {
  transition: all 0.3s ease;
  color: var(--brand-primary);
}

.card:hover .icon-c {
  transform: translateY(-3px);
  color: var(--brand-primary-hover);
}

/* Link hover effects */
a {
  transition: color 0.2s ease;
}

.nav a {
  position: relative;
  transition: all 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav a:hover::after {
  width: 100%;
}

/* Button hover enhancements */
.btn {
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ============================================
   CTA OPTIMIZATION
   ============================================ */

/* Enhanced primary CTA sizing */
.hero .btn-primary {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.hero .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

/* Secondary CTA styling */
.hero .btn:not(.btn-primary) {
  border: 2px solid var(--line);
  font-weight: 600;
}

.hero .btn:not(.btn-primary):hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* CTA hints */
.hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hint::before {
  content: '→';
  color: var(--brand-primary);
  font-weight: 700;
}

/* ============================================
   TYPOGRAPHY & HIERARCHY
   ============================================ */

/* Enhanced typography scale */
h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.8;
}

/* Better text hierarchy */
.section-lead {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

/* List enhancements */
.list li {
  font-weight: 500;
  transition: all 0.2s ease;
}

.list li:hover {
  transform: translateX(4px);
  border-color: var(--brand-primary);
  background: var(--brand-primary-light);
}

.list li .icon-s {
  color: var(--brand-primary);
  transition: transform 0.2s ease;
}

.list li:hover .icon-s {
  transform: scale(1.2);
}

/* ============================================
   CONTENT PRESENTATION
   ============================================ */

/* Alternating section backgrounds with layered depth */
section:nth-child(even) {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

section:nth-child(odd):not(.hero) {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
}

/* Geometric Pattern Overlay for Sections */
section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 15px,
    rgba(37, 99, 235, 0.008) 15px,
    rgba(37, 99, 235, 0.008) 16px
  );
  pointer-events: none;
  z-index: 0;
}

/* Subtle Shape Overlays */
section#oferta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

section#dlaczego::after {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Enhanced whitespace */
.grid {
  margin-top: 32px;
}

.list {
  margin-top: 28px;
}

/* Diagonal Section Dividers */
section#oferta::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, #f9fafb 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

section#dlaczego::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

section#kontakt::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04) 0%, transparent 100%);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

/* Content max-width optimization */
.section-lead,
.hero p {
  max-width: 65ch;
}

/* ============================================
   CONTACT SECTION ENHANCEMENT
   ============================================ */

/* Enhanced Contact Section Background */
section#kontakt {
  background: var(--gradient-mesh-contact);
  position: relative;
}

/* Geometric pattern for contact section */
section#kontakt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(37, 99, 235, 0.012) 12px,
    rgba(37, 99, 235, 0.012) 13px
  );
  pointer-events: none;
  z-index: 0;
}

/* Contact box enhancements */
.contact-box {
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-box:hover {
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  border-bottom: 2px solid var(--brand-primary);
  padding-bottom: 12px;
  margin-bottom: 16px;
  color: var(--accent-2);
}

/* Company name - prominent display */
.company-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 20px;
  display: block;
}

/* Info items structure */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.info-clickable:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateX(4px);
  cursor: pointer;
}

.info-hours {
  border-left: 3px solid var(--brand-primary);
  padding-left: 12px;
}

/* Icon sizing - larger and more prominent */
.icon-m {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  color: var(--brand-primary);
  margin-top: 2px;
}

.icon-xs {
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
}

/* Contact links styling */
.contact-link {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-link:hover {
  text-decoration: underline;
  color: var(--brand-primary-hover);
}

.kv b {
  color: var(--accent-2);
  font-weight: 700;
}

/* Response badge - value proposition */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* CTA Container */
.cta-container {
  margin-top: 24px;
}

/* Primary CTA Button */
.btn-contact {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  gap: 10px;
}

/* Secondary CTA (phone link) */
.secondary-cta {
  text-align: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.phone-link {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.phone-link:hover {
  text-decoration: underline;
  color: var(--brand-primary-hover);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.feature-card:hover {
  border-color: var(--brand-primary);
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-primary-light) 100%);
}

.feature-card .icon-c {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--brand-primary-light);
  border-radius: 50%;
  color: var(--brand-primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-card:hover .icon-c {
  background: var(--brand-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-2);
  margin: 0;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Enhanced focus indicators */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 4px;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 100;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 0;
}

/* Ensure sufficient contrast */
.muted-text {
  color: #555555;
}

/* Keyboard navigation indicators */
.nav a:focus-visible::after {
  width: 100%;
  background: var(--brand-primary);
}

/* ============================================
   ANIMATIONS & POLISH
   ============================================ */

/* Scroll animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.list li,
.contact-box {
  animation: fadeIn 0.6s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Back to top button (to be added to HTML) */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--brand-primary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

/* Performance optimization */
.card-image,
.photo {
  will-change: transform;
}

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

@media (max-width: 920px) {
  /* Mobile header optimization */
  .header-inner {
    height: 64px;
  }
  
  .brand {
    min-width: auto;
    gap: 8px;
  }
  
  .brand-logo {
    height: 42px;
  }
  
  .brand-sub {
    display: none;
  }
  
  .brand-name {
    font-size: 17px;
  }
  
  .phone {
    display: none;
  }
  
  .header-cta { min-width: unset; }
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .list { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  section { padding: 64px 0; }
  .hero { padding: 54px 0 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  
  /* Enhanced touch targets */
  .btn {
    min-height: 44px;
    padding: 12px 20px;
  }
  
  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile spacing optimization */
  section {
    padding: 56px 0;
  }
  
  .hero {
    padding: 40px 0 56px 0;
  }
  
  h1 {
    font-size: 32px;
    line-height: 1.15;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Mobile card enhancements */
  .card:active {
    transform: scale(0.98);
  }
  
  /* Thumb-friendly CTA positioning */
  .hero-actions {
    position: sticky;
    bottom: 20px;
    z-index: 10;
    padding: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 24px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-card .icon-c {
    width: 44px;
    height: 44px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .company-name {
    font-size: 20px;
  }
  
  .info-item {
    font-size: 15px;
    padding: 10px;
  }
  
  .btn-contact {
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-card {
    animation: none;
  }
  
  .card:hover {
    transform: none;
  }
}

html { scroll-behavior: smooth; }
