@font-face {
  font-family: "Rawline";
  src: url("../fonts/rawline-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Rawline";
  src: url("../fonts/rawline-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Rawline";
  src: url("../fonts/rawline-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Rawline";
  src: url("../fonts/rawline-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg: #eef2f6;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --ink: #112033;
  --muted: #5d6a78;
  --line: rgba(17, 32, 51, 0.09);
  --brand: #123d69;
  --brand-dark: #0c2a47;
  --accent: #d33b2f;
  --accent-dark: #b22c21;
  --shadow: 0 24px 60px rgba(17, 32, 51, 0.12);
  --shadow-soft: 0 12px 35px rgba(17, 32, 51, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Rawline", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(211, 59, 47, 0.08), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(18, 61, 105, 0.14), transparent 20%),
    linear-gradient(180deg, #f6f8fb 0%, var(--bg) 55%, #f4f7fb 100%);
}

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

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

section,
footer {
  scroll-margin-top: 110px;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.section-space {
  padding: 4.25rem 0;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h1,
.section-heading h2 {
  margin: 0.4rem 0 0.85rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
}

.section-heading p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(18, 61, 105, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-glow {
  position: fixed;
  z-index: 1;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
}

.page-glow-left {
  top: 3rem;
  left: -8rem;
  background: rgba(211, 59, 47, 0.2);
}

.page-glow-right {
  top: 12rem;
  right: -6rem;
  background: rgba(18, 61, 105, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 0.9rem 0 0;
}

.navbar {
  margin: 0 auto;
  padding: 0.9rem 1.1rem;
  max-width: 1240px;
  border: 1px solid rgba(17, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  gap: 0.35rem;
}

.nav-link {
  padding: 0.7rem 0.95rem !important;
  color: var(--ink);
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  background: rgba(18, 61, 105, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switcher .btn {
  min-width: 88px;
  box-shadow: none;
}

.language-switcher .dropdown-menu {
  padding: 0.45rem;
  border: 1px solid rgba(17, 32, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.language-switcher .dropdown-item {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
}

.language-switcher .dropdown-item:hover,
.language-switcher .dropdown-item:focus {
  color: var(--brand);
  background: rgba(18, 61, 105, 0.08);
}

.language-switcher .dropdown-item.active,
.language-switcher .dropdown-item:active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.navbar-toggler {
  border: none;
  border-radius: 14px;
  background: rgba(18, 61, 105, 0.08);
  box-shadow: none !important;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
}

.btn-accent {
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 18px 35px rgba(211, 59, 47, 0.28);
}

.btn-accent:hover,
.btn-accent:focus {
  color: #fff;
  background: linear-gradient(135deg, #e54537, #bc2d22);
}

.btn-outline-brand {
  color: var(--brand);
  border: 1px solid rgba(18, 61, 105, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--brand-dark);
  border-color: rgba(18, 61, 105, 0.28);
  background: rgba(18, 61, 105, 0.08);
}

.hero-section {
  padding-bottom: 4.5rem;
}

.hero-shell {
  padding: clamp(1.2rem, 2.3vw, 1.55rem) clamp(1.2rem, 2.3vw, 1.55rem) clamp(8.75rem, 13vw, 10.5rem);
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .section-kicker {
  padding: 0.38rem 0.75rem;
  font-size: 0.74rem;
}

.hero-copy h1 {
  margin: 0.95rem 0 0.95rem;
  max-width: 12ch;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.03;
  font-weight: 700;
}

.hero-text {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-text + .hero-text {
  margin-top: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  min-height: 500px;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(243, 199, 102, 0.22), transparent 26%),
    linear-gradient(150deg, #dfe9f1 0%, #f4f8fb 52%, #d7e3ee 100%);
}

.hero-visual-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(17, 32, 51, 0), rgba(17, 32, 51, 0.08));
  pointer-events: none;
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.solutions-section {
  position: relative;
  z-index: 4;
  margin-top: -10rem;
  padding: 0;
}

.solutions-scroll {
  position: relative;
  overflow: hidden;
  padding: 0.25rem 0;
  cursor: grab;
  user-select: none;
}

.solutions-scroll::before,
.solutions-scroll::after {
  display: none;
}

.solutions-scroll.is-dragging {
  cursor: grabbing;
}

.solutions-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-inline: 0.15rem;
}

.solution-card {
  width: min(330px, calc(100vw - 3rem));
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.solution-card-copy {
  display: grid;
  gap: 0.7rem;
}

.solution-card-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(18, 61, 105, 0.08);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.7vw, 1.75rem);
  line-height: 1.08;
}

.solution-card-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 180px;
  margin: 1rem 0 1.05rem;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 61, 105, 0.06), rgba(18, 61, 105, 0.02));
}

.solution-card-image img {
  max-height: 190px;
  object-fit: contain;
}

.solution-card-button {
  width: 100%;
  padding: 0.82rem 1.1rem;
  border-radius: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.product-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(211, 59, 47, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.9);
}

.product-image-wrap {
  display: grid;
  place-items: center;
  min-height: 200px;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 61, 105, 0.06), rgba(18, 61, 105, 0.02));
}

.product-image {
  max-height: 185px;
  object-fit: contain;
}

.product-image-wrap-fill {
  min-height: 280px;
  padding: 0.35rem;
  overflow: hidden;
}

.product-image-fill {
  width: 100%;
  height: 280px;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.product-content {
  flex: 1;
  padding-top: 0.95rem;
}

.product-content h3,
.fire-pane h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.product-tags span {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(18, 61, 105, 0.08);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.fire-curtains-shell {
  padding: clamp(1.25rem, 2.7vw, 1.75rem);
}

.fire-tabs {
  gap: 0.7rem;
}

.fire-tabs .nav-link {
  width: 100%;
  border: 1px solid var(--line);
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
}

.fire-tabs .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.fire-pane {
  min-height: 100%;
  padding: 0.55rem;
}

.fire-pane p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fire-pane-label {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(18, 61, 105, 0.08);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
}

.fire-pane-image-stack {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(18, 61, 105, 0.04);
}

.fire-pane-image-stack img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.fire-pane-thumb {
  margin-top: 0.9rem;
  max-height: 160px;
}

.fire-pane-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.fire-pane-list li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.45rem;
  color: var(--ink);
  line-height: 1.5;
}

.fire-pane-list li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.solution-actions {
  margin-top: 1.25rem;
}

.clients-shell {
  padding: 1.2rem;
}

.client-card {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.client-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.84;
}

.client-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.team-photo-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 100%;
}

.team-photo-wrap img {
  width: 100%;
  min-height: 360px;
  max-height: 620px;
  height: 100%;
  object-fit: cover;
}

.request-shell {
  padding: clamp(1rem, 1.9vw, 1.35rem);
}

.request-header {
  margin-bottom: 2rem;
}

.request-header h2 {
  margin: 0.4rem 0 0.85rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
}

.request-visual {
  position: relative;
  min-height: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #f5ede6 0%, #f0f4f9 100%);
}

.request-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}

.request-manager {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(78%, 420px);
  transform: translateX(-50%);
}

.amo-shell {
  height: auto;
  min-height: 430px;
  display: flex;
  align-items: flex-start;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.amo-shell > div,
.amo-shell iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0;
}

.amo-shell > div {
  min-height: 430px;
  height: auto !important;
}

.amo-shell iframe {
  min-height: 430px;
}

.contact-info {
  height: 100%;
  padding: 1.2rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-card:last-of-type {
  border-bottom: none;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(18, 61, 105, 0.08);
  color: var(--brand);
  font-size: 1.3rem;
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-card a:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.map-shell {
  height: 100%;
  min-height: 340px;
  padding: 0;
  overflow: hidden;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.floating-messengers {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-messenger {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.floating-messenger i {
  font-size: 1.55rem;
}

.floating-messenger-whatsapp {
  background: linear-gradient(135deg, #25d366, #17904a);
}

.floating-messenger-bot {
  background: linear-gradient(135deg, #2794ff, #1d6fd0);
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.4rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  font-weight: 700;
  color: var(--brand);
}

.footer-copy {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1.2rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-copy span,
.footer-copy a {
  color: var(--muted);
  line-height: 1.55;
}

.footer-copy a {
  font-weight: 700;
  color: var(--brand);
  justify-self: end;
  text-align: right;
}

@media (max-width: 1199px) {
  .hero-section {
    padding-bottom: 4rem;
  }

  .solutions-section {
    margin-top: -8.5rem;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding-top: 0.6rem;
  }

  .navbar {
    margin-inline: 0.75rem;
    border-radius: 26px;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .nav-actions .btn,
  .language-switcher {
    width: 100%;
  }

  .language-switcher .dropdown-menu {
    position: static !important;
    width: 100%;
    margin-top: 0.55rem !important;
    transform: none !important;
  }

  .hero-section {
    padding-bottom: 3.75rem;
  }

  .hero-copy h1,
  .hero-text {
    max-width: none;
  }

  .hero-visual-card {
    min-height: 420px;
    aspect-ratio: 4 / 3;
  }

  .solutions-section {
    margin-top: -5.5rem;
  }

  .request-visual {
    min-height: 360px;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .section-space {
    padding: 4rem 0;
  }

  .navbar {
    padding: 0.85rem 1rem;
  }

  .hero-section {
    padding-bottom: 3.5rem;
  }

  .hero-shell {
    padding: 1rem 1rem 8rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
  }

  .hero-visual-card {
    min-height: 340px;
    aspect-ratio: 4 / 5;
  }

  .hero-visual-card img {
    object-position: center 18%;
  }

  .solutions-section {
    margin-top: -5.5rem;
  }

  .hero-actions,
  .product-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .product-actions .btn {
    width: 100%;
  }

  .solution-card {
    width: min(300px, calc(100vw - 2.5rem));
    min-height: 390px;
  }

  .request-visual {
    min-height: 240px;
  }

  .request-manager {
    width: min(72%, 320px);
  }

  .amo-shell {
    min-height: 0;
  }

  .amo-shell > div {
    min-height: 0;
  }

  .amo-shell iframe {
    min-height: 480px;
    height: 480px !important;
  }

  .floating-messengers {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .floating-messenger {
    width: 58px;
    height: 58px;
  }

  .footer-shell {
    align-items: flex-start;
  }

  .footer-copy {
    grid-template-columns: 1fr;
  }

  .footer-copy a {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 575px) {
  .panel,
  .hero-visual-card,
  .team-photo-wrap,
  .request-visual,
  .map-shell {
    border-radius: 24px;
  }

  .section-kicker {
    font-size: 0.8rem;
  }

  .hero-shell,
  .request-shell,
  .clients-shell,
  .fire-curtains-shell,
  .contact-info,
  .footer-shell {
    padding: 1rem;
  }

  .product-card {
    padding: 1rem;
  }

  .solution-card {
    width: min(280px, calc(100vw - 2rem));
    min-height: 375px;
    padding: 1.05rem;
    border-radius: 24px;
  }

  .hero-shell {
    padding-bottom: 7.25rem;
  }

  .solution-card h3 {
    font-size: 1.2rem;
  }

  .solution-card-image {
    min-height: 150px;
    margin: 0.8rem 0 0.95rem;
  }

  .solution-card-image img {
    max-height: 160px;
  }

  .product-image-wrap-fill {
    min-height: 230px;
  }

  .amo-shell > div {
    min-height: 0;
  }

  .amo-shell iframe {
    min-height: 440px;
    height: 440px !important;
  }

  .product-image-fill {
    height: 230px;
  }

  .contact-card {
    grid-template-columns: 46px 1fr;
    gap: 0.8rem;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

}
