/* ===========================================================
   GLOBAL
=========================================================== */
:root {
  --primary: #0e5d67;
  --accent: #0a7c87;
  --text-dark: #1b1b1b;
  --text-light: #556;
  --white: #ffffff;
}

.btn-member-login{
    background: #05474e;
    width: fit-content;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid #0a7c87;   
}

body {
  margin: 0;
  font-family: "Cabin", sans-serif;
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }

/* Reusable max-width layout container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
}

/* Mobile spacing */
@media (max-width: 900px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Reusable centered container for all block sections */
.section-wrap {
    margin: 35px 21px;
}

@media (max-width: 900px) {
  .section-wrap {
    padding: 0 20px;
  }
}

/* ===========================================================
   NAVBAR
=========================================================== */
header {
  width: 100%;
  background: #121212d2;
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;             /* ensure it spans fully */
  z-index: 50;
  box-sizing: border-box;
}

header img.logo {
  height: 40px;
}

nav a {
  margin: 0 18px;
  color: #cfeaed;
}

.contact-btn {
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  margin-left: 24px;    /* space from nav links */
  margin-right: 20px;   /* pull it away from scrollbar */
}

/* optional: tighten things on smaller screens */
@media (max-width: 900px) {
  header {
    padding: 14px 20px;
  }
  nav a {
    margin: 0 10px;
  }
  .contact-btn {
    padding: 8px 16px;
    margin-right: 10px;
  }
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */
footer .container{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  font-size: 14px;
}

footer img {
  height: 48px;
  margin-bottom: 15px;
}

footer h4 {
  margin-bottom: 14px;
  font-size: 16px;
  color: white;
}

footer a {
  display: block;
  color: #cfeaec;
  margin-bottom: 6px;
}

footer .copyright {
  grid-column: 1 / 4;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #164c52;
  color: #aac4c5;
}

@media(max-width: 900px) {
  footer.site-footer{
    padding: 20px 0;
  }

  footer .container{
    display: flex;
    flex-direction: column;
  }
}

/* Header layout refinements */
/* .site-header styles are defined above */

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.main-nav .nav-link {
  margin: 0 18px;
  color: #cfeaed;
  font-weight: 500;
}

/* ===========================================================
   SPLIT HEADER LAYOUT
=========================================================== */

.header-split {
    display: grid;
    grid-template-columns: auto 1fr auto auto; /* prevent center from staying perfectly centered */
    align-items: center;
    width: 100%;
}

/* Left group (logo) */
.header-left {
    display: flex;
    align-items: center;
}

/* Center group (nav) */
.header-center {
    justify-self: end;         /* moves it to the right within its grid cell */
    margin-right: 40px;
    display: flex;
    justify-content: center;
    gap: 36px; /* evenly spaced nav links */
}

/* Right group (Contact button) */
.header-right {
    display: flex;
    justify-content: flex-end;
}

/* Improve nav spacing + visuals */
.main-nav .nav-link {
    color: #cfeaed;
    font-weight: 500;
    padding: 8px 4px;
}

.main-nav .nav-link--active {
    color: #0B747E;
}

/* Contact button unchanged but centered properly now */
.contact-btn {
    background: var(--accent);
    padding: 10px 22px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
}

/* ===========================================================
   DROPDOWN MENU
=========================================================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-link--dropdown {
    position: relative;
    padding-right: 20px;
    display: flex;
}

.nav-link--dropdown::after {
    content: "く";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-link--dropdown::after {
    transform: translateY(-50%) rotate(90deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: #1a1a1a;
    border-radius: 6px;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #cfeaed;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(10, 124, 135, 0.2);
    color: #ffffff;
}

.dropdown-item--all {
    border-top: 1px solid rgba(207, 234, 237, 0.1);
    margin-top: 4px;
    padding-top: 12px;
    font-weight: 600;
    color: var(--accent);
}

.dropdown-item--all:hover {
    background-color: rgba(10, 124, 135, 0.3);
    color: #ffffff;
}

/* Dropdown group (sub-menu) */
.dropdown-group {
    padding: 4px 0;
}

.dropdown-group-title {
    padding: 8px 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    border-bottom: 1px solid rgba(207, 234, 237, 0.1);
    margin-bottom: 4px;
}

.dropdown-group-toggle {
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.dropdown-group-toggle:hover {
    opacity: 1;
    background-color: rgba(10, 124, 135, 0.1);
}

.dropdown-group-toggle::after {
    content: "く";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(
      270deg);
    font-size: 10px;
    transition: transform 0.2s ease;
}

.dropdown-group.collapsed .dropdown-group-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-group-content {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    max-height: 500px;
    opacity: 1;
}

.dropdown-group.collapsed .dropdown-group-content {
    max-height: 0;
    opacity: 0;
    padding: 0;
}

.dropdown-item--sub {
    padding-left: 26px;
    font-size: 13px;
    position: relative;
}

.dropdown-item--sub:before {
  content: "•";
  position: absolute;
  left: 10px;
  font-size: 24px;
  line-height: .4;
}

/* Mobile: stack layout cleanly */
@media (max-width: 900px) {
    .header-split {
        grid-template-columns: 1fr auto 1fr;
        padding: 14px 20px;
    }

    .header-center {
        gap: 16px;
    }
}

/* ========== BURGER BASE ========== */

.menu-toggle {
  display: none;              /* desktop: hidden */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* ========== MOBILE LAYOUT ========== */

@media (max-width: 900px) {
  header {
    padding: 12px 16px;
  }

  .header-inner {
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;     /* for absolute burger */
  }

  .header-right{
    width: 100%;
  }

  /* Hide inline nav + button by default */
  .main-nav,
  .contact-btn {
    display: none;
  }

  /* Burger visible & fixed to top-right */
  .menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  /* When menu is open */
  .site-header.nav-open .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
  }

  /* Keep logo row at top; burger still top-right */
  .site-header.nav-open .menu-toggle {
    top: 18px;
    right: 16px;
    transform: none;
  }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  .site-header.nav-open .main-nav .nav-link {
    display: block;
    margin: 0;
    padding: 10px 28px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Mobile dropdown styles */
  .site-header.nav-open .nav-dropdown {
    width: 100%;
  }

  .site-header.nav-open .nav-link--dropdown::after {
    display: none;
  }

  .site-header.nav-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
  }

  /* Mobile: dropdown toggle behavior */
  .site-header.nav-open .nav-dropdown:not(.dropdown-open) .dropdown-menu {
    display: none;
  }

  .site-header.nav-open .nav-dropdown.dropdown-open .dropdown-menu {
    display: block;
  }

  .site-header.nav-open .dropdown-item {
    padding: 10px 28px 10px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  .site-header.nav-open .dropdown-item--all {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
  }

  /* Mobile dropdown group styles */
  .site-header.nav-open .dropdown-group-title {
    padding: 10px 28px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
  }

  .site-header.nav-open .dropdown-group-toggle::after {
    right: 28px;
  }

  .site-header.nav-open .dropdown-group-content {
    max-height: none !important;
    opacity: 1 !important;
  }

  .site-header.nav-open .dropdown-group.collapsed .dropdown-group-content {
    display: none;
  }

  .site-header.nav-open .dropdown-item--sub {
    padding: 10px 28px 10px 48px;
  }

  /* Contact button: no full width, left-aligned */
  .site-header.nav-open .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    margin-top: 12px;
    border-radius: 6px;
    width: 100%;             /* <— key change */
    align-self: flex-start;  /* left-align under links */
  }
}


/* ========== BURGER ANIMATION WHEN OPEN ========== */

.site-header.nav-open .menu-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}


/* Footer layout refinements (optional but matches your grid) */
.site-footer {
  background: #073439;
  color: #d8e6e8;
  padding: 60px;
}

/* .footer-col styles are handled by grid layout above */

/* ===========================================================
   HERO – shared style + modifiers
=========================================================== */
.hero {
  padding: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero--home .container {
  display: flex;
  justify-content: flex-start;   /* ⬅ Left-align contents */
  align-items: center;
  width: 100%;
}

/* Shared tint */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 120, 110, 0.35);
  z-index: 0;
}

/* Triangle overlay – HOME ONLY */
.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 120, 110, 0.45);
  /* Right triangle:
     - left edge, slightly below top  -> (0, 10%)
     - bottom-left corner             -> (0, 100%)
     - bottom edge, before right side -> (90%, 100%) */
  clip-path: polygon(0 10%, 0 100%, 90% 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.hero-title {
  font-size: 40px;
  margin-bottom: 14px;
}

.hero-content p {
  max-width: 640px;
  margin: 0 auto 25px;
}

.hero-content .btn {
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 4px;
  color: #ffffff;
}

/* Home hero specifics (taller, left aligned, main image) */
.hero--home {
  height: 840px;                     /* was 540px */
  background-image: url("../images/main.jpg");
  justify-content: flex-start;
}

.hero--home .hero-content {
  text-align: left;
  max-width: 580px;
}

.hero--home .hero-content p {
  max-width: 500px;
  margin-left: 0;
}

/* Sub heroes: shorter and centered, same tint, NO triangle */
.hero--sub {
  height: 490px;                     /* was 340px */
}

/* Per-page backgrounds */
.hero--product {
  background-image: url("../images/why_choose_us.jpg");
}

.hero--about {
  background-image: url("../images/about_bot-right.jpg");
}

.hero--contact,
.hero--download {
  background-image: url("../images/call_center.jpg");
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero {
    padding: 0 20px;
  }

  .hero--home {
    height: 560px;                   /* was 420px */
  }

  .hero--sub {
    height: 420px;                   /* was 420px shared before; now explicit */
  }

  .hero-title {
    font-size: 32px;
  }

  .hero--home {
    justify-content: center;
    text-align: center;
  }

  .hero--home .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero--home .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}



/* ===========================================================
   ABOUT SECTION
=========================================================== */
.about .container {
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Container for the whole cluster */
.about-images {
  position: relative;
  width: 360px;
  height: 340px;
}

/* Generic boxed image */
.img-box {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
}

/* BACK (large) image */
.back-box {
  top: 0;
  left: 0;
  width: 77%;
  height: 77%;
  z-index: 1;
}

.back-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FRONT (smaller) image */
.front-box {
  width: 63%;
  height: 63%;
  right: 0;
  bottom: 0;
  z-index: 2;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.front-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dot grid – behind both images, not over them */
.dot-grid {
  position: absolute;
  width: 70px;             /* size similar to your ref */
  right: 20px;            /* peeking out on the right */
  top: 20px;               /* vertically centered-ish */
  z-index: 0;              /* behind back & front boxes */
  pointer-events: none;
}

/* ===========================================================
   ABOUT TEXT
=========================================================== */
.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.learn-btn {
  background: var(--primary);
  padding: 10px 20px;
  color: white;
  border-radius: 4px;
}

/* ===========================================================
   RESPONSIVE
=========================================================== */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-inline: 0;
  }

  .about-images {
    margin: 0 auto 40px;
  }
}


/* -------------------------------------------------------- */
/* PRODUCT HIGHLIGHT SECTION (Owl Carousel)                 */
/* -------------------------------------------------------- */

.section-title {
  font-size: 32px;
  margin: 0;
}

/* GREEN BAND + WAVES (unchanged) */
.products-section {
  position: relative;
  background-image: url("../images/bg-green-pattern.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
  padding: 70px 60px 90px;
  color: #ffffff;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 65% 0%, rgba(255,255,255,0.16), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.08), transparent 60%);
  opacity: 0.65;
  pointer-events: none;
}

/* ⬅️ FLEX GOES HERE */
.products-header {
  display: flex;
  justify-content: space-between;   /* title on left, arrows on right */
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

@media(max-width: 900px) {
  .products-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Just the text block */
.products-heading {
  max-width: 520px;
}

.section-title {
  font-size: 32px;
  margin: 0;
}

.products-label {
  font-size: 13px;
  margin: 0 0 8px;
  opacity: 0.9;
}

/* Header controls (reusable pattern) */
.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
}


/* Cards container sits above waves */
.products-inner {
  position: relative;
  margin-top: 40px;
  z-index: 1;
}

/* --------------------------------------------------------
   PRODUCTS CARDS – equal height, aligned content
-------------------------------------------------------- */

/* Make the Owl stage a flex row so all items in the carousel
   contribute to the total height, not just visible ones */
.icon-grid.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;     /* every owl-item same height */
}

/* Each owl item becomes a flex container that stretches
   its child (.icon-card) to full height */
.icon-grid.owl-carousel .owl-item {
  display: flex;
  height: auto;             /* let height be driven by content */
}

/* The actual card */
.icon-card {
  flex: 1 1 auto;
  width: 100%;
  box-sizing: border-box;

  background: rgba(255,255,255,0.10);
  padding: 32px;
  border-radius: 8px;
  backdrop-filter: blur(2px);

  display: flex;            /* stack content vertically */
  flex-direction: column;
  justify-content: flex-start;
}

/* Icon/logo – always aligned to top/left */
.icon-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  align-self: flex-start;
}

/* Title */
.icon-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

/* Body text – grows to fill space between title and button */
.icon-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  flex-grow: 1;             /* makes all cards equal height */
}

/* Button pinned to the bottom, aligned with left edge */
.icon-card a {
  display: inline-block;
  margin-top: 22px;         /* gap above button */
  padding: 8px 18px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;   /* same horizontal alignment */
}

/* Responsive: Owl manages items; we just tweak padding */
@media (max-width: 900px) {
  .products-section {
    padding: 60px 20px 70px;
  }
}



/* -------------------------------------------------------- */
/* WHY CHOOSE US */
/* -------------------------------------------------------- */
.why .container{
  padding: 0px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.why ul li {
  padding: 8px 0;
  font-size: 15px;
}

.demo-btn {
  display: inline-block;
  background: var(--primary);
  padding: 12px 24px;
  color: white;
  border-radius: 4px;
  margin-top: 20px;
  font-weight: 600;
}

/* -------------------------------------------------------- */
/* CTA SECTION */
/* -------------------------------------------------------- */
.cta .container {
  background: var(--primary);
  padding: 35px 60px;
  text-align: center;
  color: white;
}

.cta h2 {
  margin-bottom: 16px;
  font-size: 49px;
  line-height: 1.3;
}

.cta p {
  max-width: 630px;
  margin: 0 auto;
  margin-bottom: 28px;
  opacity: 0.9;
}

.cta .btn-row a {
  margin: 0 10px;
  background: var(--accent);
  padding: 12px 22px;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  display: inline-block;
}

@media (max-width: 900px) {
  .cta.section-wrap{
    padding: 35px 0 !important;
    margin: 0 !important;
  }

  .cta .container{
    padding: 35px 40px;
  }

  .cta h2{
    font-size: 24px;
  }
}

/* ===========================================================
   CONTACT PAGE MAIN
=========================================================== */
.contact-section {
  padding: 80px 60px 40px;
}

.contact-top {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.contact-top h2 {
  font-size: 32px;
  margin: 0 0 10px;
}

.contact-top p {
  color: var(--text-light);
  margin: 0;
}

/* Cards layout (form + info) */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  align-items: stretch; /* makes both columns match height */
  gap: 30px;
}


.contact-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

/* Form */
.contact-form h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #d7dfe2;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox row (fake reCAPTCHA area) */
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.checkbox-inline input {
  width: 16px;
  height: 16px;
}

/* Simple placeholder reCAPTCHA box */
.fake-captcha {
  border-radius: 4px;
  border: 1px solid #d7dfe2;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-light);
  min-width: 150px;
  text-align: right;
}

/* Submit button */
.send-btn {
  width: 100%;
  border: none;
  background: var(--primary);
  color: #ffffff;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

/* Contact info / business hours cards */
.contact-info h3,
.business-hours h3 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 12px;
}

/* thin line under card titles */
.card-divider {
  border: 0;
  border-top: 1px solid #e4ebee;
  margin: 0 0 18px;
}

/* two-column layout for phone + email */
.info-columns {
  display: flex;
  gap: 40px;
  margin-bottom: 18px;
}

/* Right column uses 2 rows of equal spacing relative to content */
.contact-info-col {
  display: grid;
  grid-template-rows: auto auto; /* Top card, bottom card */
  gap: 20px; /* spacing between Contact Info and Business Hours */
  height: 100%;
}


/* generic row with icon + text */
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.info-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.info-text {
  line-height: 1.4;
}

.info-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.info-value {
  color: var(--text-dark);
}

/* address row sits below the two columns */
.address-block {
  margin-top: 6px;
}

/* business hours text */
.business-hours p {
  margin: 0 0 4px;
  font-size: 14px;
}

/* Map section */
.map-section {
  padding: 0 60px 80px;
}

.map-wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-wrapper iframe {
  display: block;
  width: 100%;      /* Keep your chosen size */
  height: 35rem;   /* Or 35rem — either works */
}

/* Responsive layout */
@media (max-width: 900px) {
  .why .container{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-inline: 0;
  }
  .contact-section {
    padding: 60px 20px 30px;
  }

  .contact-top {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-section {
    padding: 0 20px 60px;
  }
}

/* ===========================================================
   PRODUCT MAIN (FEATURE SECTIONS)
=========================================================== */
.product-main {
  padding: 80px 60px 40px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-block.feature-reverse .feature-image-group {
  order: 2;
}

.feature-block.feature-reverse .feature-text {
  order: 1;
}

/* Image cluster (reuses idea from about-images) */
.feature-image-group {
  position: relative;
  width: 380px;
  height: 360px;
}

.feature-box {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
}

.feature-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-box.back {
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
}

.feature-box.front {
  right: 0;
  bottom: 0;
  width: 66%;
  height: 66%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.feature-dot-grid {
  position: absolute;
  width: 80px;
  top: 28px;
  right: 16px;
  z-index: 0;
  pointer-events: none;
}

.feature-dot-grid.right {
  left: 16px;
  right: auto;
}

/* Feature text */
.feature-text .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 10px;
}

.feature-text h2 {
  font-size: 30px;
  margin: 0 0 16px;
}

.feature-text p {
  color: var(--text-light);
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
}

/* Button */
.btn-outline {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

/* ===========================================================
   SUITABLE FOR SECTION (static 3-card strip)
=========================================================== */

.suitable-section {
  background: var(--primary);
  color: #ffffff;
  padding: 80px 60px 90px;
  position: relative;
  overflow: hidden;
}

/* Subtle wave overlay, similar to products section */
.suitable-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 60% 0%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.10), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.suitable-inner {
  position: relative;
  z-index: 1; /* sit above waves */
}

/* Title centered like in your reference */
.suitable-title {
  margin: 0 0 32px;
  font-size: 30px;
  text-align: center;
}

/* Static grid: 3 columns on desktop */
.suitable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Cards – equal height, aligned content */
.suitable-card {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 26px 24px 28px;
  backdrop-filter: blur(2px);

  display: flex;
  flex-direction: column;
  align-items: flex-start; /* icon/title/text aligned on same x */
  text-align: left;
  box-sizing: border-box;
  height: 100%;            /* let grid stretch them equally */
}

.suitable-card img {
  height: 40px;
  margin-bottom: 16px;
}

.suitable-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.suitable-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}

/* Responsive – stack cards on small screens */
@media (max-width: 900px) {
  .suitable-section {
    padding: 60px 20px 70px;
  }

  .suitable-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   WHY CHOOSE US (PRODUCT VARIANT)
=========================================================== */
.product-why {
  padding: 90px 60px;
}

.product-why .why-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.product-why .why-text .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 8px;
}

.product-why .why-text h2 {
  font-size: 30px;
  margin: 0 0 16px;
}

.product-why .why-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 8px;
}

.why-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* demo-btn already defined earlier; reused here */

/* ===========================================================
   DISCOVER BAR — POLISHED
=========================================================== */

/* Outer spacing so the bar doesn't touch the page edges */
.product-discover {
  color: #ffffff;
}

/* Contained card inside the section */
.product-discover .container {
  background: #073439;
  max-width: 1200px;
  margin: 0 auto;
  padding: 49px 70px;              /* <-- fixed units */
  border-radius: 6px;

  display: flex;
  justify-content: space-between;  /* text left, buttons right */
  align-items: center;
  gap: 32px;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Text block */
.discover-text h3 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 600;
}

.discover-text p {
  margin: 0;
  font-size: 21px;
  opacity: 0.9;
}

/* Buttons row */
.discover-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.discover-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

/* Filled button */
.discover-btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.discover-btn.primary:hover {
  background: #0c8f9a; /* slightly brighter */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

/* Outline button */
.discover-btn.outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.discover-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* MOBILE */
@media (max-width: 900px) {
  .product-discover .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;               /* a bit tighter on small screens */
  }

  .discover-actions {
    margin-top: 12px;
    flex-wrap: wrap;
  }
}

/* Extra spacing between Discover bar and CTA on product page */
.product-cta {
  margin-top: 32px;   /* creates a clear gap between the two bands */
}

/* ===========================================================
   RESPONSIVE FIXES — PRODUCT PAGE
   Applies to feature sections, image clusters, spacing, why-section
=========================================================== */

@media (max-width: 900px) {

  /* ---------------------------
     FEATURE BLOCKS
  --------------------------- */
  .product-main {
    padding: 50px 20px 20px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
  }

  /* Make reversed blocks fall back into normal order */
  .feature-block.feature-reverse .feature-image-group,
  .feature-block.feature-reverse .feature-text {
    order: unset;
  }

  /* ---------------------------
     IMAGE CLUSTERS
  --------------------------- */
  .feature-image-group {
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1 / 1;      /* ensures consistent shape */
    position: relative;
  }

  .feature-box {
    border-radius: 14px;
  }

  .feature-box.back {
    width: 75%;
    height: 75%;
  }

  .feature-box.front {
    width: 60%;
    height: 60%;
    box-shadow: 0 14px 24px rgba(0,0,0,0.18);
  }

  .feature-dot-grid {
    width: 60px;
    top: 14px;
    right: 10px;
  }

  .feature-dot-grid.right {
    left: 10px;
    right: auto;
  }

  /* ---------------------------
     FEATURE TEXT
  --------------------------- */
  .feature-text h2 {
    font-size: 26px;
  }

  .feature-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn-outline {
    padding: 8px 18px;
  }

  /* ---------------------------
     SUITABLE FOR — tighter mobile spacing
  --------------------------- */
  .suitable-section {
    padding: 60px 20px 60px;
  }

  /* ---------------------------
     WHY CHOOSE US
  --------------------------- */
  .product-why {
    padding: 60px 20px;
  }

  .why .product-why-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .why-image img {
    border-radius: 8px;
  }

  .product-why .why-text h2 {
    font-size: 26px;
  }

  .product-why .why-text p {
    font-size: 14px;
  }

  .why-list li {
    font-size: 14px;
    line-height: 1.4;
  }

  /* ---------------------------
     DISCOVER BAR — already responsive,
     but refined for better spacing
  --------------------------- */
  .product-discover .container {
    padding: 26px 20px !important;
  }

  .discover-text h3 {
    font-size: 20px;
  }

  .discover-text p {
    font-size: 15px;
  }

  .discover-btn {
    font-size: 15px;
    padding: 8px 18px;
  }

  /* ---------------------------
     CTA Section
  --------------------------- */
  .cta-inner h2 {
    font-size: 26px;
  }

  .cta-inner p {
    font-size: 15px;
  }

  .cta-inner .btn-row a {
    padding: 10px 20px;
    font-size: 15px;
  }
}

/* ===========================================================
   DOWNLOAD PAGE
=========================================================== */

/* Main two-column layout */
.download-main {
  padding: 80px 60px 90px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

/* Left side: intro */
.download-intro h2 {
  font-size: 32px;
  margin: 0 0 14px;
}

.download-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.download-icon {
  width: 48px;
  height: 48px;
}

.download-lead {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.download-subtitle {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
}

.feature-icon {
  width: 18px;
  height: 18px;
}

/* Right side: form */
.download-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.download-icon-small {
  width: 24px;
  height: 24px;
}

.download-form h3 {
  margin: 0;
  font-size: 18px;
}

.download-note {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 10px 0 14px;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .download-main {
    padding: 60px 20px 70px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}