<style>

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== BASE ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  transition: all 0.3s ease;
}

.header.scrolled .nav {
  padding: 10px 20px;
}

/* ===== LOGO ===== */
.logo img {
  height: 40px;
  transition: 0.3s;
}

.header.scrolled .logo img {
  height: 32px;
}

/* ===== MENU WRAP ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ===== MENU ===== */
.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #dc2626;
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #dc2626;
}

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

.menu a.active {
  color: #dc2626;
}

.menu a.active::after {
  width: 100%;
}

/* ===== CTA ULTRA ===== */
.cta-ultra {
  position: relative;
  padding: 120px 20px;

  background:
    linear-gradient(rgba(5,10,25,0.45), rgba(5,10,25,0.8)),
    url('../img/02-5.webp') center/cover no-repeat;
}

.cta-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;

  border-radius: 28px;
  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(220,38,38,0.95), rgba(153,27,27,0.95)),
    url('../img/hero.webp') center/cover;

  position: relative;

  box-shadow: 
    0 40px 100px rgba(220,38,38,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.1);
}

/* overlay glow */
.cta-inner::before {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 60%);
}

/* content */
.cta-content {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: auto;
}

/* buttons */
.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* primary */
.cta-primary {
  padding: 14px 28px;
  background: white;
  color: #dc2626;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* secondary */
.cta-secondary {
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  border-radius: 10px;
  text-decoration: none;

  transition: 0.3s;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* MOBILE */
@media(max-width:768px){
  .cta-content {
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 22px;

  font-size: 14px;
  font-weight: 600;

  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  text-decoration: none;

  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(220,38,38,0.35);

  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220,38,38,0.5);
}

/* ===== HERO ===== */
.hero {
  position: relative;

  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  background:
    linear-gradient(rgba(5,10,25,0.45), rgba(5,10,25,0.65)),
    url('../img/hero.webp') center top/cover no-repeat;

  padding: 0 20px;
}

.hero h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  color: #e2e8f0;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(220,38,38,0.4);
  transition: 0.3s;
}

.hero_contact {
  position: relative;

  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  background:
    linear-gradient(rgba(5,10,25,0.45), rgba(5,10,25,0.65)),
    url('../img/hero_kapcsolat.webp') center top/cover no-repeat;

  padding: 0 20px;
}

.hero_ref {
  position: relative;

  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  background:
    linear-gradient(rgba(5,10,25,0.45), rgba(5,10,25,0.65)),
    url('../img/hero_ref.webp') center top/cover no-repeat;

  padding: 0 20px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220,38,38,0.6);
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 40px;
}

h2 {
  margin-bottom: 30px;
  font-size: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARDS */
.card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border-color: #dc2626;
}

.card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  transition: 0.4s;
}

.card-content {
  padding: 24px;
}

/* HOVER */
.card:hover .card-img {
  transform: scale(1.05);
}

/* TRUST */
.trust {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: white;

  background:
    linear-gradient(rgba(5,10,25,0.75), rgba(5,10,25,0.85)),
    url('../img/sprinklers-mid-page.webp') center/cover no-repeat;
}

.trust-intro {
  max-width: 700px;
  margin: 10px auto 40px;
  color: #64748b;
  line-height: 1.6;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.trust-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);

  transition: 0.3s;
}

/* ICON */
.trust-card i {
  display: block;
  margin-bottom: 10px;
  color: #dc2626;
}

/* TEXT */
.trust-card h4 {
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: #64748b;
}

/* HOVER */
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: #dc2626;
}

/* MOBILE */
@media(max-width:768px){
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  border-radius: 20px;
  color: white;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
}

/* ICON */
.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(220,38,38,0.1);
  border-radius: 12px;

  transition: all 0.3s ease;
}

.icon svg {
  width: 24px;
  height: 24px;
  color: #dc2626;
  transition: all 0.3s ease;
}

/* HOVER ANIM */
.card:hover .icon {
  transform: translateY(-5px) scale(1.1);
  background: rgba(220,38,38,0.2);
}

.card:hover .icon svg {
  transform: rotate(8deg) scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: #C4C4C4;
  color: #cbd5e1;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer p, .footer a {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}

.footer a:hover {
  color: #dc2626;
}

.footer img {
  opacity: 0.9;
}

/* alsó sor */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

h2 {
  text-align: center;
}

/* ===== SERVICES PRO ===== */
.services-pro {
  padding: 100px 20px;
  text-align: center;
}

.section-sub {
  color: #64748b;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* MAIN */
.service-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}

.service-main-text {
  padding: 40px;
  text-align: left;
}

.service-main-text h3 {
  font-size: 28px;
}

.service-main-text p {
  color: #64748b;
  margin-top: 10px;
}

/* IMAGE */
.service-main-img {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

/* TAGS */
.tags {
  margin-top: 20px;
}

.tags span {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 13px;
}

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

.service-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: left;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #dc2626;
}

.service-card h4 {
  margin-bottom: 10px;
}

.service-card p {
  color: #64748b;
}

/* MOBILE */
@media(max-width:768px){
  .service-main {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ULTRA SERVICES ===== */
.services-ultra {
  padding: 20px 20px 40px;
  padding-bottom: 10px;
  text-align: center;
}

.section-sub {
  color: #64748b;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 18px;
}

/* MAIN CARD */
.ultra-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px);

  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  margin-bottom: 20px;

  transition: 0.4s;
}

.ultra-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

/* TEXT */
.ultra-text {
  padding: 50px;
  text-align: left;
}

.ultra-text h3 {
  font-size: 30px;
  margin: 10px 0;
}

.ultra-text p {
  color: #64748b;
  font-size: 16px;
}

/* BADGE */
.badge {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* TAGS */
.ultra-tags {
  margin-top: 20px;
}

.ultra-tags span {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 12px;
  border-radius: 20px;
  background: #f1f5f9;
  font-size: 13px;
}

/* IMAGE */
.ultra-image {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

/* GRID */
.ultra-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.ultra-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);

  padding: 30px;
  border-radius: 20px;

  border: 1px solid rgba(0,0,0,0.05);

  text-align: left;

  transition: 0.3s;
}

.ultra-card:hover {
  transform: translateY(-5px);
  border-color: #dc2626;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.ultra-card i {
  color: #dc2626;
  margin-bottom: 10px;
}

.ultra-card h4 {
  margin-bottom: 10px;
}

.ultra-card p {
  color: #64748b;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px){
  .ultra-main {
    grid-template-columns: 1fr;
  }

  .ultra-grid {
    grid-template-columns: 1fr;
  }
}
.about-pro {
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
}

.about-mini {
  margin-top: -60px;
}

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

.about-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #9ca3af;
  margin-bottom: 25px;
}

.about-image {
  height: 260px;
  border-radius: 16px;
  background-size: cover;
  margin-bottom: 20px;
}

.about-left p,
.about-right p {
  color: #475569;
}

/* RIGHT SIDE */

.quote {
  font-style: italic;
  color: #9ca3af;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #dc2626;
}

.about-video {
  height: 260px;
  border-radius: 16px;
  background-size: cover;
  position: relative;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #dc2626;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-left,
.about-right {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.about-pro h2 {
  color: #0f172a;
}

.subtitle {
  color: #94a3b8;
}

.about-list li {
  color: #334155;
}

.quote {
  color: #cbd5e1;
}

.about-left,
.about-right {
  background: #ffffff !important;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.about-pro h2 {
  color: #0f172a !important;
}

.about-left p,
.about-right p {
  color: #475569 !important;
}

.about-list li {
  color: #334155 !important;
}

.quote {
  color: #64748b !important;
}
.about-mini {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* KÁRTYA */
.about-box {
  max-width: 800px;
  margin: auto;

  background: white;
  padding: 50px;
  border-radius: 24px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.04);

  text-align: center;

  transition: 0.3s;
}

/* HOVER */
.about-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.12),
    0 0 0 1px rgba(220,38,38,0.2);
}

/* SZÖVEG */
.about-box p {
  color: #475569;
  line-height: 1.7;
  margin-top: 15px;
}

/* CÍM */
.about-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* PIROS KIEMELÉS */
.about-highlight {
  margin-top: 30px;
  padding: 15px 20px;

  background: rgba(220,38,38,0.08);
  color: #dc2626;

  border-radius: 12px;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-box {
    padding: 30px 20px;
  }
}
/* SECTION */
.about-mini {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* CARD */
.about-box {
  max-width: 750px;
  margin: auto;

  background: white;
  padding: 35px;
  border-radius: 24px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.04);

  text-align: center;
  transition: 0.3s;
}

.about-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.12),
    0 0 0 1px rgba(220,38,38,0.2);
}

/* BADGE */
.about-badge {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.about-box p {
  color: #475569;
  line-height: 1.7;
  margin-top: 10px;
}

/* TITLE */
.about-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* HIGHLIGHT */
.about-highlight {
  margin-top: 30px;
  padding: 15px 20px;

  background: rgba(220,38,38,0.08);
  color: #dc2626;

  border-radius: 12px;
  font-weight: 600;
}

/* STATS */
.about-stats {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 120px;
}

.stat h3 {
  color: #dc2626;
  font-size: 28px;
}

.stat p {
  font-size: 14px;
  color: #64748b;
}

/* MOBILE */
@media(max-width:768px){
  .about-box {
    padding: 30px 20px;
  }

  .about-stats {
    flex-direction: column;
  }
}

.about-video {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play gomb */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70px;
  height: 70px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  z-index: 2;
  transition: 0.3s;
}

.play-btn:hover {
  transform: translate(-50%,-50%) scale(1.1);
}

/* overlay */
.about-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.services-showcase {
  padding: 80px 20px;
  text-align: center;
}

/* cím */
.showcase-title {
  font-size: 32px;
  max-width: 900px;
  margin: 10px auto 50px;
}

/* grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* card */
.showcase-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  transition: 0.3s;
  text-align: center;

  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* kép */
.showcase-img {
  height: 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}

/* szöveg */
.showcase-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.showcase-card p {
  color: #64748b;
  font-size: 14px;
}

/* responsive */
@media(max-width:900px){
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px){
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.services-intro p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(220,38,38,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -20px auto 10px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  color: #dc2626;
}

.services-showcase {
  position: relative;
  padding-top: 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.services-showcase::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,0.12), transparent);
  top: -150px;
  left: -150px;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.services-showcase .container {
  position: relative;
  z-index: 2;
}

.showcase-section {
  padding-bottom: 20px;
}

.stats {
  margin-top: -40px;
}

.divider {
  width: 80px;
  height: 3px;
  background: #dc2626;
  margin: 20px auto 30px;
  border-radius: 2px;
}

.showcase-card {
  transition: all 0.35s ease;
}

.showcase-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  z-index: 9999;
  font-size: 14px;
}

.cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content span {
  opacity: 0.9;
}

.cookie-content button {
  background: #e30613; /* piros */
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.cookie-content button:hover {
  background: #b0050f; /* sötétebb piros hover */
}

/* ===== GDPR CLASSIC STYLE ===== */

body {
  background: #f6f7f9;
}

.seo-text {
  background: transparent;
  padding: 60px 0;
}

.seo-text .container {
  background: transparent;
}

/* cím */
.seo-text h1 {
  font-weight: 500;
  margin-bottom: 10px;
}

.seo-text p {
  line-height: 1.55;
  margin-bottom: 12px;
}

.seo-text ul {
  margin-bottom: 10px;
}

.seo-text li {
  margin-bottom: 4px;
}

/* címek közelebb */
.seo-text h2 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.seo-text h3 {
  margin-top: 12px;
  margin-bottom: 8px;
}

/* doboz */
.company-box {
  background: #ffffff;
  border: 1px solid #e3e5e8;
  border-radius: 6px;
  padding: 20px;
}

/* elválasztó */
.seo-text hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 40px 0;
}

/* táblázat */
.seo-text table {
  width: 100%;
  font-size: 14px;
}

.seo-text thead {
  background: #f3f4f6;
}

.seo-text th {
  font-weight: 600;
  color: #333;
}

.seo-text td {
  color: #444;
}

/* lista */
.seo-text ul {
  padding-left: 18px;
}

.seo-text li {
  margin-bottom: 5px;
}

/* ===== ULTRA BOX ===== */
.ultra-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

.ultra-left {
  padding: 40px;
}

.ultra-right {
  background-size: cover;
  background-position: center;
  min-height: 250px;
}

/* TAGS */
.ultra-tags span {
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 13px;
}

/* GRID */
.ultra-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.ultra-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
}

.ultra-card i {
  color: #dc2626;
  margin-bottom: 10px;
}

.ultra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* PROCESS */
.process {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 40px;
}

.step {
  text-align: center;
}

.step span {
  display: block;
  font-size: 28px;
  color: #dc2626;
  font-weight: 700;
  margin-bottom: 10px;
}

/* MOBILE */
@media(max-width:900px){
  .ultra-box {
    grid-template-columns: 1fr;
  }

  .ultra-grid,
  .process {
    grid-template-columns: 1fr;
  }
}

/* ===== LUXURY UPGRADE ===== */

/* MAIN CARD */
.ultra-box.luxury {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);

  border-radius: 28px;
  overflow: hidden;

  box-shadow:
    0 40px 100px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,255,255,0.4);

  transition: all 0.4s ease;
}

.ultra-box.luxury:hover {
  transform: translateY(-6px);
  box-shadow:
    0 60px 140px rgba(0,0,0,0.18),
    0 0 0 1px rgba(220,38,38,0.2);
}

/* LEFT TEXT */
.ultra-left {
  padding: 50px;
}

.ultra-left h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.ultra-left p {
  color: #475569;
  line-height: 1.6;
}

/* IMAGE SIDE */
.ultra-right {
  position: relative;
}

.ultra-right::after {
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.35),
    transparent
  );
}

/* BADGE */
.badge {
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* TAGS */
.ultra-tags span {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.15);
  font-weight: 500;
}

/* ===== GRID LUXURY ===== */

.ultra-grid.luxury {
  margin-top: 30px;
}

.ultra-card.luxury {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  border-radius: 20px;
  padding: 30px;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 20px 50px rgba(0,0,0,0.06);

  transition: all 0.35s ease;
}

.ultra-card.luxury:hover {
  transform: translateY(-8px) scale(1.02);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.12),
    0 0 0 1px rgba(220,38,38,0.2);
}

/* ICON */
.ultra-card.luxury i {
  display: inline-block;
  margin-bottom: 12px;

  background: rgba(220,38,38,0.1);
  padding: 10px;
  border-radius: 12px;

  transition: 0.3s;
}

.ultra-card.luxury:hover i {
  background: rgba(220,38,38,0.2);
  transform: scale(1.1);
}

/* TEXT */
.ultra-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.ultra-card p {
  font-size: 14px;
  color: #64748b;
}

/* LIST */
.ultra-card ul {
  margin-top: 12px;
  padding-left: 18px;
}

.ultra-card li {
  margin-bottom: 6px;
  font-size: 13px;
  color: #475569;
}

/* ===== BACKGROUND DEPTH ===== */

.seo-text {
  position: relative;
}

.seo-text::before {
  content:"";
  position:absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220,38,38,0.08), transparent);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.seo-text .container {
  position: relative;
  z-index: 2;
}


/* ===== ABOUT FINAL ===== */

.about-intro{
  max-width:800px;
  margin:0 auto 60px;
  text-align:center;
}

.about-lead{
  font-size:20px;
  font-weight:500;
  color:#0f172a;
}

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

.about-highlight{
  margin-top:20px;
  padding:15px;
  background:rgba(220,38,38,0.08);
  color:#dc2626;
  border-radius:10px;
  font-weight:600;
}

.about-grid-pro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:20px;
}

.about-list-box{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.about-list-box div{
  background:white;
  padding:12px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.about-strong{
  margin-top:20px;
  font-weight:600;
}

.about-list-pro{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:20px;
}

.about-list-pro div{
  background:white;
  padding:12px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.about-checks{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  font-weight:500;
}

.about-values{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:40px;
}

.about-final{
  font-size:18px;
  color:#334155;
}

.about-final-strong{
  font-size:20px;
  font-weight:700;
  color:#dc2626;
}

/* responsive */
@media(max-width:900px){
  .about-grid-pro,
  .about-list-pro,
  .about-values{
    grid-template-columns:1fr;
  }
}

/* ================================= */
/* CLEAN ABOUT (EGYSÉGES, PRO VERZIÓ) */
/* ================================= */

.about-dark {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: white;
  padding: 100px 20px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

/* glow effect */
.about-dark::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,38,38,0.25), transparent);
  top: -200px;
  right: -200px;
}

.about-dark .value-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: white;
}

.about-dark .value-card p {
  color: rgba(255,255,255,0.7);
}
/* spacing fix */
.about-section {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

/* HERO */
.about-ultra-2 .about-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-ultra-2 .about-hero img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

/* CARDS */
.about-ultra-2 .about-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin: 60px 0;
}

.about-ultra-2 .card-3d {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.about-ultra-2 .card-3d:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.about-ultra-2 .card-3d i {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  color: #dc2626;
}

/* GRID */
.about-ultra-2 .about-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* HIGHLIGHT */
.about-ultra-2 .highlight-box {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: white;
  padding: 25px;
  border-radius: 16px;
}

/* GLASS BOX */
.about-ultra-2 .glass-box {
  background: rgba(255,255,255,0.7);
  padding: 20px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* SERVICES */
.about-ultra-2 .about-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.about-ultra-2 .about-services-grid div {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-weight: 500;
}

.about-ultra-2 .about-services-grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  border-color: #dc2626;
}

/* ICON FIX */
.about-ultra-2 i {
  background: rgba(220,38,38,0.1);
  padding: 6px;
  border-radius: 8px;
}

/* VALUES */
.about-values {
  margin-top: 60px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card h3 {
  font-size: 36px;
  color: #dc2626;
}

/* DEPTH BACKGROUND */
.about-ultra {
  position: relative;
}

.about-ultra::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220,38,38,0.08), transparent);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.about-ultra .container {
  position: relative;
  z-index: 2;
}

/* MOBILE */
@media(max-width:768px){
  .about-ultra-2 .about-hero,
  .about-ultra-2 .about-grid-2,
  .about-ultra-2 .about-cards,
  .about-ultra-2 .about-services-grid {
    grid-template-columns: 1fr;
  }
}

.hero-services {
  background:
    linear-gradient(rgba(5,10,25,0.65), rgba(5,10,25,0.85)),
    url('../img/services_hero.webp') center/cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid #dc2626;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.map-full {
  width: 100%;
  margin-top: 60px;
}

/* fejléc marad középen */

.map-header {
  text-align: center;
  padding: 40px 20px;
}

.map-header p {
  opacity: 0.7;
}

/* maga a térkép */

.map-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== CONTACT PRO ===== */

.contact-pro {
  padding: 80px 8%;
}

.contact-title {
  text-align: center;
  margin-bottom: 50px;
}

/* LAYOUT */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* BAL OLDAL */

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

/* KÁRTYÁK */

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}

.contact-card.big {
  padding: 40px;
}

.contact-card i {
  color: #dc2626;
  margin-bottom: 10px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  opacity: 0.7;
}

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* MAP */

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* MOBILE */

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}
/* ===== CONTACT PREMIUM ===== */

.contact-pro {
  padding: 80px 8%;
}

.contact-title {
  text-align: center;
  margin-bottom: 50px;
}

/* GRID */

.contact-grid-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* GLASS KÁRTYÁK */

.contact-card.glass {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: 0.3s;
}

/* nagy kártya */

.contact-card.big {
  grid-column: span 2;
}

/* ikon */

.contact-card i {
  color: #dc2626;
  margin-bottom: 12px;
}

/* cím */

.contact-card h3 {
  margin-bottom: 10px;
}

/* szöveg */

.contact-card p {
  opacity: 0.7;
  line-height: 1.5;
}

/* hover */

.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* highlight */

.contact-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(220,38,38,0.15),
    rgba(220,38,38,0.05)
  );
  border: 1px solid rgba(220,38,38,0.3);
}

/* MOBILE */

@media (max-width: 768px) {
  .contact-grid-pro {
    grid-template-columns: 1fr;
  }

  .contact-card.big {
    grid-column: span 1;
  }
}

.contact-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list i {
  color: #dc2626;
}

.contact-list a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
}

.contact-tags {
  margin-top: 25px;
}
.showcase-card a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
}

.showcase-card a:hover {
  text-decoration: underline;
}

.references {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.ref-item {
  background: white;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  cursor: pointer;

  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ref-item img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.ref-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.ref-item:hover img {
  filter: none;
  opacity: 1;
}

/* ===== MODAL ===== */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  margin: 10% auto;
  text-align: left;
  position: relative;
}

.modal-content h3 {
  margin-bottom: 15px;
}

.modal-content p {
  color: #475569;
  line-height: 1.6;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 26px;
  cursor: pointer;
}

/* responsive */
@media(max-width:900px){
  .ref-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:500px){
  .ref-grid {
    grid-template-columns: 1fr;
  }
}

.ref-list ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 20px auto;
}

.ref-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
  font-size: 15px;
}

.ref-list li::before {
  content: "✔";
  color: #dc2626;
  margin-right: 10px;
}

.ref-highlight {
  margin: 40px auto;
  padding: 20px;
  background: rgba(220,38,38,0.08);
  color: #dc2626;
  border-radius: 12px;
  font-weight: 600;
  max-width: 700px;
}

.ref-2col {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* cím */
.ref-2col h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* kiemelés */
.ref-highlight {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  color: #dc2626;
  font-weight: 600;
}

/* GRID */
.ref-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* OSZLOP */
.ref-col {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.ref-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

/* cím */
.ref-col h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

/* lista */
.ref-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ref-col li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
  font-size: 15px;
}

/* pipa */
.ref-col li::before {
  content: "✔";
  color: #dc2626;
  margin-right: 10px;
}

/* MOBILE */
@media(max-width: 900px){
  .ref-grid-2 {
    grid-template-columns: 1fr;
  }
}
</style>