/* mondodelkeszul.hu – landing page */

:root {
  --navy: #0a2540;
  --navy-dark: #061a2e;
  --gold: #c4923e;
  --gold-hover: #b07f2e;
  --gold-light: #d4a85a;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f0f0f0;
  --gray-200: #e5e5e5;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --text: #0a2540;
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 8px 40px rgba(10, 37, 64, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 146, 62, 0.35);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 0.875rem;
}

/* ── Section labels ── */

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

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

/* ── Header ── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__link:hover {
  color: var(--gold);
}

.header__cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Hero ── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 72px 0 88px;
  background-color: var(--white);
  background-image: url("../hero.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 85%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 40%,
    rgba(255, 255, 255, 0.4) 70%,
    transparent 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 500px;
  padding-top: 8px;
}

.hero__eyebrow {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 30px;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 26px;
}

.hero__headline-line {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.92;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero__headline-line--gold {
  color: var(--gold);
  margin-top: -2px;
}

.hero__highlight {
  position: relative;
  display: inline-block;
  background: none;
  padding: 0;
}

.hero__highlight::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -4px;
  bottom: -10px;
  height: 14px;
  background: url("../stroke.png") no-repeat left bottom / 100% 100%;
  border-radius: 0;
  opacity: 1;
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  font-size: clamp(1.375rem, 2.6vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  color: var(--navy);
}

.hero__tagline em {
  font-style: italic;
}

.hero__tagline-check {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--gold);
}

.hero__tagline-check circle,
.hero__tagline-check path {
  stroke-width: 3;
}

.hero__services {
  display: flex;
  flex-direction: column;
}

.hero__services li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 10px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.hero__services li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 52px;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.9;
}

.hero__service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: color-mix(in srgb, var(--gold) 70%, white);
}

.hero__service-icon svg {
  width: 26px;
  height: 26px;
}

.hero__service-icon svg :is(path, circle, rect, ellipse) {
  stroke-width: 2.5;
}

/* ── Services ── */

.services {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Process ── */

.process {
  padding: 80px 0;
  background: var(--white);
}

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

.process__step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -8px;
  width: 16px;
  height: 2px;
  background: var(--navy);
  opacity: 0.25;
}

.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.process__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process__desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Pricing ── */

.pricing {
  padding: 80px 0;
  background: var(--gray-50);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.pricing-card--dark {
  background: var(--navy);
  color: var(--white);
}

.pricing-card--light {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.pricing-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-card__price {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-card__desc {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 320px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.pricing-card__note {
  font-size: 0.8125rem;
  opacity: 0.7;
  font-style: italic;
}

.pricing-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.guarantee-card__content {
  flex: 1;
}

.guarantee-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.guarantee-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 360px;
}

.guarantee-card__seal {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  color: var(--gold);
}

.pricing-card--light .pricing-card__body {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── Contact CTA ── */

.contact-cta {
  padding: 80px 0;
  background: var(--gray-50);
}

.contact-cta__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-cta__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.contact-cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-cta__desc {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.65;
}

.contact-form {
  text-align: left;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

.contact-form__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
}

.contact-form__field {
  margin-bottom: 0;
}

.contact-form__col--right {
  min-height: 100%;
}

.contact-form__field--message {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-form__field--message .contact-form__textarea {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.contact-form__recaptcha {
  flex-shrink: 0;
}

.contact-form__recaptcha-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form__label--required::after {
  content: " *";
  color: var(--gold);
}

.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 146, 62, 0.15);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230a2540' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0;
}

/* ── Footer ── */

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0;
}

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

.footer__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}

.footer__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer__desc {
  font-size: 0.8125rem;
  opacity: 0.75;
  line-height: 1.5;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ── Icons (inline SVG helpers) ── */

.icon-check {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.icon-lock {
  width: 14px;
  height: 14px;
  color: var(--gray-500);
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process__step:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }

  .nav--open {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 12px 0;
  }

  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 56px 0 72px;
    background-position: center bottom;
    background-size: 85% auto;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.88) 60%,
      rgba(255, 255, 255, 0.7) 100%
    );
  }

  .hero__content {
    max-width: none;
    padding-top: 0;
  }

  .hero__eyebrow {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .hero__headline {
    margin-bottom: 20px;
  }

  .hero__headline-line {
    line-height: 0.95;
  }

  .hero__tagline {
    margin-bottom: 28px;
    font-size: 1.25rem;
  }

  .hero__services li {
    font-size: 15px;
    min-height: 48px;
    padding: 9px 0;
  }

  .hero__services li:not(:last-child)::after {
    left: 48px;
  }

  .hero__service-icon {
    width: 34px;
    height: 34px;
    color: color-mix(in srgb, var(--gold) 70%, white);
  }

  .hero__service-icon svg {
    width: 23px;
    height: 23px;
  }

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

  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card__body {
    grid-template-columns: 1fr;
  }

  .pricing-card--light .pricing-card__body {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-form__textarea {
    min-height: 90px;
  }
}
