:root {
  --blue: #0c4ea2;
  --deep-blue: #063d88;
  --text: #111111;
  --muted: #50545c;
  --line: #d9dce2;
  --white: #ffffff;
  --soft: #f4f7fb;
  --header-height: 105px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(100% - 32px, 1300px);
  margin-inline: auto;
}

.section {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  text-transform: capitalize;
}

.section-heading h3 {
  margin: 28px 0 0;
  color: var(--blue);
  font-size: clamp(17px, 2vw, 27px);
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(34, 34, 34, 0.72);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  width: clamp(180px, 19vw, 200px);
  height: auto;
}

.site-header .logo img {
  filter: brightness(0) invert(1);
}

.logo-text {
  max-width: clamp(180px, 19vw, 260px);
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 800;
  line-height: 1.05;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: clamp(15px, 1.25vw, 17px);
}

.main-nav-list,
.language-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.language-list li {
    display: inline-flex;
}
.main-nav-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--white);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.language-menu {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.language-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav .language-list a {
  display: inline-flex;
  align-items: center;
}

.main-nav .language-list a::after {
  display: none;
}

.header-language-menu a {
  display: inline-flex;
  align-items: center;
}

.language-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    display: block;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.icon-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.icon-btn svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.4;
}

.play-btn {
  color: #000000;
  background: var(--white);
}

.play-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: currentColor;
    transform: translateX(2px);
}

.hotline-btn {
    min-height: 45px;
    padding: 10px 10px;
    border-radius: 10px;
    color: #000000;
    background: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    line-height: 0.95;
    white-space: nowrap;
}

.hotline-btn svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    stroke-width: 2.5;
}

.hotline-btn span {
  display: block;
  letter-spacing: 0;
}

.menu-btn {
  display: none;
}

.video-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.video-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.video-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #000000;
  background: var(--white);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.video-close svg {
  width: 24px;
  height: 24px;
}

body.modal-open {
  overflow: hidden;
}

.hero,
.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slide {
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 40px) 0 110px;
  color: var(--white);
  background-image: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.36)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  max-width: 760px;
  margin: 0 0 10px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.24;
}

.hero-content p {
  max-width: 1120px;
  margin: 0 0 8px;
  font-size: clamp(17px, 2.2vw, 27px);
  line-height: 1.45;
}

.hero-content strong {
  display: block;
  max-width: 1100px;
  font-size: clamp(17px, 2.2vw, 27px);
  font-weight: 800;
  line-height: 1.35;
}

.hero-slider.owl-theme .owl-dots {
  position: absolute;
  right: 0;
  bottom: 40px;
  left: 0;
}

.hero-slider.owl-theme .owl-dots .owl-dot span,
.partner-slider.owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 5px 6px;
  background: rgba(255, 255, 255, 0.65);
}

.hero-slider.owl-theme .owl-dots .owl-dot.active span,
.partner-slider.owl-theme .owl-dots .owl-dot.active span {
  background: var(--white);
}

.about-section {
  color: var(--blue);
  background:
    linear-gradient(rgba(230, 246, 255, 0.86), rgba(230, 246, 255, 0.86)),
    var(--about-bg, none) center / cover;
}

.about-copy {
  margin-top: 22px;
  text-align: center;
}

.about-copy p {
  margin: 0 auto 20px;
  max-width: 1120px;
  font-size: 18px;
  line-height: 1.85;
}

.about-copy strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 110px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.feature-item h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.products-section {
  background: var(--white);
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 52px;
}

.product-card {
  flex: 0 1 calc((100% - 90px) / 4);
  min-width: 0;
  padding: 15px 25px 25px;
  border: 1px solid #929292;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card h3 {
  min-height: 62px;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.product-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  margin-bottom: 18px;
}

.product-card p {
  margin: 0 0 8px;
  color: #242424;
  font-size: 14px;
  line-height: 1.35;
}

.product-card a,
.product-card .product-enquiry-btn {
  width: 100%;
  min-height: 68px;
  margin-top: auto;
  border: 1px solid #545454;
  border-radius: 4px;
  color: inherit;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-card a:hover,
.product-card .product-enquiry-btn:hover {
  color: var(--white);
  background: var(--blue);
}

.contact-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal.is-open {
  display: flex;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.contact-dialog h2 {
  margin: 0;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.2;
}

.contact-product-name {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: var(--soft);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.contact-close svg {
  width: 22px;
  height: 22px;
}

.contact-dialog .wpcf7 form {
  display: grid;
  gap: 14px;
}

.contact-dialog .wpcf7 label {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.contact-dialog .wpcf7 input:not([type="submit"]),
.contact-dialog .wpcf7 textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
}

.contact-dialog .wpcf7 textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-dialog .wpcf7-submit {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.project-section {
  background: var(--white);
}

.project-title {
  padding: 54px 16px 48px;
  text-align: center;
}

.project-title h2 {
    margin: 0;
    font-size: clamp(34px, 4.8vw, 55px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 55px 35px;
  color: var(--white);
  background-image: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.48)), var(--project-image);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-card h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.25;
}

.mission-section {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 44px;
}

.mission-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mission-text h3 {
  margin: 0 0 15px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.12;
}

.mission-text p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
}

.mission-text strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.35;
}

.partner-section {
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    var(--partner-bg, none) center / cover;
}

.partner-section .section-heading h2 {
  color: var(--white);
}

.partner-slider {
  margin-top: 34px;
}

.partner-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #cfcfcf;
  background: var(--white);
}

.partner-logo {
  min-height: 170px;
  padding: 22px 34px;
  border-right: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  background: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
}

.partner-logo img {
  width: 100%;
  max-width: 300px;
  height: 112px;
  object-fit: contain;
}

.partner-slider.owl-theme .owl-dots {
  margin-top: 26px;
  counter-reset: partner-dot;
}

.partner-slider.owl-theme .owl-dots .owl-dot span {
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.partner-slider.owl-theme .owl-dots .owl-dot span::before {
  counter-increment: partner-dot;
  content: counter(partner-dot);
  font-size: 19px;
}

.partner-slider.owl-theme .owl-dots .owl-dot.active span {
  color: #000000;
  background: var(--white);
}

.faq-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    var(--faq-bg, none) center / cover;
}

.faq-section .section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.faq-list {
  margin: 40px auto 0;
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.faq-item button {
  width: 100%;
  padding: 0;
  border: 0;
  color: #000000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.25;
}

.faq-item button svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 8px 0 0;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.35;
}

.site-footer {
  padding: 56px 0 34px;
  color: var(--white);
  background: #111827;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(260px, 1fr) minmax(130px, 0.5fr);
  gap: 34px;
  align-items: flex-start;
}

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

.site-footer .logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.site-footer .logo-text {
  max-width: 260px;
  font-size: 28px;
}

.footer-brand h3,
.footer-block h4 {
  margin: 22px 0 14px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.footer-block h4 {
  margin-top: 0;
  font-size: 18px;
}

.site-footer p,
.footer-contact,
.footer-links {
  margin: 0;
  padding: 0;
}

.site-footer p,
.footer-contact li,
.footer-links a,
.social-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact,
.footer-links {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 auto;
  color: var(--white);
  stroke-width: 2.2;
}

.footer-contact a,
.footer-links a,
.social-links a {
  transition: color 0.2s ease;
}

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

.footer-links li + li {
  margin-top: 9px;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.youtube-icon {
  border-color: #ff0000;
  background: #ff0000;
}

.youtube-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  transform: translateX(1px);
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
    font-size: 15px;
  }

  .logo img {
    width: 210px;
  }

  .header-actions {
    gap: 12px;
  }

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

  .hotline-btn {
    min-height: 45px;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
  }

  .hotline-btn svg {
    width: 22px;
    height: 22px;
  }

  .product-grid {
    gap: 36px;
  }

  .product-card {
    flex-basis: calc((100% - 72px) / 3);
  }

  .project-card {
    min-height: 300px;
    padding: 42px 28px;
  }

  .project-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    background: rgba(25, 32, 45, 0.82);
  }

  .header-inner {
    position: relative;
  }

  .logo {
    width: 172px;
  }

  .logo img {
    width: 100%;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: auto;
    left: 50%;
    width: 100vw;
    display: none;
    padding: 18px;
    border-radius: 0;
    background: rgba(17, 24, 39, 0.96);
    transform: translateX(-50%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 4px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .language-list a {
    padding: 0;
  }

  .header-actions {
    gap: 8px;
  }

  .menu-btn {
    display: inline-grid;
  }

  .hero,
  .hero-slider,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .hero-slide {
    min-height: 560px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-grid {
    gap: 28px;
  }

  .partner-logo {
    min-height: 130px;
    padding: 18px 28px;
  }

  .partner-logo img {
    height: 92px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 36px 0;
  }

  .container {
    width: min(100% - 24px, 1300px);
  }

  .header-inner {
    min-height: var(--header-height);
    gap: 10px;
  }

  .logo {
    width: 140px;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .icon-btn.play-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .play-btn svg {
    width: 18px;
    height: 18px;
  }

  .menu-btn svg {
    width: 35px;
    height: 35px;
  }

  .hotline-btn {
    min-width: 0;
    min-height: 36px;
    padding: 6px 8px;
    gap: 6px;
    font-size: 14px;
  }

  .hero,
  .hero-slider,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .hero-slide {
    min-height: 620px;
  }

  .hero-slide {
    padding: calc(var(--header-height) + 24px) 0 64px;
    background-position: center;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .section-heading h3 {
    margin-top: 16px;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .product-grid {
    gap: 16px;
    margin-top: 32px;
  }

  .product-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 12px 12px 16px;
  }

  .project-title {
    padding: 32px 12px 28px;
  }

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

  .project-card {
    min-height: 240px;
    padding: 32px 18px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .mission-grid img {
    height: 230px;
  }

  .mission-grid img:nth-of-type(2) {
    order: 4;
  }

  .mission-text.text-right {
    text-align: left;
  }

  .mission-text h3 {
    font-size: 30px;
  }

  .mission-text p,
  .mission-text strong {
    font-size: 18px;
  }

  .partner-page {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-logo {
    min-height: 94px;
    padding: 4px 6px;
    border-right: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
  }

  .partner-logo img {
    height: 74px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand h3,
  .footer-block h4 {
    margin: 16px 0 10px;
  }

  .faq-list {
    margin-top: 28px;
  }

  .contact-dialog {
    padding: 26px 18px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 20px, 1300px);
  }

  .section {
    padding: 30px 0;
  }

  .header-actions .hotline-btn {
    display: none;
  }

  .main-nav {
    right: auto;
    left: 50%;
  }

  .hero,
  .hero-slider,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .hero-slide {
    min-height: 560px;
  }

  .hero-slide {
    padding-bottom: 56px;
  }

  .hero-content h2 {
    font-size: 25px;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }

  .product-card {
    flex-basis: 100%;
    width: 100%;
    padding: 12px;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
  }

  .product-card h3 {
    min-height: 0;
  }

  .product-card img {
    height: 150px;
  }

  .project-title h2 {
    font-size: 28px;
  }

  .partner-page {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-logo {
    min-height: 82px;
    padding: 2px;
  }

  .partner-logo img {
    height: 68px;
  }

  .faq-item {
    padding: 16px 0;
  }

  .contact-modal {
    padding: 14px;
  }

  .contact-dialog .wpcf7 form {
    gap: 10px;
  }

  .contact-product-name {
    margin-bottom: 14px;
  }

  .faq-item button span,
  .faq-item p {
    font-size: 16px;
  }

  .footer-brand h3 {
    font-size: 18px;
  }

  .footer-contact li,
  .footer-links a,
  .social-links a {
    font-size: 14px;
  }
}
