*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

:root {
  --bg: #05070d url("images/graphy-dark2.png") repeat top left;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.66);
  --muted-2: rgba(255, 255, 255, 0.52);
  --accent: #6c8fff;
  --accent-2: #00e0b8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 78px;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(108, 143, 255, 0.18), transparent 58%),
    radial-gradient(1000px 700px at 90% 0%, rgba(0, 224, 184, 0.08), transparent 52%),
    var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(100% - 36px, 1380px);
  margin: 0 auto;
  position: relative;
}

.container {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 16px;
}

.narrow {
  width: min(100%, 1080px);
}

/* ---------------------------
   Header / Nav
--------------------------- */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(7,10,18,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(91, 138, 255, 0.95), rgba(0, 255, 200, 0.75));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(7, 10, 18, 0.95);
}

.brand-text {
  font-size: 1.05rem;
}
/* =========================
   START NAV
   ========================= */

#nav-toggle {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  position: relative;
  font-weight: 500;
  font-family: 'Roboto Mono', monospace;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.nav-sep {
  color: rgba(255, 255, 255, 0.35);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  user-select: none;
}

.lang-link {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.lang-link.is-active {
  color: var(--text);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.22);
}

/* Hamburger gomb alapból rejtve */
.nav-toggle-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  z-index: 40;
  position: relative;
  align-items: center;
  justify-content: center;
}

.nav-toggle-btn span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle-btn span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle-btn span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle-btn span:nth-child(3) {
  transform: translateY(6px);
}

/* Overlay alapból nincs */
.nav-overlay {
  display: none;
}

/* =========================
   DESKTOP / TABLET LARGE
   ========================= */

@media (min-width: 981px) {
  .nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    pointer-events: auto;
    transform: none;
  }
}

/* =========================
   MOBILE / TABLET
   ========================= */

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .hero-badges,
  .cards-3,
  .industries,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
  }

  .callout {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle-btn {
    display: inline-flex;
    margin: 0;
  }

  /* háttér overlay */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 25;
  }

  /* oldalsó menü */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 340px);
    height: 100vh;
    padding: 6rem 1.5rem 2rem;
    background: rgba(1, 1, 2, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.2rem;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 30;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav a {
    font-size: 1.05rem;
  }

  .nav-sep {
    display: none;
  }

  .lang {
    margin-top: 1rem;
    margin-left: 0;
    padding-top: 1rem;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  /* nyitott állapot */
  #nav-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  #nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* hamburger -> X */
  #nav-toggle:checked + .nav-toggle-btn span:nth-child(1) {
    transform: rotate(45deg);
  }

  #nav-toggle:checked + .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked + .nav-toggle-btn span:nth-child(3) {
    transform: rotate(-45deg);
  }

  #nav-toggle:checked + .nav-toggle-btn {
    border-color: rgba(0, 255, 200, 0.24);
    background: rgba(255, 255, 255, 0.1);
  }
}

/* =========================
   END NAV
   ========================= */


.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 224, 184, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  padding: clamp(42px, 7vw, 88px) 0 clamp(34px, 6vw, 72px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(173, 255, 240, 0.88);
}

.hero h1 {
  margin: 0;
  font-family: "Michroma", sans-serif;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.hero h1 span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-lead {
  margin: 1.4rem 0 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

/* JAVÍTOTT HERO KÉPES RÉSZ */

.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.image-wrapper {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-reflect: below 8px linear-gradient(
    to top,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 20%,
    rgba(0, 0, 0, 0.1) 35%,
    transparent 55%
  );
}

.hero-image {
  display: block;
  width: 80%;
  max-width: 560px;
  height: auto;
  margin-left: 0;
  object-fit: contain;
  filter: brightness(0.88) contrast(1.05) saturate(0.9);
}

.reflection {
  width: min(70%, 360px);
  margin: 8px auto 0;
  height: 60px;
  background: url("images/ciso.png") no-repeat center top;
  background-size: contain;
  transform: scaleY(-1);
  opacity: 0.18;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    transparent 70%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    transparent 70%
  );
}

.image-wrapper .scan-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: -12%;
  height: 14%;
  background: linear-gradient(
    to bottom,
    rgba(0, 224, 184, 0),
    rgba(0, 224, 184, 0.08),
    rgba(108, 143, 255, 0.16),
    rgba(0, 224, 184, 0.08),
    rgba(0, 224, 184, 0)
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
  animation: heroScan 4.8s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes heroScan {
  0% {
    top: -16%;
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.55;
  }
  100% {
    top: 102%;
    opacity: 0;
  }
}
/* ---------------------------
   Buttons / Small UI
--------------------------- */
.btn {
     display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: rgb(223, 252, 255);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    padding: 0px 1.6rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 242, 255, 0.55);
    border-image: initial;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.btn:hover {
    box-shadow: rgba(0, 242, 255, 0.18) 0px 0px 20px;
    transform: translateY(-2px);
    background: rgba(0, 242, 255, 0.1);
}
.btn-secondary {
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.16);
}
.trust-bar {
  padding: 0 0 1rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  min-height: 60px;
  display: grid;
  place-items: center;
  padding: 0.9rem 1rem;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-contrast {
  position: relative;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.centered {
  text-align: center;
}

.section-head.split {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.section-head h2 {
  margin: 0;
  font-family: "Michroma", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2.55rem);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-lead,
.section-side {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.signal-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 220px;
}

.signal-index {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: rgba(120, 227, 212, 0.9);
}

.signal-card h3,
.service-body h3,
.benefit-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.08rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
}

.signal-card p,
.service-body p,
.benefit-card p,
.value-panel p,
.cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-no {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.2rem;
  font-family: "Michroma", sans-serif;
  font-size: 1.45rem;
  color: rgba(127, 217, 227, 0.88);
}

.section-panels {
  padding-top: 0;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  align-items: stretch;
}

.value-panel {
  border-radius: 24px;
  overflow: hidden;
}

.value-panel-main {
  padding: 2rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(108, 143, 255, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(18, 24, 40, 0.85), rgba(10, 14, 22, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.value-list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(173, 255, 240, 0.9);
  box-shadow: 0 0 14px rgba(173, 255, 240, 0.28);
}

.value-panel-side {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.value-panel-side img {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  filter: grayscale(1) contrast(1.06) brightness(0.92);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta {
  padding-bottom: 3rem;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 224, 184, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(18, 24, 40, 0.84), rgba(9, 13, 22, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

  .cta-copy h2 {
    margin: 0 0 1rem;
    font-family: "Michroma", sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
}

/* =========================
   CONTACT / MINIMAL MONOCHROME
   ========================= */

.contact-section {
  position: relative;
  padding: 8rem 0 0;
  background: linear-gradient(180deg, #050505 0%, #020202 100%);
  color: #f5f5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.container {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0 16px;
}

.section-header-minimal {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-header-minimal .section-index {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.section-header-minimal h2 {
  margin: 0 0 1rem;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.section-header-minimal p {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}

.contact-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-block {
  position: relative;
  padding: 2.75rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-block:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-block::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.contact-label {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.contact-block h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.contact-text {
  max-width: 42ch;
  margin: 0 0 2rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}

.reveal-mail {
  margin-top: auto;
  width: fit-content;
}

.reveal-mail summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.reveal-mail summary::-webkit-details-marker {
  display: none;
}

.reveal-mail summary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

.reveal-mail[open] summary {
  margin-bottom: 1rem;
}

.contact-value {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.06rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  word-break: break-word;
}

.contact-note {
  justify-content: space-between;
}

.contact-note-text {
  max-width: 44ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}

.contact-note-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.contact-note-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.contact-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-block:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-block {
    min-height: auto;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 6rem 0 0;
  }

  .section-header-minimal {
    margin-bottom: 2rem;
  }

  .section-header-minimal h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .section-header-minimal p,
  .contact-text,
  .contact-note-text,
  .contact-note-list li {
    font-size: 0.92rem;
  }

  .contact-block {
    padding: 1.5rem;
  }

  .contact-block::after {
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
  }

  .reveal-mail {
    width: 100%;
  }

  .reveal-mail summary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    text-align: center;
  }

  .contact-value {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
/* =========================
   FOOTER
   ========================= */

.site-footer-minimal {
  position: relative;
  background: #020202;
  color: #f5f5f5;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  gap: 4rem;
  padding: 4rem 0 3rem;
}

.footer-brand img {
  width: clamp(150px, 18vw, 220px);
  height: auto;
  display: block;
  margin-bottom: 1.25rem;
  filter: grayscale(1) brightness(1.08);
}

.footer-tagline {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.footer-description {
  max-width: 42ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.66);
}

.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-col a,
.footer-col summary {
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.66);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-col a:hover,
.footer-col summary:hover {
  color: #ffffff;
}

.reveal-mail--footer summary {
  padding: 0;
  min-height: auto;
  border: none;
  background: transparent;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  text-transform: none;
  font-weight: 400;
  color: rgba(255,255,255,0.66);
}

.reveal-mail--footer[open] summary {
  margin-bottom: 0.9rem;
}

.reveal-mail--footer .contact-value {
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .contact-grid,
  .footer-top,
  .footer-nav-wrap {
    grid-template-columns: 1fr;
  }

  .contact-block:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-top {
    gap: 2.5rem;
  }

  .footer-nav-wrap {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding-top: 6rem;
  }

  .contact-block {
    padding: 2rem 1.4rem;
    min-height: auto;
  }

  .footer-top {
    padding: 3rem 0 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1080px) {


  .hero-grid {
    gap: 2rem;
  }
.hero h1 {
    font-size: clamp(20px, 2.5vw, 30px);
}
  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    justify-content: center;
    align-items: center;
  }

  .image-wrapper {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .hero-image {
    max-width: 460px;
  }

  .reflection {
    width: min(68%, 280px);
    margin: 6px auto 0;
    height: 42px;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1380px);
  }
.hero-grid,
  .section-head.split,
  .value-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 28px 0 42px;
  }

  .hero h1 {
    font-size: clamp(18px, 3vw, 2rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-visual {
    justify-content: center;
    align-items: center;
  }

  .image-wrapper {
    width: min(100%, 320px);
    margin: 0 auto;
    -webkit-box-reflect: none;
  }

  .hero-image {
    width: 80%;
    max-width: 320px;
    margin-left: 0;
  }

  .reflection {
    width: 62%;
    height: 28px;
    margin: 4px auto 0;
    opacity: 0.12;
  }

  .signal-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-no {
    justify-content: flex-start;
  }

  .footer-row,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    padding-top: 72px;
  }

  .brand img {
    width: 8.5rem;
  }

  .header-cta {
    min-height: 38px;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }

  .hero-lead,
  .section-lead,
  .section-side,
  .signal-card p,
  .service-body p,
  .benefit-card p,
  .value-panel p,
  .cta-copy p {
    font-size: 0.94rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .image-wrapper {
    width: min(100%, 260px);
  }

  .hero-image {
    max-width: 260px;
  }

  .reflection {
    display: none;
  }

  .cta-box,
  .value-panel-main,
  .contact-card {
    padding: 1.1rem;
  }
}