:root {
    --red: #e11d2a;
    --dark: #111827;
    --muted: #6b7280;
    --bg: #f7f7f8;
    --card: #ffffff;
    --line: #e5e7eb;
    --yellow: #facc15;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6
}

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

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

.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }


.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto
}

header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    /* position: sticky; */
    top: 0;
    z-index: 20
}
.brand span {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}
.topbar {
    background: var(--dark);
    color: #fff;
    font-size: .92rem
}

.topbar .container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .7rem 0
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0
}

.logo img {
    height: 35px;
    object-fit: contain
}

.menu {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center
}

.menu a {
    padding: .7rem .3rem;
    /* border-radius: 999px; */
    font-weight: 700;
    font-size: 15px;
}

.menu a.active,
.menu a:hover {
    background: #fee2e2;
    color: var(--red)
}
/* Hamburger hidden desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #111;
    display: block;
  }
  
  /* Mobile */
  @media (max-width: 920px) {
    .hamburger {
      display: flex;
    }
    .topbar .container > div:first-child {
        display: none;
    }
  
    .menu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      flex-direction: column;
      display: none;
      padding: 1rem;
    }
  
    .menu.open {
        display: flex;
        background: #e11d2a;
        color: white;
        align-items: flex-start;
    }
  
    .menu a {
      padding: 0.75rem 0;
      border-bottom: 1px solid #eee;
      width: 100%;
    }
    .menu .btn {
        display: block;
        background: none;
        color: inherit;
        padding-left: 0;
        border-radius: 0;
        border: 0;
        cursor: pointer;
        padding-right: 0;
    }
  
    .navbar {
      position: relative;
    }
  }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    padding: .95rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    border: 0;
    cursor: pointer
}

.btn.secondary {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--line)
}

.hero {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #fff 0%, #fff 55%, #fef2f2 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 2rem;
    align-items: center
}

.eyebrow {
    display: inline-block;
    background: #fee2e2;
    color: var(--red);
    padding: .45rem .8rem;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 1rem
}

h1,
h2,
h3 {
    line-height: 1.15;
    margin: 0 0 1rem
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem)
}

h3 {
    font-size: 1.25rem
}

p.lead {
    font-size: 1.15rem;
    color: #374151
}
.footer-logo {
    height: 24px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    object-fit: contain;
    max-width: 100%;
}

.hero-card {
    height: 100%;
}
.hero-card img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    min-height: 380px;
    max-height: 600px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.section {
    padding: 4rem 0
}

.grid {
    display: grid;
    gap: 1.4rem
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    /* border-radius: 24px; */
    padding: 1.4rem;
    box-shadow: 0 8px 30px rgba(17, 24, 39, .05)
}

.card img {
    border-radius: 10px;
    margin-bottom: 1rem;
    height: 220px;
    object-fit: cover;
    width: 100%
}

.muted {
    color: var(--muted)
}

.list {
    padding-left: 1.2rem;
    margin: 0
}

.list li {
    margin: .5rem 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem
}

.stat {
    background: #fff;
    border: 1px solid var(--line);
    /* border-radius: 20px; */
    padding: 1rem;
    text-align: center
}

.banner {
    background: var(--dark);
    color: #fff;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center
}

.contactbox {
    background: #fff3c4;
    border: 1px solid #fcd34d;
    border-radius: 24px;
    padding: 1.5rem
}

form {
    display: grid;
    gap: 1rem
}

input,
select,
textarea {
    width: 100%;
    padding: .95rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    font: inherit;
    background: #fff
}

textarea {
    min-height: 160px;
    resize: vertical
}
.form-group {
    margin-bottom: 15px;
}

/* ALERT BASIS */
.alert {
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  /* SUCCESS */
  .alert-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
  }
  
  /* ERROR */
  .alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #7f1d1d;
  }
  
  /* INFO (optioneel) */
  .alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e3a8a;
  }
  
  /* ICON (optioneel) */
  .alert::before {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
  }
  
  .alert-success::before {
    content: \"✔\";
  }
  
  .alert-error::before {
    content: \"⚠\";
  }
  
  .alert-info::before {
    content: \"ℹ\";
  }
  
footer {
    background: #101826;
    color: #fff;
    padding: 3rem 0 2rem;
    margin-top: 3rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 1.5rem
}

.footer-links a {
    display: block;
    padding: .3rem 0;
    color: #d1d5db
}
.footer-links a.active {
    color: #e11d2a;
}

.page-hero {
    padding: 3.5rem 0 2.5rem;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.page-hero .wrap {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 2rem;
    align-items: center
}

.page-hero img {
    border-radius: 24px;
    min-height: 300px;
    object-fit: cover;
    width: 100%
}

.notice {
    background: #fff7ed;
    border: 1px solid #fdba74;
    padding: 1rem 1.2rem;
    border-radius: 18px
}

@media (max-width: 920px) {

    .hero-grid,
    .split,
    .page-hero .wrap,
    .footer-grid,
    .grid-4,
    .grid-3,
    .grid-2,
    .stats {
        grid-template-columns: 1fr
    }

    .menu {
        display: none
    }

    .navbar {
        padding: .8rem 0
    }

    .logo img {
        height: 25px
    }
}
@media (max-width: 768px) {
    .banner {
        display: flex;
    flex-direction: column;
    }
}