/* ============================================
   HORIZON GLOBAL TECHNOLOGY - FINAL FIXED STYLESHEET
   ============================================ */

:root {
  --metallic-blue-dark: #1a3a5c;
  --metallic-blue: #2c5282;
  --metallic-blue-light: #3d7ab8;
  --metallic-blue-bright: #4a90d9;
  --steel-blue: #4682b4;
  
  --metallic-gray-dark: #3d4654;
  --metallic-gray: #5a6a7a;
  --metallic-silver: #8899aa;
  
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-700: #1d4ed8;
  
  --black: #0f172a;
  --black-soft: #1e293b;
  
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

/* FULL PAGE BACKGROUND */
body {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('1.jpg') center center / cover no-repeat fixed;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.75) 0%, 
    rgba(219,234,254,0.70) 30%, 
    rgba(255,255,255,0.72) 60%,
    rgba(200,220,240,0.68) 100%
  );
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================
   HEADER - DIAGONAL SEPARATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 120px;
  display: flex;
  align-items: stretch;
  overflow: visible;
}

.header-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.header-logo-section {
  width: 320px;
  min-width: 280px;
  background: linear-gradient(135deg, 
    var(--white) 0%,
    var(--white) 60%,
    rgba(255,255,255,0.95) 75%,
    rgba(255,255,255,0.85) 85%,
    rgba(219,234,254,0.7) 95%,
    rgba(219,234,254,0.5) 100%
  );
  display: flex;
  align-items: center;
  padding-left: 50px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

.header-main-section {
  flex: 1;
  background: linear-gradient(135deg, 
    var(--metallic-blue-dark) 0%,
    var(--metallic-blue) 25%,
    var(--metallic-blue-light) 50%,
    var(--steel-blue) 70%,
    var(--metallic-blue-bright) 100%
  );
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px;
  margin-left: -100px;
  position: relative;
}

.header-main-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(165deg,
    rgba(255,255,255,0.12) 0%,
    transparent 50%,
    rgba(0,0,0,0.08) 100%
  );
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.logo img {
  height: 90px;
  width: auto;
}

.header-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  letter-spacing: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1001;
}

/* ============================================
   UNIFORM BUTTON STYLE - ONE DESIGN ONLY
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  background: var(--metallic-blue-dark);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: none;
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

.btn:hover {
  background: var(--metallic-blue-dark);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  transform: none;
}

.btn:active {
  background: var(--metallic-gray);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

/* Header button style - matches language selector */
.btn-outline {
  background: var(--metallic-blue-dark);
  border: none;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  min-width: 120px;
  height: 44px;
  backdrop-filter: none;
}

.btn-outline:hover {
  background: var(--metallic-blue-dark);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  transform: none;
}

.btn-outline:active {
  background: var(--metallic-gray);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

/* Primary button variant - matches header button style */
.btn-primary {
  background: var(--metallic-blue-dark);
  border: none;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  backdrop-filter: none;
}

.btn-primary:hover {
  background: var(--metallic-blue-dark);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  transform: none;
}

.btn-primary:active {
  background: var(--metallic-gray);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

/* Secondary button - matches header button style */
.btn-secondary {
  background: var(--metallic-blue-dark);
  border: none;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  backdrop-filter: none;
}

.btn-secondary:hover {
  background: var(--metallic-blue-dark);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  transform: none;
}

.btn-secondary:active {
  background: var(--metallic-gray);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 8px;
}

/* Outline dark button - matches header button style */
.btn-outline-dark {
  background: var(--metallic-blue-dark);
  border: none;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  backdrop-filter: none;
}

.btn-outline-dark:hover {
  background: var(--metallic-blue-dark);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  transform: none;
}

.btn-outline-dark:active {
  background: var(--metallic-gray);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

/* White button - matches header button style */
.btn-white {
  background: var(--metallic-blue-dark);
  border: none;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  backdrop-filter: none;
}

.btn-white:hover {
  background: var(--metallic-blue-dark);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  transform: none;
}

.btn-white:active {
  background: var(--metallic-gray);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

/* ============================================
   LANGUAGE SELECTOR - FIXED Z-INDEX
   ============================================ */
.lang-selector {
  position: relative;
  z-index: 1002;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--metallic-blue-dark);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
  min-width: 120px;
  height: 44px;
}

.lang-btn:hover {
  background: var(--metallic-blue-dark);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

.lang-btn:active,
.lang-selector.open .lang-btn {
  background: var(--metallic-gray);
  box-shadow: 
    0 0 0 3px var(--white),
    0 0 0 4px var(--gray-400);
}

.lang-btn .current-flag {
  font-size: 20px;
}

.lang-btn .current-lang {
  font-weight: 600;
}

.lang-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.lang-selector.open .lang-btn svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  overflow: hidden;
  z-index: 1003;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lang-option:hover {
  background: var(--blue-50);
}

.lang-option.active {
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 600;
}

.lang-option .flag {
  font-size: 20px;
}

/* ============================================
   NAVIGATION BAR - BELOW HEADER
   ============================================ */
.nav-bar {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, 
    var(--metallic-blue) 0%,
    var(--metallic-blue-light) 50%,
    var(--steel-blue) 100%
  );
  padding: 0;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(26, 58, 92, 0.2);
}

.nav-bar ul {
  display: flex;
  gap: 0;
}

.nav-bar li {
  list-style: none;
}

.nav-bar a {
  display: block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  border-right: 1px solid rgba(255,255,255,0.15);
}

.nav-bar li:last-child a {
  border-right: none;
}

.nav-bar a:hover {
  background: rgba(255,255,255,0.15);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 220px 40px 80px;
  overflow: hidden;
  background: transparent;
}

.hero-bg {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--metallic-blue) 0%, var(--metallic-blue-bright) 100%);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 40px;
  background: transparent;
  z-index: 1;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
}

.hero-badge img {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
  z-index: 2;
  background-color: transparent !important;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 28px;
}

.hero h1 .highlight {
  color: var(--metallic-blue);
}

.hero-description {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--metallic-blue);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================
   HERO IMAGE - FLOATING - NO BACKGROUND!!!
   ============================================ */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}

.hero-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  /* Nagyobb méret, hogy a fehér keret kívülre essen */
  width: 100%;
  height: auto;
  position: relative;
}

.hero-image img {
  width: 110%;
  height: 110%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  margin: -5%;
  display: block;
  position: relative;
  /* Körbevágás - kisebb érték, hogy beljebb vágjon és eltávolítsa a fehér keretet */
  clip-path: circle(45% at 50% 50%);
  -webkit-clip-path: circle(45% at 50% 50%);
  /* Mask használata - kisebb kör, hogy eltávolítsa a fehér keretet */
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, transparent 45.1%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, transparent 45.1%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  /* Aspect ratio beállítása négyzetre, hogy tökéletes kör legyen */
  aspect-ratio: 1 / 1;
  /* Filter a fehér pixelek eltávolításához */
  filter: brightness(1.05) contrast(1.1);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(44, 82, 130, 0.15);
  animation: float 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  bottom: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hero-float-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--metallic-blue) 0%, var(--metallic-blue-bright) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hero-float-card:hover {
  box-shadow: 0 20px 40px rgba(44, 82, 130, 0.12);
  transform: translateX(-50%) translateY(12px);
  background: rgba(239, 246, 255, 0.95);
}

.hero-float-card:hover::before {
  transform: scaleX(1);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(20px); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero-float-card:not(:hover) {
  animation: float 3s ease-in-out infinite;
}

.float-card-1 .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--metallic-blue) 0%, var(--metallic-blue-bright) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card-1 .icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.float-card-1 .text strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 2px;
}

.float-card-1 .text span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  background: transparent;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--metallic-blue);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title .highlight {
  color: var(--metallic-blue);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 40px;
  background: rgba(255,255,255,0.3);
}

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

.service-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(44, 82, 130, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--metallic-blue) 0%, var(--metallic-blue-bright) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(44, 82, 130, 0.12);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(44, 82, 130, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--metallic-blue) 0%, var(--metallic-blue-bright) 100%);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--metallic-blue);
  transition: color 0.4s ease;
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   ABOUT - IMAGE JUST FLOATS - NO BACKGROUND!
   ============================================ */
.about {
  padding: 100px 40px;
  background: rgba(44, 82, 130, 0.03);
}

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

.about-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}

.about-image img {
  width: 110%;
  height: 110%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  margin: -5%;
  display: block;
  position: relative;
  /* Körbevágás - kisebb érték */
  clip-path: circle(45% at 50% 50%);
  -webkit-clip-path: circle(45% at 50% 50%);
  /* Mask használata */
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, transparent 45.1%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, transparent 45.1%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: brightness(1.05) contrast(1.1);
}

.about-content {
  padding: 20px 0;
}

.about-content .section-label {
  text-align: left;
  display: block;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-content h2 .highlight {
  color: var(--metallic-blue);
}

.about-content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.7;
}

.features-list {
  margin: 28px 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--gray-700);
}

.features-list .check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: linear-gradient(135deg, var(--metallic-blue) 0%, var(--metallic-blue-bright) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-list .check svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

/* ============================================
   SOLUTIONS - IMAGE JUST FLOATS - NO BACKGROUND!
   ============================================ */
.solutions {
  padding: 100px 40px;
  background: rgba(255,255,255,0.4);
}

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

.solutions-image {
  order: -1;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}

.solutions-image img {
  width: 110%;
  height: 110%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  margin: -5%;
  display: block;
  position: relative;
  /* Körbevágás - kisebb érték */
  clip-path: circle(45% at 50% 50%);
  -webkit-clip-path: circle(45% at 50% 50%);
  /* Mask használata */
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, transparent 45.1%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, transparent 45.1%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: brightness(1.05) contrast(1.1);
}

.solutions-content {
  padding: 20px 0;
}

.solutions-content .section-label {
  text-align: left;
  display: block;
}

.solutions-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.solutions-content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ============================================
   EVOLUTION - IMAGE JUST FLOATS - NO BACKGROUND!
   ============================================ */
.evolution {
  padding: 100px 40px;
  background: linear-gradient(135deg, 
    var(--metallic-blue-dark) 0%,
    var(--metallic-blue) 30%,
    var(--metallic-blue-light) 60%,
    var(--steel-blue) 100%
  );
  position: relative;
}

.evolution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(165deg,
    rgba(255,255,255,0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.evolution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.evolution-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.evolution-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.evolution-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}

.evolution-image img {
  width: 110%;
  height: 110%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  margin: -5%;
  display: block;
  position: relative;
  /* Körbevágás - kisebb érték */
  clip-path: circle(45% at 50% 50%);
  -webkit-clip-path: circle(45% at 50% 50%);
  /* Mask használata */
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, transparent 45.1%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 45%, transparent 45.1%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  filter: brightness(1.05) contrast(1.1);
}

/* ============================================
   CONTACT - IMAGE JUST FLOATS - NO BACKGROUND!
   ============================================ */
.contact-section {
  padding: 100px 40px;
  background: transparent !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: transparent !important;
}

.contact-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}

.contact-image img {
  width: 110%;
  height: 110%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  margin: -5%;
  display: block;
  position: relative;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  clip-path: circle(45% at 50% 50%);
  -webkit-clip-path: circle(45% at 50% 50%);
  mask: radial-gradient(circle at center, black 0%, black 45%, transparent 45.1%);
  -webkit-mask: radial-gradient(circle at center, black 0%, black 45%, transparent 45.1%);
}

.contact-content {
  background: transparent !important;
}

.contact-content .section-label,
.contact-content .section-title {
  text-align: left;
}

.contact-content .section-title {
  margin-bottom: 16px;
}

.contact-content > p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-form {
  margin-bottom: 32px;
}

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

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  outline: none;
  transition: border-color var(--transition-normal);
  resize: vertical;
  background: rgba(255,255,255,0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--metallic-blue);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-600);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--metallic-blue);
}

.contact-item a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.contact-item a:hover {
  color: var(--metallic-blue);
  text-decoration: underline;
}

/* ============================================
   SUBSCRIBE
   ============================================ */
.subscribe {
  padding: 80px 40px;
  background: rgba(255,255,255,0.5);
  text-align: center;
}

.subscribe-container {
  max-width: 600px;
  margin: 0 auto;
}

.subscribe h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.subscribe p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.subscribe-form {
  display: flex;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  padding: 16px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  outline: none;
  background: var(--white);
}

.subscribe-form input:focus {
  border-color: var(--metallic-blue);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, 
    var(--black) 0%,
    var(--black-soft) 50%,
    var(--metallic-gray-dark) 100%
  );
  padding: 70px 40px 35px;
  color: var(--gray-400);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--metallic-blue);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--metallic-blue-bright);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 20px;
}

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

.modal {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  position: relative;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--gray-200);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--gray-600);
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  text-align: center;
}

.modal > p {
  font-size: 15px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  outline: none;
}

.form-group input:focus {
  border-color: var(--metallic-blue);
}

.modal form .btn-primary {
  width: 100%;
  margin-top: 8px;
}

.modal-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-500);
}

.modal-footer a {
  color: var(--metallic-blue);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .header {
    height: 100px;
  }
  
  .nav-bar {
    top: 100px;
  }
  
  .header-title {
    font-size: 26px;
  }
  
  .logo img {
    height: 70px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-bar a {
    padding: 14px 24px;
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .header {
    height: 90px;
  }
  
  .nav-bar {
    top: 90px;
  }
  
  .header-logo-section {
    width: 250px;
    min-width: 200px;
  }
  
  .logo img {
    height: 60px;
  }
  
  .header-title {
    display: none;
  }
  
  .hero {
    padding-top: 200px;
  }
  
  .hero-container,
  .about-grid,
  .solutions-grid,
  .evolution-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solutions-image {
    order: unset;
  }
  
  .hero-image img,
  .about-image img,
  .solutions-image img,
  .evolution-image img,
  .contact-image img {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .nav-bar a {
    padding: 12px 18px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 80px;
  }
  
  .nav-bar {
    top: 80px;
    flex-wrap: wrap;
  }
  
  .nav-bar ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-bar a {
    padding: 10px 14px;
    font-size: 11px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  
  .header-logo-section {
    width: 160px;
    min-width: 140px;
    padding-left: 20px;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  }
  
  .logo img {
    height: 50px;
  }
  
  .header-main-section {
    margin-left: -50px;
    padding-right: 20px;
  }
  
  .hero {
    padding: 180px 24px 60px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .services {
    padding: 70px 24px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .about,
  .solutions,
  .evolution,
  .contact-section {
    padding: 70px 24px;
  }
  
  .subscribe {
    padding: 50px 24px;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .footer {
    padding: 50px 24px 25px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  
  .modal {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-image img,
  .about-image img,
  .solutions-image img,
  .evolution-image img,
  .contact-image img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .header {
    height: 70px;
  }
  
  .nav-bar {
    top: 70px;
  }
  
  .header-logo-section {
    width: 110px;
    min-width: 100px;
    padding-left: 15px;
  }
  
  .logo img {
    height: 45px;
  }
  
  .header-main-section {
    margin-left: -35px;
  }
  
  .lang-btn {
    padding: 8px 12px;
  }
  
  .lang-btn .current-lang {
    display: none;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .header-actions .btn:not(.lang-btn) {
    display: none;
  }
}

@media print {
  .header,
  .nav-bar,
  .modal-overlay,
  .hero-float-card {
    display: none !important;
  }
  
  body::before,
  body::after {
    display: none;
  }
}
