/* =======================================================
   SPEEDWEB - GLOBAL DESIGN TOKENS & RESET
   ======================================================= */
:root {
  --text: #e5e7eb;
  --muted: #a8b2c3;
  --accent: #FFB200;
  --accent-ink: #1a1300;
  --btn-shadow: none;
  --radius: 24px;
  --container: 1220px;
  --mint: #64f25a;
  --mint-shadow: none;
  --mint-ink: #0f1a1a;
  --nav-solid: rgba(26, 32, 44, 0.9);
  --about-bg: #1A202C;
  --about-color: #d9e1ee;
  --accent-orange: #FFB200;
}

::selection {
  color: black;
  background: var(--accent);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h, 72px);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text);
  background: #1A202C;
  padding-top: 0;
}

body.no-scroll {
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
img,
textarea,
input,
button,
select {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

button,
a,
select {
  cursor: pointer;
}

.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: 24px;
}

/* =======================================================
   NAVIGATION (DESKTOP)
   ======================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  padding-block: 24px;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background-color: var(--nav-solid);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  display: block;
  height: 32px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  opacity: .9;
  transition: opacity .2s ease, color .2s ease;
  padding: 6px 0;
}

.menu a:hover {
  opacity: 1;
  color: var(--accent-orange);
}

/* Desktop Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--nav-solid);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  padding-left: 20px;
}

/* Navbar Buttons */
.menu .pill {
  color: #1a202c;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: .01em;
  opacity: 1;
  transition: all 0.2s ease;
  box-shadow: none;
}

.menu .pill:hover {
  filter: brightness(1.15);
  transform: none;
}

.menu .pill:active {
  transform: translateY(2px);
}

.pill-orange {
  background: #FFB200;
}

.pill-blue {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
  transition: all 0.2s ease;
}

.menu .pill-blue:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: rgba(255, 178, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 178, 0, 0.4) !important;
  transform: translateY(-1px);
}

.menu .pill-blue:active {
  transform: translateY(1px) !important;
  box-shadow: none !important;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  position: relative;
  width: 34px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: none;
  cursor: pointer;
  padding: 0;
}

.hamburger .bar {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
}

/* =======================================================
   MOBILE MENU (DRAWER)
   ======================================================= */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 105;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.drawer-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: rgba(21, 26, 36, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 110;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(95, 191, 186, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.drawer-title {
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  position: relative;
  transition: all 0.2s;
}

.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.drawer-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* Mobile Menu Links Container */
.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  /* Eltolja a gombokat az aljára */
  min-height: 0;
  /* Engedi a görgetést flexboxban */
  overflow-y: auto;
  /* Görgethetővé teszi */
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.drawer-menu::-webkit-scrollbar {
  width: 4px;
}

.drawer-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.drawer-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-menu a::after {
  content: "➜";
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.2s ease;
  color: var(--accent);
}

.drawer-menu a:hover {
  color: #fff;
  padding-left: 10px;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.drawer-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Dropdown Button */
.mobile-dropdown-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: inherit;
  transition: all 0.2s ease;
}

.mobile-dropdown-btn .chevron {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.mobile-dropdown-btn[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* Mobile Dropdown Content */
.drawer-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
  margin-left: 10px;
  padding-left: 15px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

/* Amikor kinyílik, fix nagy magasságot kap, így a JS nem tudja elrontani */
.drawer-dropdown.open {
  max-height: 500px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.drawer-dropdown a {
  font-size: 17px;
  padding: 12px 0;
  border-bottom: none;
  color: var(--muted);
}

.drawer-dropdown a:hover {
  color: #fff;
}

/* Mobile Bottom Actions */
.drawer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
  font-size: 18px;
  color: #1a1300;
  background: var(--accent);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255, 178, 0, 0.25);
  transition: all 0.2s ease;
  margin-bottom: 40px;
  margin-top: 20px;
}

.drawer-contact:hover {
  transform: scale(0.96);
  background: #e5a100;
}

.drawer-contacts {
  text-align: center;
  margin-bottom: 20px;
}

.drawer-contacts span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.drawer-contacts a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

/* =======================================================
   HERO SECTION
   ======================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  background-color: #1A202C;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  left: 0;
  transform: translateX(-300px);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  animation: gridScan 2s linear forwards;
  animation-delay: 1.1s;
}

@keyframes gridScan {
  0% {
    transform: translateX(-300px);
  }

  100% {
    transform: translateX(100vw);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  width: 100%;
}

.h1 {
  margin: 0 0 24px;
  font-weight: 800;
  line-height: 1.15;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: #fff;
}

.text-gradient {
  background: none;
  color: var(--mint);
  display: inline-block;
}

.text-gradient-danger {
  background: linear-gradient(90deg, #FC8181 0%, #F56565 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-highlight {
  color: var(--accent);
  background: linear-gradient(90deg, #FFB200 0%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.sub {
  margin: 0 auto 48px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: #cbd5e0;
  max-width: 720px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta {
  position: relative;
  display: inline-block;
  color: #1a1300;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  background: rgba(255, 178, 0, 0.06);
  color: var(--accent);
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
}

.cta:not(.cta--ghost):hover {
  background: var(--accent);
  color: #1a1300;
  box-shadow: 0 0 25px rgba(255, 178, 0, 0.6);
}

.cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.cta--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta--ghost:hover,
.cta--ghost:active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

/* =======================================================
   GENERAL SECTIONS (Problem, Solution, Opportunity, Process)
   ======================================================= */
.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* Problem Section */
.problem {
  padding: 150px 0 220px;
  background: #151a24;
  position: relative;
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.prob-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.prob-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.prob-icon {
  width: 56px;
  height: 56px;
  background: rgba(252, 129, 129, 0.1);
  color: #FC8181;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.prob-icon svg {
  width: 28px;
  height: 28px;
}

.prob-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: end;
}

.prob-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Solution Section */
.solution {
  padding: 150px 0 220px;
  background: #1A202C;
  position: relative;
  overflow: hidden;
}

.text-mint {
  color: var(--mint);
  font-weight: 800;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sol-card {
  padding: 30px 24px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.sol-card:hover {
  border-color: rgba(95, 191, 186, 0.3);
  background: rgba(95, 191, 186, 0.03);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sol-icon {
  width: 64px;
  height: 64px;
  background: rgba(95, 191, 186, 0.1);
  color: var(--mint);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sol-icon svg {
  width: 32px;
  height: 32px;
}

.sol-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
}

.sol-card p {
  font-size: 16px;
  color: #cbd5e0;
  line-height: 1.6;
  margin: 0;
}

/* Opportunity Section */
.opportunity {
  padding: 150px 0 220px;
  background: #151a24;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.opp-box {
  background: linear-gradient(135deg, #1f293a 0%, #161b25 100%);
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.opp-content {
  padding: 60px 0 60px 60px;
  position: relative;
  z-index: 10;
}

.opp-title {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.opp-text {
  font-size: 17px;
  color: #cbd5e0;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 95%;
}

.btn-opp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #1a1300;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 20px rgba(255, 178, 0, 0.2);
}

.btn-opp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 178, 0, 0.35);
}

.opp-visual {
  position: relative;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opp-img {
  width: 120%;
  max-width: none;
  height: auto;
  transform: rotate(-3deg) translateX(10px) scale(1.05);
  border-radius: 12px;
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.opp-box:hover .opp-img {
  transform: rotate(-2deg) translateX(0) scale(1.08);
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--mint);
  opacity: 0.15;
  filter: blur(80px);
  z-index: -1;
}

/* Process Section */
.process {
  padding: 150px 0 220px;
  background: #1A202C;
  overflow: hidden;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, #FFB200 0%, #FFD700 100%);
  z-index: 1;
  opacity: 0.3;
}

.step-item {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 15px;
  text-align: center;
}

.step-num {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  color: #1A202C;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  background: #1A202C;
  padding: 0 10px;
  transition: all 0.3s ease;
}

.step-item:hover .step-num {
  -webkit-text-stroke: 2px var(--accent);
  color: #1A202C;
  transform: translateY(-5px);
  text-shadow: 0 0 20px rgba(95, 191, 186, 0.2);
}

.step-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  padding: 150px 0 200px;
  background: #151a24;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.port-card {
  background: #1A202C;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.port-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

.port-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.port-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.port-card:hover .port-img-wrap img {
  transform: scale(1.1);
}

.port-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
}

.port-tag {
  background: rgba(21, 26, 36, 0.85);
  backdrop-filter: blur(4px);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.port-content {
  padding: 24px;
}

.port-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.port-content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* About Section */
.about {
  background: #1A202C;
  padding: 220px 0;
  overflow: hidden;
}

.about-wrapper {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 40px;
}

.about-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.15;
}

.txt-type {
  color: var(--accent);
  position: relative;
  padding-right: 5px;
}

.txt-type::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background-color: var(--accent);
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-left: 3px solid var(--accent);
  padding-left: 15px;
  margin-bottom: 0;
}

.about-image {
  position: relative;
  width: 100%;
}

.main-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.stat-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 12px;
  color: var(--muted);
}

.about-action {
  margin-top: 10px;
}

/* =======================================================
   PACKAGES & PRICING PAGES
   ======================================================= */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: #1A202C;
}

.page-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-label {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-label::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.plans-section {
  padding: 20px 0 100px;
  background: #1A202C;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.plan-card {
  background: #151a24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.plan-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.plan-card--featured {
  background: linear-gradient(180deg, #1a2332 0%, #151a24 100%);
  border: 2px solid var(--accent);
  box-shadow: 0 5px 30px rgba(255, 178, 0, 0.1);
  z-index: 2;
}

.plan-card--featured:hover {
  box-shadow: 0 10px 50px rgba(255, 178, 0, 0.2);
  border-color: #f2a600;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1a1300;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(253, 175, 41, 0.4);
}

.plan-header {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.plan-name {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.plan-sub-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 10px;
  font-style: italic;
}

.plan-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.plan-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  padding: 0 10px;
}

.plan-body {
  flex: 1;
  margin-bottom: 30px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d9e1ee;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}

.check {
  color: var(--muted);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.check--accent {
  color: var(--accent);
}

.plan-footer {
  text-align: center;
}

.btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
  font-size: 16px;
}

.btn-plan--outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: transparent;
}

.btn-plan--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-plan--solid {
  background: var(--accent);
  color: #1a1300 !important;
  border: 1px solid var(--accent);
}

.btn-plan--solid:hover {
  filter: brightness(1.1);
  box-shadow: 0 5px 20px rgba(255, 178, 0, 0.4);
  transform: translateY(-3px);
}

/* =======================================================
   ADDONS SECTION
   ======================================================= */
.addons-section {
  padding: 100px 0;
  background: #131720;
}

.addons-sub {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: -40px auto 60px;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  max-width: 1100px;
  margin: 0 auto;
}

.addon-card {
  background: #1A202C;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.addon-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.addon-card:first-child {
  border-top: 4px solid #63B3ED;
}

.addon-card:first-child .addon-icon {
  color: #63B3ED;
  background: rgba(99, 179, 237, 0.1);
}

.addon-card:last-child {
  border-top: 4px solid var(--mint);
  background: linear-gradient(180deg, rgba(86, 228, 221, 0.03) 0%, #1A202C 100%);
}

.addon-card:last-child .addon-icon {
  color: var(--mint);
  background: rgba(86, 228, 221, 0.1);
}

.addon-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.addon-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-icon svg {
  width: 32px;
  height: 32px;
}

.addon-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
}

.addon-price {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
}

.addon-price small {
  font-size: 16px;
  color: #a0aec0;
  font-weight: 500;
}

.addon-desc {
  font-size: 16px;
  color: #cbd5e0;
  margin-bottom: 30px;
  line-height: 1.6;
  min-height: 50px;
}

.addon-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.addon-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #e2e8f0;
  padding-left: 24px;
  position: relative;
}

.addon-list li::before {
  content: "✓";
  color: inherit;
  font-weight: 900;
  position: absolute;
  left: 0;
}

.addon-card:first-child .addon-list li::before {
  color: #63B3ED;
}

.addon-card:last-child .addon-list li::before {
  color: var(--mint);
}

.addon-action {
  margin-top: auto;
  padding-top: 30px;
}

.addon-action .btn-plan {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* =======================================================
   CTA SECTIONS
   ======================================================= */
.contact-cta-block {
  padding: 60px 0;
  background: #1A202C;
}

.cta-box {
  background: linear-gradient(90deg, #1f293a 0%, #1a202c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  color: #fff;
  margin-top: 0;
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.cta-box .btn-plan {
  max-width: 250px;
}

.cta-section {
  padding: 150px 0 220px;
  background: #1A202C;
}

.cta-banner {
  background: linear-gradient(135deg, #2D3748 0%, #1a202c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cta-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cta-text-group h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-text-group p {
  color: #cbd5e0;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 90%;
}

.cta-btn-wrap {
  margin-top: 20px;
}

.cta-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to right, transparent 0%, black 20%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

/* =======================================================
   FAQ SECTION
   ======================================================= */
.faq-section {
  padding: 150px 0 220px;
  background-color: #151a24;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
}

.faq-btn:hover {
  color: var(--accent);
}

.faq-q {
  font-size: 18px;
  font-weight: 700;
  padding-right: 20px;
  line-height: 1.4;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-right: 20px;
}

.faq-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  margin-top: 0;
}

/* =======================================================
   CONTACT PAGE
   ======================================================= */
.contact-page {
  padding: 60px 0 100px;
  background: #1A202C;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.h1-small {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

.method-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: var(--accent);
}

.method-icon svg {
  width: 20px;
  height: 20px;
}

.method-item div strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}

.method-item div span {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.contact-form-wrapper {
  background: #151a24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.main-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  margin-left: 4px;
  margin-bottom: 10px;
  color: #a0aec0;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(26, 32, 44, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #151a24;
  box-shadow: 0 0 0 4px rgba(191, 151, 95, 0.1);
}

.callback-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(191, 151, 95, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.w-100 {
  width: 100%;
  justify-content: center;
}

/* --- PRÉMIUM KÜLDÉS GOMB (Kapcsolat űrlaphoz) --- */
.btn-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--accent);
  /* Alapból teli sárga */
  color: #1a1300;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  /* Kicsit vastagabb, tekintélyt parancsolóbb */
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  /* Ez kell ahhoz, hogy a fénycsóva ne lógjon ki */
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 178, 0, 0.2);
}

/* A "Shine" (Fénycsóva) effektus alapállapota (rejtve bal oldalt) */
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
}

/* Hover (Érintés) állapot: Felemelkedik és kap egy szép glow-t */
.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(255, 178, 0, 0.4);
  background: #ffbc1a;
  /* Egy picit világosabb sárga, hogy reagáljon */
}

/* Fénycsóva átfutása hoverkor */
.btn-submit:hover::after {
  animation: shine 0.7s ease-in-out;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* Lenyomott (Kattintás) állapot */
.btn-submit:active {
  transform: translateY(1px);
  box-shadow: 0 5px 10px rgba(255, 178, 0, 0.3);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.form-disclaimer a {
  color: var(--muted);
  text-decoration: underline;
}

/* Biztonságos, Google-barát Honeypot rejtés */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(86, 228, 221, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--mint);
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

.success-message h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}

.success-message p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.error-box {
  background: rgba(252, 129, 129, 0.1);
  border: 1px solid #FC8181;
  color: #FC8181;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

/* =======================================================
   FOOTER
   ======================================================= */
.footer {
  background: #131720;
  margin-top: 0;
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-cta+.footer {
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.1fr 1fr 1.2fr 1fr;
  align-items: start;
}

.footer-logo {
  display: block;
  height: 34px;
  margin-bottom: 15px;
  width: auto;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.footer-col h4,
.footer-social-head {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 15px;
}

.footer a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .ico {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-head {
  margin-top: 30px;
}

.footer-col .footer-social-head {
  margin-top: 40px !important;
  margin-bottom: 15px;
  display: block;
}

.soc {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

.soc:hover {
  background: var(--accent);
}

.soc:hover path {
  fill: #1a1300;
}

.soc svg {
  display: block;
}

/* =======================================================
   ANIMATIONS & UTILITIES
   ======================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-left {
  transform: translateX(-18px);
}

.reveal-right {
  transform: translateX(18px);
}

.reveal-zoom {
  transform: scale(.96);
}

.reveal-fade {
  transform: none;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-ready .nav {
  animation: dropIn .45s ease-out both;
}

.section-separator {
  height: 80px;
  background: #151a24;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (prefers-reduced-motion:reduce) {

  .reveal,
  .page-ready .nav {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =======================================================
   MEDIA QUERIES (RESPONSIVE)
   ======================================================= */
@media (min-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 80px;
    row-gap: 30px;
    align-items: start;
  }

  .about-header {
    grid-column: 1;
    grid-row: 1;
  }

  .about-body {
    grid-column: 1;
    grid-row: 2;
  }

  .about-action {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    width: auto;
  }

  .about-action .btn-plan {
    width: auto !important;
    padding: 14px 40px !important;
  }

  .about-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .about-stats {
    grid-column: 2;
    grid-row: 3;
  }

  .about-title {
    font-size: 42px;
  }
}

@media (max-width: 1100px) {
  .menu {
    gap: 16px;
  }

  .menu a,
  .menu .pill,
  .menu .dropdown {
    display: none !important;
  }

  .hamburger {
    display: inline-block;
  }

  .h1 {
    font-size: 48px;
  }

  .plans-grid {
    grid-template-columns: 1fr !important;
    gap: 60px;
    padding: 0 10px;
    max-width: 500px;
    margin: 0 auto;
  }

  .plan-card--featured {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(95, 191, 186, 0.15);
  }

  .addons-grid {
    grid-template-columns: 1fr !important;
    max-width: 500px;
  }

  .addon-head {
    flex-direction: row;
    text-align: left;
  }

  .addon-card {
    text-align: center;
  }

  .addon-list {
    text-align: left;
    display: inline-block;
  }

  .page-title {
    font-size: 32px;
  }

  .section-label {
    font-size: 28px;
  }

  .cta-box {
    padding: 40px 20px;
  }
}

@media (max-width: 900px) {

  .problem-grid,
  .solution-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 32px;
  }

  .opp-box {
    grid-template-columns: 1fr;
    padding: 0;
    text-align: center;
    gap: 0;
  }

  .opp-content {
    padding: 50px 24px 30px;
    order: 1;
  }

  .opp-visual {
    order: 2;
    min-height: auto;
    display: block;
    padding-top: 0;
    margin-bottom: -10px;
  }

  .opp-img {
    width: 90%;
    max-width: 380px;
    transform: none !important;
    margin: 0 auto;
    display: block;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .opp-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .opp-text {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .btn-opp {
    width: 100%;
    justify-content: center;
  }

  .process-steps {
    flex-direction: column;
    gap: 40px;
    padding-left: 0;
    position: relative;
    padding-right: 10px;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 29px;
    width: 2px;
    height: 100%;
  }

  .step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }

  .step-num {
    margin-bottom: 0;
    font-size: 42px;
    width: 60px;
    min-width: 60px;
    text-align: center;
    padding: 10px 0;
    line-height: 1;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
  }

  .step-content {
    flex: 1;
    padding-top: 8px;
    text-align: left;
  }

  .step-item h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
  }

  .problem,
  .solution,
  .opportunity,
  .process,
  .portfolio,
  .about,
  .faq-section {
    padding: 100px 0 170px !important;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
    max-width: 450px;
    margin: 0 auto;
  }

  .port-card {
    margin-bottom: 20px;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about-header {
    order: 1;
  }

  .about-image {
    order: 2;
    margin: 0;
    width: 100%;
    border-radius: 16px;
  }

  .main-img {
    border-radius: 16px;
  }

  .about-body {
    order: 3;
  }

  .about-stats {
    order: 4;
  }

  .about-action {
    order: 5;
  }

  .stat-card {
    justify-content: space-between;
    gap: 20px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content {
    padding: 40px 24px;
    order: 2;
  }

  .cta-image-wrapper {
    order: 1;
    height: 200px;
    min-height: auto;
  }

  .cta-img {
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
  }

  .cta-text-group p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btn-wrap .btn-plan {
    width: 100%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .h1-small {
    font-size: 28px;
  }

  .footer {
    text-align: center;
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .footer-brand,
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .footer-list {
    align-items: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col .footer-social-head {
    margin-top: 40px !important;
  }
}

@media (min-width: 720px) {
  .hide-on-mobile {
    display: block;
  }

  .show-on-mobile {
    display: none;
  }
}

@media (max-width: 720px) {
  .hide-on-mobile {
    display: none;
  }

  .show-on-mobile {
    display: block;
  }

  .hero {
    padding: 140px 24px 80px;
  }

  .h1 {
    font-size: 30px;
    margin: 0 0 32px;
  }

  .sub {
    font-size: 18px;
    margin: 0 auto 36px;
  }

  .cta,
  .cta--ghost {
    width: 100%;
    text-align: center;
  }
}

/* =======================================================
   BLOG SZEKCIÓ
   ======================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 40px;
  margin-top: 40px;
}

.blog-card {
  background: #151a24;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 178, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-read-more {
  margin-top: auto;
  color: var(--mint);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-read-more {
  gap: 12px;
}

/* --- CIKK OLVASÓ NÉZET --- */
.article-header {
  padding: 160px 0 80px;
  background: #151a24;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-meta {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.article-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  color: #cbd5e0;
  font-size: 18px;
  line-height: 1.8;
}

.article-body h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 50px 0 20px;
  border-left: 4px solid var(--accent);
  padding-left: 15px;
}

.article-body h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 15px;
}

.article-body p {
  margin-bottom: 25px;
}

.article-body strong {
  color: #fff;
}

.article-body ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body .highlight-box {
  background: rgba(255, 178, 0, 0.05);
  border: 1px solid rgba(255, 178, 0, 0.2);
  padding: 30px;
  border-radius: 16px;
  margin: 40px 0;
}

@media (max-width: 900px) {
  .article-title {
    font-size: 32px;
  }

  .article-body {
    font-size: 16px;
    padding: 40px 24px 80px;
  }

  .article-body h2 {
    font-size: 24px;
  }
}