/* ==========================================================================
   COMPUTER-S KFT. - IPARI ELEKTRONIKA SZERVIZ
   TITANIUM ENGINEERING STÍLUSLAP (v2)
   ========================================================================== */

:root {
  --bg-obsidian: #070a10;
  --bg-titanium: #0d121c;
  --bg-card: rgba(16, 22, 35, 0.75);
  --bg-card-hover: rgba(22, 31, 48, 0.85);
  --border-hairline: rgba(255, 255, 255, 0.10);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-red: rgba(220, 38, 38, 0.4);
  --border-red-glow: rgba(220, 38, 38, 0.8);
  --primary-red: #dc2626;
  --primary-red-hover: #ef4444;
  --primary-glow: 0 0 25px rgba(220, 38, 38, 0.45);
  --green-status: #10b981;
  --green-glow: 0 0 12px rgba(16, 185, 129, 0.5);
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-obsidian);
  color: var(--text-light);
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-obsidian);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(220, 38, 38, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(37, 99, 235, 0.05) 0%, transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, -1px -1px, -1px -1px;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-dim);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid var(--border-red);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.15);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #a7f3d0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-status);
  box-shadow: var(--green-glow);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--text-white);
  border-color: var(--primary-red);
  box-shadow: var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-red-hover);
  border-color: var(--primary-red-hover);
  box-shadow: 0 0 35px rgba(220, 38, 38, 0.65);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border-color: var(--border-hairline);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--primary-red);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-hairline);
  z-index: 1000;
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  white-space: nowrap;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.mobile-only-cta {
  display: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  box-shadow: 0 0 8px var(--primary-red);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta-short {
  display: none;
}

.phone-quicklink {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-hairline);
}

.phone-quicklink i {
  color: var(--primary-red);
}

.phone-quicklink:hover {
  border-color: var(--primary-red);
  color: var(--text-white);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero-section {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background-image: 
    linear-gradient(180deg, rgba(7, 10, 16, 0.60) 0%, rgba(7, 10, 16, 0.76) 100%),
    radial-gradient(circle at 50% 25%, rgba(220, 38, 38, 0.12) 0%, transparent 65%),
    url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-hairline);
}

.hero-content.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  gap: 26px;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-title span {
  color: var(--primary-red);
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.hero-desc-box {
  background: rgba(13, 18, 28, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-hairline);
  padding: 24px 36px;
  border-radius: var(--radius-md);
  max-width: 820px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-desc-box .hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 880px;
  margin-top: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  backdrop-filter: blur(12px);
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--border-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  background: var(--bg-card);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.visual-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visual-frame:hover img {
  transform: scale(1.03);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.1) 0%, rgba(7, 10, 16, 0.85) 100%);
  pointer-events: none;
}

.visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-hairline);
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-badge-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.visual-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.1rem;
}

.visual-badge-text h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.visual-badge-text p {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.brands-section {
  padding: 35px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  background: rgba(13, 18, 28, 0.6);
}

.brands-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 36px;
}

.brand-tag {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid transparent;
}

.brand-tag:hover {
  color: var(--text-white);
  border-color: var(--border-hairline);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-header .tech-badge {
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-dim);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.service-card:hover {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 38, 38, 0.15);
}

.service-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-badge-num {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 10, 16, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-hairline);
  color: var(--primary-red);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag-item {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.service-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-card-details {
  background: transparent;
  border: none;
  color: var(--primary-red);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-card-details:hover {
  color: var(--primary-red-hover);
  transform: translateX(4px);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  backdrop-filter: blur(12px);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--transition-normal);
}

.timeline-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(220, 38, 38, 0.3);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  transition: color var(--transition-fast);
}

.timeline-card:hover .step-number {
  color: var(--primary-red);
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.advantage-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  transition: var(--transition-fast);
}

.adv-card:hover {
  border-color: var(--border-red);
  transform: translateX(4px);
}

.adv-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid var(--border-red);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.adv-text h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.adv-text p {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.log-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-normal);
}

.log-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.log-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-hairline);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.log-card:hover .log-icon {
  background: var(--primary-red);
  color: var(--text-white);
  box-shadow: var(--primary-glow);
}

.log-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.log-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.form-section {
  background: rgba(13, 18, 28, 0.7);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.form-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  backdrop-filter: blur(16px);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(7, 10, 16, 0.8);
  border: 1px solid var(--border-hairline);
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.25);
  background: rgba(13, 18, 28, 0.95);
}

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

.urgent-toggle-box {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.urgent-info h4 {
  font-size: 0.9rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.urgent-info h4 i {
  color: var(--primary-red);
}

.urgent-info p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-red);
  box-shadow: 0 0 12px var(--primary-red);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.file-upload-box {
  border: 1px dashed var(--border-hairline);
  background: rgba(7, 10, 16, 0.5);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.file-upload-box:hover {
  border-color: var(--primary-red);
  background: rgba(220, 38, 38, 0.04);
}

.file-upload-box i {
  font-size: 1.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.file-upload-box p {
  font-size: 0.85rem;
}

.form-status {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--green-status);
  color: #a7f3d0;
}

.form-status.error {
  display: block;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid var(--primary-red);
  color: #fca5a5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-normal);
}

.contact-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card ul {
  list-style: none;
}

.contact-card li {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--text-white);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--primary-red);
}

.company-meta-box {
  margin-top: 40px;
  padding: 24px;
  background: rgba(7, 10, 16, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
}

.company-meta-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.site-footer {
  background: var(--bg-obsidian);
  border-top: 1px solid var(--border-hairline);
  padding: 50px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-titanium);
  border: 1px solid var(--border-red);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), var(--primary-glow);
  max-width: 650px;
  width: 100%;
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary-red);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-white);
}

.modal-content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.modal-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Alap konténer margó mobilon */
  .container {
    padding: 0 16px;
  }

  /* 1. RÖGZÍTETT FEJLÉC ÉS AKCIÓGOMB MOBILON */
  .site-header {
    height: 64px;
    background: rgba(7, 10, 16, 0.96);
  }
  .header-inner {
    height: 64px;
  }
  .brand-wrapper {
    gap: 10px;
  }
  .brand-logo {
    height: 34px;
  }
  .brand-subtitle {
    display: none;
  }
  .brand-title {
    font-size: 0.95rem;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .status-indicator {
    display: none;
  }
  .header-actions .phone-quicklink {
    display: none;
  }
  .header-actions .header-cta {
    padding: 7px 11px;
    font-size: 0.70rem;
    letter-spacing: 0px;
    gap: 5px;
  }

  /* Mobil lenyíló menü - 100% tömör háttér, hogy a szövegek soha ne folyjanak egybe a hero-val */
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #080c14; /* 100% tömör, átlátszatlan sötét háttér */
    border-bottom: 2px solid var(--border-red);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 16px 16px 22px;
    gap: 4px;
    transform: translateY(-160%);
    transition: transform var(--transition-normal);
    z-index: 1001;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: 11px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    color: var(--text-light);
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(220, 38, 38, 0.12);
    color: var(--text-white);
  }
  .nav-link::after {
    display: none;
  }
  .mobile-only-cta {
    display: block;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-hairline);
    color: var(--text-white);
    font-size: 1.25rem;
    cursor: pointer;
  }

  /* 2. HERO SZEKCIÓ - Távolság drasztikus csökkentése, hogy elférjen a képernyőn */
  .hero-section {
    padding: 24px 0 36px; /* 110px-ről 24px-re csökkentve a menü alatti távolság */
  }
  .hero-content.text-center {
    gap: 14px; /* 26px helyett 14px */
  }
  .hero-content .tech-badge {
    font-size: 0.63rem;
    padding: 4px 10px;
    letter-spacing: 1px;
    gap: 6px;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }
  .hero-desc-box {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  .hero-desc-box .hero-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
  }
  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
    padding: 11px 20px;
    font-size: 0.78rem;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 6px;
    width: 100%;
  }
  .stat-card {
    padding: 10px 8px;
  }
  .stat-value {
    font-size: 1.35rem;
    margin-bottom: 2px;
  }
  .stat-label {
    font-size: 0.60rem;
    letter-spacing: 1px;
  }

  /* 3. EGYÉB SZEKCIÓK KOMPAKT MOBIL NÉZETE */
  .section {
    padding: 45px 0;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .section-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    border-radius: var(--radius-sm);
  }
  .service-img-wrapper img {
    height: 180px;
  }
  .service-body {
    padding: 18px 14px;
  }
  .service-title {
    font-size: 1.15rem;
  }
  .service-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .service-tags {
    gap: 6px;
    margin-bottom: 16px;
  }
  .tag-item {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-card {
    padding: 18px 14px;
  }
  .step-title {
    font-size: 1.05rem;
  }
  .step-desc {
    font-size: 0.84rem;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .advantage-card {
    padding: 18px 14px;
  }

  .logistics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .logistics-card {
    padding: 18px 14px;
  }

  .form-wrapper {
    padding: 20px 14px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .form-control {
    padding: 11px 13px;
    font-size: 0.90rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-card {
    padding: 20px 16px;
  }
  .company-meta-box {
    margin-top: 24px;
    padding: 16px 12px;
  }
  .company-meta-box p {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .modal-box {
    padding: 20px 16px;
    width: 94%;
    max-height: 85vh;
  }
  .modal-title {
    font-size: 1.25rem;
    padding-right: 28px;
  }
  .modal-content {
    font-size: 0.88rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 0.88rem;
  }
  .header-actions .header-cta-full {
    display: none;
  }
  .header-actions .header-cta-short {
    display: inline;
  }
  .header-actions .header-cta {
    padding: 6px 10px;
    font-size: 0.70rem;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .hero-desc-box .hero-desc {
    font-size: 0.84rem;
  }
}

@media (max-width: 340px) {
  .brand-logo {
    height: 28px;
  }
  .brand-title {
    font-size: 0.80rem;
  }
  .header-actions .header-cta-short {
    display: none;
  }
  .header-actions .header-cta {
    padding: 7px 10px;
  }
}
