:root {
  --ink: #162025;
  --muted: #5e6b70;
  --soft: #f4f7f5;
  --line: #dce5e2;
  --brand: #0d7f72;
  --brand-dark: #075c57;
  --accent: #e15b42;
  --gold: #f2bd4d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 35, 39, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 229, 226, 0.86);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, padding 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(21, 32, 37, 0.09);
  padding-bottom: 10px;
  padding-top: 10px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 4px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 7px;
  justify-content: center;
}

.main-nav a {
  border-radius: 8px;
  color: #344247;
  font-size: 0.95rem;
  font-weight: 720;
  padding: 10px 12px;
}

.main-nav a:hover {
  background: var(--soft);
  color: var(--brand-dark);
}

.quick-links,
.hero-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.solid-button,
.ghost-button {
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.solid-button {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: var(--white);
}

.ghost-button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.solid-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.solid-button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.ghost-button:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.solid-button svg,
.ghost-button svg,
.service-card svg,
.contact-lines svg,
.feature-list svg {
  height: 18px;
  width: 18px;
}

.large {
  min-height: 50px;
  padding: 13px 18px;
}

.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.nav-toggle {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.hero {
  color: var(--white);
  min-height: min(820px, 92vh);
  overflow: hidden;
  padding: 150px clamp(18px, 4vw, 56px) 56px;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(7, 26, 31, 0.94) 0%, rgba(7, 26, 31, 0.73) 34%, rgba(7, 26, 31, 0.22) 74%),
    image-set(
      url("assets/hero-ict-seegers-photobooth.webp") type("image/webp"),
      url("assets/hero-ict-seegers-photobooth.png") type("image/png")
    ) center / cover;
  inset: 0;
  position: absolute;
  transform: scale(1.01);
  z-index: -1;
}

.hero-inner {
  align-items: end;
  display: grid;
  min-height: calc(min(820px, 92vh) - 206px);
  width: min(1180px, 100%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd06f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.85rem, 7vw, 6rem);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.03;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.13rem;
  line-height: 1.22;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 680px;
}

.trust-row {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.76);
}

.trust-row strong {
  color: var(--white);
}

.intro-strip {
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: -40px auto 0;
  max-width: 1120px;
  overflow: hidden;
  position: relative;
  width: calc(100% - 36px);
  z-index: 2;
}

.intro-strip div {
  background: var(--white);
  padding: 26px;
}

.intro-strip span {
  color: var(--brand);
  display: block;
  font-weight: 900;
  margin-bottom: 12px;
}

.intro-strip strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.intro-strip p,
.section-heading p,
.panel-text p,
.service-card p,
.timeline p,
.price-card li,
.email-grid p,
.filecap-copy p,
.faq-section p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 56px);
  width: min(1230px, 100%);
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: 680px;
}

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

.service-card,
.price-card,
.email-grid article,
.security-board div,
.accordion details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 260px;
  padding: 26px;
}

.service-card svg {
  color: var(--brand);
  height: 28px;
  margin-bottom: 26px;
  width: 28px;
}

.split-section {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: 0.75fr 1.25fr;
}

.panel-text {
  position: sticky;
  top: 120px;
}

.timeline {
  border-left: 2px solid var(--line);
  display: grid;
  gap: 20px;
  padding-left: 28px;
}

.timeline div {
  background: var(--soft);
  border-radius: 8px;
  padding: 24px;
  position: relative;
}

.timeline span {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: -46px;
  position: absolute;
  top: 22px;
  width: 34px;
}

.hosting-section {
  max-width: none;
  width: 100%;
  background: var(--soft);
}

.hosting-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 460px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(13, 127, 114, 0.55);
  box-shadow: 0 18px 50px rgba(13, 127, 114, 0.16);
  transform: translateY(-10px);
}

.package {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li + li {
  margin-top: 10px;
}

.email-section {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.8fr 1.2fr;
}

.email-grid {
  display: grid;
  gap: 14px;
}

.email-grid article {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 1.5fr;
  padding: 18px;
}

.email-grid span {
  font-weight: 850;
}

.email-grid strong {
  color: var(--accent);
  font-size: 1.45rem;
}

.filecap-section {
  align-items: center;
  background: #172025;
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr;
  max-width: none;
  width: 100%;
}

.filecap-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
}

.filecap-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.feature-list span {
  align-items: center;
  display: flex;
  gap: 10px;
}

.feature-list svg {
  color: var(--gold);
}

.security-board {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.security-board div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  min-height: 155px;
  padding: 24px;
}

.security-board strong,
.security-board span {
  display: block;
}

.security-board strong {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.security-board span {
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.7fr 1.3fr;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  padding: 6px 20px;
}

.accordion summary {
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 850;
  list-style: none;
  padding: 18px 0;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.contact-section {
  max-width: none;
  padding-top: 40px;
  width: 100%;
}

.contact-card {
  background: var(--soft);
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(24px, 5vw, 54px);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-lines a,
.contact-lines span {
  align-items: center;
  display: flex;
  gap: 10px;
}

.contact-lines svg {
  color: var(--brand);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  color: #344247;
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 14px;
  width: 100%;
}

.form-status {
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.45;
  padding: 14px 16px;
}

.form-status.success {
  background: rgba(13, 127, 114, 0.12);
  color: var(--brand-dark);
}

.form-status.error {
  background: rgba(225, 91, 66, 0.12);
  color: #9d2d1d;
}

.hp-field {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.turnstile-wrap {
  min-height: 65px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(13, 127, 114, 0.14);
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 8px;
  bottom: 22px;
  box-shadow: 0 14px 34px rgba(15, 90, 53, 0.26);
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  gap: 9px;
  min-height: 50px;
  padding: 13px 16px;
  position: fixed;
  right: 22px;
  z-index: 30;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

.whatsapp-float svg {
  height: 20px;
  width: 20px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px clamp(18px, 4vw, 56px);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 760;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav,
  .quick-links {
    display: none;
  }

  .main-nav.is-open {
    background: var(--white);
    display: grid;
    gap: 6px;
    grid-column: 1 / -1;
    padding: 10px 0;
  }

  .main-nav.is-open a {
    padding: 14px 2px;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }

  .split-section,
  .email-section,
  .filecap-section,
  .faq-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .panel-text {
    position: static;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 860px;
    padding-top: 120px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 26, 31, 0.96) 0%, rgba(7, 26, 31, 0.72) 58%, rgba(7, 26, 31, 0.28) 100%),
      image-set(
        url("assets/hero-ict-seegers-photobooth.webp") type("image/webp"),
        url("assets/hero-ict-seegers-photobooth.png") type("image/png")
      ) 64% center / cover;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .trust-row,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .intro-strip,
  .service-grid,
  .pricing-grid,
  .security-board {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    margin-top: -24px;
  }

  .section {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .email-grid article {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.45rem;
  }

  .solid-button,
  .ghost-button {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 14px;
    right: 14px;
  }

  .whatsapp-float span {
    display: none;
  }
}
