:root {
  --primary: #009BA4;
  --primary-dark: #00777f;
  --primary-light: #66c1c7;
  --text-primary: #1a1a2e;
  --text-secondary: #666;
  --background: #009BA4;
  --white: #fff;
  --container-max-width: 1110px;
  --font-letter-spacing: 4%;
}

@font-face {
  font-family: 'SrabenGrotesk';
  src: url('../fonts/SrabenGrotesk-Medium.woff2') format('woff2'),
       url('../fonts/SrabenGrotesk-Medium.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'SrabenGrotesk';
  src: url('../fonts/SrabenGrotesk-SemiBold.woff2') format('woff2'),
       url('../fonts/SrabenGrotesk-SemiBold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'SrabenGrotesk';
  src: url('../fonts/SrabenGrotesk-Bold.woff2') format('woff2'),
       url('../fonts/SrabenGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'SrabenGrotesk';
  src: url('../fonts/SrabenGrotesk-ExtraBold.woff2') format('woff2'),
       url('../fonts/SrabenGrotesk-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'SrabenGrotesk';
  src: url('../fonts/SrabenGrotesk-Black.woff2') format('woff2'),
       url('../fonts/SrabenGrotesk-Black.woff') format('woff');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Guminert';
  src: url('../fonts/Guminert.woff2') format('woff2'),
       url('../fonts/Guminert.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'SrabenGrotesk-semibold', system-ui, sans-serif;
  background: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 24px; */
}

.card {
  background: var(--background);
  border-radius: 20px;
  padding: 48px;
  max-width: var(--container-max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.15); */
}

.left{
  align-self: center;
}
.grid-row{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* LEFT */
.left h1 {
    font-family: 'SrabenGrotesk', system-ui, sans-serif;
    color: #fff;
    line-height: 120%;
    margin-bottom: 12px;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.left p {
  font-family: 'Guminert', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: white;
  line-height: 160%;
  margin-bottom: 28px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap input, .input-wrap select {
  width: 100%;
  height: 56px;
  padding: 12px 52px 12px 16px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  appearance: none;
}
.input-wrap select { cursor: pointer; padding-right: 36px; }
.input-wrap .unit {
  position: absolute;
  right: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
  pointer-events: none;
}
.select-arrow {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: #888;
  font-size: 0.75rem;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* RIGHT */
.right {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 483px;
  max-height: 483px;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #F3F3F8;
  border-radius: 10px;
  padding: 14px 20px;
      height: 100px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.result-row:last-of-type { border-bottom: none; }
.result-label { font-size: 0.9rem; color: #666; }
.result-value { font-family: 'Guminert', system-ui, sans-serif; font-weight: 600; font-size: 18px; font-weight: 700; color: #1a1a2e; }
.loyer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.loyer-label { font-size: 0.9rem; color: #666; }
.loyer-value { font-family: 'Guminert', system-ui, sans-serif;font-size: 18px; font-weight: 800; color: #1a1a2e; }
.loyer-unit { font-family: 'Guminert', system-ui, sans-serif;font-size: 18px; font-weight: 700;  color: #1a1a2e; }
.notice-permanent {
font-family: 'Guminert';
    font-size: 14px;
    color: #e05555;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
    line-height: 160%;
    letter-spacing: 2%;
}
.notice-permanent a {
  color: #e05555;
  text-decoration: underline;
}
.notice {
  font-size: 0.8rem;
  color: #e05555;
  line-height: 1.4;
  text-align: center;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #080924;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn:hover { background: #2a2a4e; }

@media (max-width: 640px) {
  .card { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .left h1 { font-size: 1.4rem; }
}

@media print {
  @page { margin: 0; }
}
