:root {
  --navy: #03315B;
  --navy-dark: #021F39;
  --green: #20B878;
  --green-dark: #159766;
  --light-green: #EAF9F3;
  --light-blue: #F5FAFD;
  --text: #5F6B76;
  --border: #DFE8ED;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: var(--navy);
  background: white;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}


/* TOP BAR */

.topbar {
  min-height: 60px;
  padding: 0 5%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-item {
  color: white;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.topbar-item i {
  color: var(--green);
  font-size: 17px;
}


/* HEADER */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #EDF1F3;
}

.navbar {
  max-width: 1200px;
  min-height: 92px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 190px;
  max-height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links > a,
.dropdown-title {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.nav-links > a:hover,
.dropdown-title:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.quote-btn {
  padding: 13px 18px;
  background: var(--green);
  color: white;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.menu-btn {
  display: none;
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 30px;
  cursor: pointer;
}


/* DROPDOWN */

.nav-dropdown {
  position: relative;
}

.dropdown-title {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-title i {
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  width: 220px;
  padding: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(3,49,91,0.12);
  display: none;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--green);
  background: var(--light-green);
}


/* HERO */

.business-hero {
  min-height: 650px;
  padding: 80px max(5%, 20px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;

  background:
    radial-gradient(
      circle at 80% 45%,
      rgba(32,184,120,0.16),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #F5FAFD,
      #FFFFFF
    );
}

.hero-content {
  max-width: 700px;
}

.hero-badge,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--light-green);
  color: #198D61;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
}

.hero-content h1 {
  margin: 24px 0 20px;
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1.08;
}

.hero-content h1 span {
  display: block;
  color: var(--green);
}

.hero-content > p {
  max-width: 650px;
  color: var(--text);
  font-size: 18px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 15px;
}

.primary-btn,
.secondary-btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
}

.primary-btn {
  background: var(--green);
  color: white;
}

.secondary-btn {
  background: white;
  color: var(--navy);
  border: 2px solid var(--border);
}

.hero-points {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.hero-points i {
  color: var(--green);
}


/* HERO VISUAL */

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-circle {
  width: 430px;
  height: 430px;
  max-width: 100%;
  border-radius: 50%;
  background: rgba(32,184,120,0.10);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-business-icon {
  width: 190px;
  height: 190px;
  border-radius: 48px;
  background: linear-gradient(
    135deg,
    var(--green),
    var(--green-dark)
  );
  color: white;
  font-size: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(32,184,120,0.28);
  transform: rotate(4deg);
}

.floating-card {
  position: absolute;
  min-width: 205px;
  padding: 14px 16px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(3,49,91,0.13);
  display: flex;
  align-items: center;
  gap: 11px;
}

.floating-card > span {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: var(--light-green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  font-size: 14px;
}

.floating-card small {
  color: var(--text);
  font-size: 11px;
}

.card-one {
  top: 40px;
  left: -30px;
}

.card-two {
  right: -35px;
  top: 170px;
}

.card-three {
  left: 5px;
  bottom: 25px;
}


/* SECTION HEADING */

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2 {
  margin: 18px 0 13px;
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.15;
}

.section-heading h2 span {
  color: var(--green);
}

.section-heading p {
  color: var(--text);
  font-size: 17px;
}


/* PRODUCT SECTION */

.products-section {
  padding: 105px 20px;
}

.products-grid {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  padding: 30px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(32,184,120,0.4);
  box-shadow: 0 20px 50px rgba(3,49,91,0.10);
}

.product-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 17px;
  background: var(--light-green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.product-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #E4EDF1;
  font-size: 28px;
  font-weight: 900;
}

.product-tag {
  position: absolute;
  top: 0;
  right: 18px;
  padding: 5px 10px;
  background: var(--navy);
  color: white;
  border-radius: 0 0 9px 9px;
  font-size: 9px;
  font-weight: 900;
}

.industrial-card .product-tag {
  background: var(--green);
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.product-card > p {
  min-height: 130px;
  color: var(--text);
  font-size: 13px;
}

.product-card ul {
  list-style: none;
  margin: 18px 0;
}

.product-card li {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 12px;
}

.product-card li i {
  color: var(--green);
  margin-right: 6px;
}

.product-card > a {
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.product-card > a i {
  margin-left: 5px;
}


/* BUSINESS TYPES */

.business-types-section {
  padding: 110px 20px;
  background: #F7FAFC;
}

.business-types-grid {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.business-type-card {
  padding: 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.business-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(3,49,91,0.08);
}

.business-type-card > i {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 17px;
  background: var(--light-green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.business-type-card h3 {
  margin-bottom: 8px;
}

.business-type-card p {
  color: var(--text);
  font-size: 14px;
}


/* RISK SECTION */

.risk-section {
  padding: 110px 20px;
  background: var(--navy);
}

.risk-wrapper {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 75px;
}

.risk-visual {
  min-height: 470px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.shield-design {
  width: 190px;
  height: 190px;
  border-radius: 50px;
  background: var(--green);
  color: white;
  font-size: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(32,184,120,0.22);
}

.risk-badge {
  position: absolute;
  bottom: 45px;
  padding: 15px 20px;
  background: white;
  color: var(--navy);
  border-radius: 14px;
  font-weight: 800;
}

.risk-badge i {
  color: var(--green);
  margin-right: 7px;
}

.dark-label {
  background: rgba(32,184,120,0.15);
  color: #55D5A1;
}

.risk-content h2 {
  margin: 20px 0;
  color: white;
  font-size: clamp(36px, 4vw, 51px);
  line-height: 1.13;
}

.risk-content h2 span {
  display: block;
  color: var(--green);
}

.risk-content > p {
  color: #C1CFD8;
}

.risk-points {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.risk-points > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.risk-points > div > i {
  color: var(--green);
  margin-top: 5px;
}

.risk-points span {
  color: #C1CFD8;
  font-size: 14px;
}

.risk-points strong {
  display: block;
  color: white;
  font-size: 16px;
}

.risk-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 21px;
  background: var(--green);
  color: white;
  border-radius: 12px;
  font-weight: 800;
}


/* PROCESS */

.process-section {
  padding: 110px 20px;
}

.process-grid {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  position: relative;
  padding: 30px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.process-card > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #E3EBF0;
  font-size: 28px;
  font-weight: 900;
}

.process-card > i {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--light-green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.process-card p {
  color: var(--text);
  font-size: 13px;
}


/* QUOTE */

.quote-section {
  padding: 110px 20px;
  background: #F7FAFC;
}

.quote-wrapper {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.quote-content h2 {
  margin: 20px 0;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.13;
}

.quote-content h2 span {
  display: block;
  color: var(--green);
}

.quote-content > p {
  color: var(--text);
}

.quote-help {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-help > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.quote-help i {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  background: var(--light-green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-help small,
.quote-help strong {
  display: block;
}

.quote-help small {
  color: var(--text);
}

.quote-form-box {
  padding: 35px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(3,49,91,0.09);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  color: var(--navy);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: var(--green);
  color: white;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
}


/* FAQ */

.faq-section {
  padding: 110px 20px;
}

.faq-container {
  max-width: 850px;
  margin: auto;
}

.faq-item {
  margin-bottom: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: none;
  background: white;
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-question i {
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--text);
  font-size: 14px;
}

.faq-item.active .faq-answer {
  max-height: 350px;
}

.faq-item.active .faq-question {
  color: var(--green);
}


/* CTA */

.final-cta {
  padding: 85px 20px;
}

.cta-box {
  max-width: 1150px;
  margin: auto;
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    #03315B,
    #064878
  );
  color: white;
  display: flex;
  align-items: center;
  gap: 25px;
}

.cta-icon {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 22px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
}

.cta-content {
  flex: 1;
}

.cta-content span {
  color: #56D7A2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.cta-content h2 {
  margin: 4px 0;
  font-size: 27px;
  line-height: 1.25;
}

.cta-content p {
  color: #C3D0D9;
}

.cta-actions {
  display: flex;
  gap: 10px;
}

.cta-primary,
.cta-secondary {
  padding: 14px 19px;
  border-radius: 12px;
  font-weight: 800;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-primary {
  background: var(--green);
  color: white;
}

.cta-secondary {
  background: white;
  color: var(--navy);
}


/* FOOTER */

.footer {
  padding-top: 60px;
  background: var(--navy-dark);
  color: white;
}

.footer-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-logo img {
  width: 190px;
  height: auto;
  display: block;
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0;
  color: #B9C6D0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer h3 {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: #B9C6D0;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green);
}

.footer-contact i {
  color: var(--green);
  margin-right: 8px;
}

.footer-bottom {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9DAFBD;
  font-size: 13px;
}


/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.20);
  z-index: 999;
}


/* TABLET */

@media (max-width: 1000px) {

  .nav-links {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    padding: 25px;
    background: white;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-title {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .business-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .business-types-grid {
    grid-template-columns: 1fr 1fr;
  }

  .risk-wrapper,
  .quote-wrapper {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-wrap: wrap;
  }

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


/* MOBILE */

@media (max-width: 600px) {

  .topbar {
    min-height: 60px;
    padding: 0 5%;
  }

  .topbar-item {
    font-size: 12px;
  }

  .navbar {
    min-height: 112px;
    padding: 0 20px;
  }

  .logo img {
    width: 230px;
    max-width: 48vw;
  }

  .nav-links {
    top: 112px;
  }

  .quote-btn {
    padding: 12px 14px;
    font-size: 13px;
  }

  .header-actions {
    gap: 12px;
  }

  .business-hero {
    min-height: auto;
    padding: 65px 22px 75px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content > p {
    font-size: 16px;
  }

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

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .products-section,
  .business-types-section,
  .risk-section,
  .process-section,
  .quote-section,
  .faq-section {
    padding: 75px 20px;
  }

  .products-grid,
  .business-types-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-card > p {
    min-height: auto;
  }

  .risk-visual {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form-box {
    padding: 25px 20px;
  }

  .final-cta {
    padding: 65px 20px;
  }

  .cta-box {
    padding: 30px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

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

  .footer-logo img {
    width: 190px;
  }
}