/* ============================================================
   FONTS — Clash Display (local)
   ============================================================ */
@font-face {
  font-family: 'Clash Display';
  src: url('../Clash Display/Fonts/WEB/fonts/ClashDisplay-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../Clash Display/Fonts/WEB/fonts/ClashDisplay-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../Clash Display/Fonts/WEB/fonts/ClashDisplay-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../Clash Display/Fonts/WEB/fonts/ClashDisplay-Semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../Clash Display/Fonts/WEB/fonts/ClashDisplay-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,700,400&display=swap');

/* ============================================================
   GLOBALS
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

:root {
  --yellow: #FEC901;
  --black: #000000;
  --white: #fff;
  --gray: #f5f5f5;
  --accent: #ffb800;
  --h-font-size: 80px;
}

button { outline: none; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; background: transparent; }

body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--black); scroll-margin-block: 0; line-height: 1.7; }

th, td { font-family: 'Poppins', sans-serif; }

h1, h2, h3, h4, h5, h6 { font-family: 'Clash Display', sans-serif; font-weight: 800; font-size: var(--h-font-size); line-height: 1.1; }

p { font-size: 24px; letter-spacing: 1.4px; }
strong { font-weight: 800; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; position: relative; }

input, textarea { font-family: 'Poppins', sans-serif; }

@media (min-width: 1600px) {
  .container { max-width: 1600px; }
}
@media (max-width: 1600px) {
  h1, h2, h3, h4, h5, h6 { font-size: calc(var(--h-font-size) - 20px) !important; }
  p { font-size: 20px; }
}
@media (max-width: 1024px) {
  .container { max-width: 800px; }
}
.swiper-slide { width: fit-content; }
@media (max-width: 600px) {
  h1, h2, h3, h4, h5, h6 { font-size: calc(var(--h-font-size) - 20px) !important; }
  p { font-size: 18px; }
}
@media (max-width: 400px) {
  h1, h2, h3, h4, h5, h6 { font-size: calc(var(--h-font-size) - 30px) !important; }
  p { font-size: 15px; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header { background: var(--black); color: var(--white); border-top: none; }
.header__container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1600px; margin: 0 auto; padding: 0 80px; height: 147px; position: relative;
}
.header__nav { flex: 1; }
.header__list { display: flex; gap: 120px; justify-content: center; align-items: center; }
.header__subnavBtn { background: var(--black); color: var(--white); font-weight: 600; font-size: 24px; transition: color .2s; }
.header__list li a { color: var(--white); font-weight: 600; font-size: 24px; transition: color .2s; }
.header__list li a:hover { text-decoration: underline; }
.header__subnav { position: relative; }
.header__subnavContent {
  display: none; position: absolute; background-color: rgb(0,0,0); border: 1px solid #fff;
  width: 250px; z-index: 5; padding: 20px; font-weight: 600;
  flex-direction: column; gap: 10px;
}
.header__subnavContent a { color: white; text-decoration: none; font-size: 20px !important; }
.header__subnav:hover .header__subnavContent { display: flex; }

@media (max-width: 1600px) { .header__list { gap: 50px; } }
@media (max-width: 1024px) {
  .header__container { height: 100px; padding: 30px; }
  .header__container img { width: 150px; }
  .header__nav { display: none; }
}

/* Burger */
.burger span { width: 30px; height: 3px; background: var(--white); display: block; margin: 5px 0; position: relative; z-index: 7; cursor: pointer; }
.burger { z-index: 7; position: relative; }
.burger__navWrapper {
  position: absolute; top: 0; left: 0; width: 100%; height: 200vh;
  background: var(--black); z-index: -1; transition: all .2s ease-in-out; opacity: 0;
}
.burger__navWrapper.active { z-index: 6; opacity: 1; }
.burger__list { margin-top: 30px; display: flex; gap: 24px; justify-content: center; align-items: center; flex-direction: column; }
.burger__list li a { color: var(--white); font-weight: 500; font-size: 24px; transition: color .2s; }
@media (min-width: 1025px) { .burger { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 48px 0; min-height: 900px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; left: 50%; top: 0; width: 100vw; height: 100%;
  transform: translateX(-50%); background: rgba(0,0,0,0.692); z-index: 3;
}
.hero > * { position: relative; z-index: 3; }
.hero__container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero__content { color: var(--white); margin-top: 80px; flex: 1; }
.hero__content h1 { font-size: var(--h-font-size); font-weight: 800; max-width: 884px; margin-bottom: 30px; }
.hero__content p { font-size: 30px; margin-bottom: 32px; max-width: 804px; font-weight: 600; }
.hero__stats { width: 100%; margin-top: 100px; display: flex; justify-content: space-between; }
.hero__stats div { position: relative; font-weight: 500; }
.hero__video { position: absolute; top: 0; left: 0; width: 100vw; height: 100%; object-fit: cover; z-index: 2; }
.hero__stats span { display: block; font-size: 64px; font-weight: 700; color: var(--white); }
.hero__stats p { font-weight: 500; }

@media (max-width: 1600px) {
  .hero__content p { max-width: 630px; font-size: 20px; }
  .hero__stats div { max-width: 300px; }
}
@media (max-width: 1024px) {
  .hero__stats { flex-direction: column; gap: 40px; }
  .hero__stats div { width: 100%; }
  .hero__container { padding-left: 40px; padding-right: 80px; }
}
@media (max-width: 604px) {
  .hero { padding: 0; }
  .hero__stats { flex-direction: column; gap: 40px; }
  .hero__stats div { width: 100%; }
  .hero__container { padding-left: 20px; padding-right: 80px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  width: 320px; height: 65px; background: var(--yellow); color: var(--black);
  padding-left: 25px; font-weight: 700; border-radius: 15px;
  transition: background .2s, color .2s;
  justify-content: flex-start; align-items: center;
  font-size: 20px; display: inline-flex; margin-top: 30px; position: relative; z-index: 2;
}
.btn span { font-weight: 600; margin-left: 12px; }
.btn:hover { background: var(--black); color: var(--yellow); }
.btn:hover svg path { fill: var(--yellow); }

.btn--contactUs { width: 277px; height: 85px; padding-left: 0; align-items: center; justify-content: center; }
.btn--contactUs span { font-size: 32px; font-weight: 800; margin-left: 0; }
@media screen and (max-width: 1600px) {
  .btn--contactUs { width: 267px; height: 70px; padding-left: 0; align-items: center; justify-content: center; }
  .btn--contactUs span { font-size: 25px; font-weight: 800; margin-left: 0; }
}

.btn--large {
  padding: 0; margin: 0; width: 90%; height: 55px;
  display: flex; justify-content: center; align-items: center; gap: 14px;
  background: var(--yellow); border-radius: 15px;
}
.btn--large span { font-size: 20px; margin-left: 0; font-weight: 700; }

@media (max-width: 600px) {
  .btn { padding: 10px 20px; font-size: 1rem; justify-content: center; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--yellow); padding: 48px 0 90px; font-size: 24px; }
.aboutContainer h2 { font-weight: 800; margin-bottom: 110px; text-align: center; }
.aboutContainerContent { display: flex; gap: 300px; justify-content: center; }
.aboutContainer p { font-weight: 400; }
.aboutContainer span { font-size: 45px; font-weight: 700; font-style: italic; }
.aboutContainerContent p, .aboutContainerContent ul, .aboutContainerContent img { margin-top: 20px; }
.aboutContainerLeftItem { white-space: nowrap; margin-bottom: 32px; max-width: 648px; }
.aboutContainerLeftItem:nth-child(2) p { font-size: 20px; font-weight: 500; }
.aboutLocation { display: flex; align-items: center; gap: 10px; }
.aboutContainerContentLeft { position: relative; }
.aboutContainerContentLeft::after {
  content: ""; position: absolute; right: -18%; top: -35.5px;
  width: 1px; height: 110%; background: var(--black);
}
.aboutContainerContentLeft::before {
  content: ""; display: inline; position: absolute; right: -19%; top: -72px;
  width: 1px; height: 300px; transform: rotate(90deg); background: var(--black);
}
.aboutContainerRightItem ul { white-space: nowrap; display: flex; flex-direction: column; gap: 70px; }
.aboutContainerRightItem ul li::before {
  content: ""; display: inline-block;
  background: url("../about/check.svg") no-repeat center center / contain;
  width: 36px; height: 36px; position: relative; top: 10px;
}
@media (max-width: 1600px) {
  .aboutContainerContent { gap: 250px; }
  .aboutContainerContentLeft::after { right: -22%; }
  .aboutContainerContentLeft::before { right: -22%; }
}
@media (max-width: 1400px) {
  .aboutContainerContent { flex-direction: column; justify-content: center; align-items: center; gap: 50px; }
  .aboutContainerContentLeft::before, .aboutContainerContentLeft::after { content: none; }
}
@media (max-width: 600px) {
  .aboutContainer h2 { margin-bottom: 70px; }
  .aboutContainer span { font-size: 35px; }
  .aboutContainerContent p { font-size: 13px; }
  .aboutContainer li { font-size: 15px; }
  .aboutLocation p { font-size: 15px; }
  .aboutContainer ul { gap: 50px; }
  .aboutContainerRightItem { padding: 0; margin-right: 35px; }
  .aboutContainerLeftItem:nth-child(2) p { font-size: 15px; }
}
@media (max-width: 400px) {
  .aboutContainer span { font-size: 30px; }
  .aboutContainerContent p { font-size: 10px; }
  .aboutContainer li { font-size: 13px; }
  .aboutLocation p { font-size: 13px; }
  .aboutContainerLeftItem:nth-child(2) p { font-size: 13px; }
}

/* ============================================================
   WORKS
   ============================================================ */
.works {
  background: var(--black); color: var(--white); padding: 48px 0; position: relative;
  overflow: hidden; max-height: 1160px; display: flex; flex-direction: column;
}
.works::before, .works::after {
  content: ''; position: absolute; width: 280%; height: 100px;
  background: var(--yellow); transform: rotate(-54deg); left: -60%; z-index: 0;
}
.works::before { top: 0; }
.works::after { top: 250px; }
.works h2 {
  font-size: calc(var(--h-font-size) - 10px); font-weight: 800;
  margin: 62px 0; text-align: start; color: var(--yellow); position: relative; z-index: 1;
}
.worksContainer { margin-left: 6%; position: relative; z-index: 1; }
.worksContainerItemImage { width: 800px; height: 800px; position: relative; cursor: pointer; }
.worksContainerItemImage img:nth-child(1) { width: 100%; height: 100%; object-fit: cover; }
.worksContainerItemImage::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.worksContainerItemLogo { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 6; width: 100px; height: 100px; }
.worksContainerNavigation {
  position: relative; width: 90%; display: flex; justify-content: space-between;
  align-items: center; margin-top: 10px;
}
.works-next, .works-prev { background: none; position: relative; }
.works-next { transform: rotate(180deg); }
.works-prev { left: 0; }
.works-next.disabled, .works-prev.disabled { opacity: 0.5; pointer-events: none; }

@media (max-width: 1750px) { .worksContainerItemImage { width: 700px; height: 700px; } }
@media (max-width: 1600px) { .worksContainerItemImage { width: 670px; height: 670px; } }
@media (max-width: 1500px) { .worksContainerItemImage { width: 580px; height: 580px; } }
@media (max-width: 1250px) {
  .worksContainerItemImage { width: 600px; height: 600px; }
  .works::before, .works::after { content: none; }
}
@media (max-width: 800px) {
  .worksContainer { margin-left: 0; padding-left: 60px; }
}
@media (max-width: 550px) {
  .worksContainerNavigation { width: 100%; }
  .worksContainerItemImage { width: 380px; height: 380px; }
  .worksContainer { margin-left: 0; padding-left: 10px; }
  .works-next { right: 30px; transform: rotate(180deg); }
}

/* ============================================================
   WHY
   ============================================================ */
.why {
  display: flex; justify-content: space-between;
  background-color: var(--yellow); height: 100vh; min-height: 900px;
}
.whyContainerSlider { width: 50%; height: 100vh; min-height: 900px; }
.whyContainerSlider .swiper, .whyContainerSlider .swiper-wrapper { height: 100%; }
.whyContainerContent h2 { font-weight: 800; margin-bottom: 45px; }
.whyContainerContent { position: relative; padding: 40px 40px 0 80px; width: 50%; }
.whyQuoteTop { font-size: 100px; font-weight: 800; color: var(--black); margin-left: 90%; }
.whyQuoteBottom { font-size: 100px; font-weight: 800; color: var(--black); }
.whyContainerItemImage { height: 100vh; width: 100%; min-height: 900px; }
.whyContainerItemImage img { object-fit: cover; width: 100%; height: 100%; }
.whyPaginationContainer { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10; }
.whyPagination { display: flex; align-items: center; justify-content: center; gap: 10px; }
.whyPagination .bullet { width: 10px; height: 10px; border-radius: 50%; background: var(--white); cursor: pointer; transition: background 0.3s; }
.whyPagination .bullet.active { background: var(--yellow); }
.why-prev, .why-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; z-index: 10;
}
.why-prev { left: 20px; }
.why-next { right: 20px; transform: translateY(-50%) rotate(180deg); }
.why-prev.disabled, .why-next.disabled { opacity: 0.5; pointer-events: none; }
@media (max-width: 1000px) {
  .why { flex-direction: column-reverse; justify-content: center; align-items: center; height: auto; overflow: hidden; }
  .whyContainerSlider { width: 100%; }
  .whyContainerContent { width: 100%; }
}
@media (max-width: 600px) {
  .whyContainerContent { padding-left: 30px; }
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients { margin: 70px 0 80px; }
.clients h2 { text-align: center; font-size: calc(var(--h-font-size) - 10px); color: var(--yellow); margin-bottom: 60px; }
.clientsSwiper .swiper-slide { display: flex; justify-content: center; align-items: center; }
.clientsImageContainer { height: 130px; display: flex; align-items: center; justify-content: center; }
.clientsImageContainer img { max-height: 100%; width: auto; object-fit: contain; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: url("../problem/problem.jpg") no-repeat center center;
  background-size: cover; height: 550px; position: relative; z-index: 1;
  display: flex; padding-top: 130px; align-items: center; flex-direction: column;
}
.problem::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: -1;
}
.problemCardContainer { display: flex; gap: 20px; }
.problemCardImage {
  background-color: var(--yellow); padding: 23px; width: 120px; height: 120px;
  border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-top: 10px;
}
.problem h2 { color: var(--white); text-align: center; }
.problemCard {
  position: relative; background: var(--black); border-radius: 10px; width: 355px;
  display: flex; flex-direction: column; align-items: center;
  bottom: -170px; left: 0; padding: 20px; text-align: center;
}
.problemCard span { font-size: 30px; font-weight: 800; color: var(--white); margin: 20px 0; width: 200px; }
.problemCard p { font-size: 24px; color: var(--white); width: 300px; }
.problemCard:hover { background: var(--yellow); transform: translate(0,-20px); transition: all .5s ease; }
.problemCard:hover span, .problemCard:hover p { color: var(--black); }
.problemCard:hover svg path { stroke: var(--yellow); }
.problemCard:nth-child(4):hover svg path { fill: var(--yellow); }
.problemCard:hover .problemCardImage { background-color: var(--black); }
@media (max-width: 1550px) {
  .problemCard { width: 300px; }
  .problemCard span { font-size: 25px; }
  .problemCard p { font-size: 17px; padding: 10px; }
}
@media (max-width: 1300px) {
  .problemCard { width: 250px; }
  .problemCard span { font-size: 20px; }
  .problemCard p { font-size: 15px; padding: 0 40px; }
  .problemCardImage { width: 100px; height: 100px; }
}
@media (max-width: 1000px) {
  .problemCardContainer { flex-wrap: wrap; justify-content: center; }
  .problemCardImage { width: 90px; height: 90px; }
  .problemCard:hover { transform: translate(0,0); }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  margin-top: 600px; display: flex; flex-direction: column; gap: 100px;
  background-image: url("../OurProcessBackground.svg");
  background-repeat: no-repeat; background-position: 0 0; padding-bottom: 230px;
}
.process h2 { margin-top: 120px; text-align: center; }
.pipeline { display: flex; max-width: 1800px; margin: 0 auto; gap: 80px; flex-wrap: wrap; justify-content: center; }
.pipelineItem {
  width: 489px; background-color: var(--white); border-radius: 15px;
  padding: 20px 30px 30px; box-shadow: 0 0 8px 0 rgba(0,0,0,0.25); position: relative;
}
.pipelineItem:hover { background-color: var(--yellow); transition: all .5s ease; }
.pipelineItem:hover span { color: var(--black); }
.pipelineItem:nth-child(1)::before,
.pipelineItem:nth-child(2)::before,
.pipelineItem:nth-child(4)::before,
.pipelineItem:nth-child(5)::before {
  content: ""; background-image: url("../arrow2.svg"); background-size: contain;
  background-repeat: no-repeat; background-position: center; width: 70px; height: 70px;
  top: 65px; position: absolute; right: -78px;
}
.pipelineItem span { font-size: 30px; font-weight: 800; color: var(--yellow); }
.pipelineItem p { font-size: 20px; width: 100%; color: var(--black); }
@media (max-width: 1600px) { .pipelineItem { width: 400px; } }
@media (max-width: 1359px) {
  .pipelineItem:nth-child(1)::before,
  .pipelineItem:nth-child(2)::before,
  .pipelineItem:nth-child(4)::before,
  .pipelineItem:nth-child(5)::before { content: none; }
  .pipelineItem:nth-child(odd)::before {
    content: ""; background-image: url("../arrow2.svg"); background-size: contain;
    background-repeat: no-repeat; background-position: center; width: 70px; height: 70px;
    top: 65px; position: absolute; right: -78px;
  }
}
@media (max-width: 900px) {
  .pipelineItem:nth-child(odd)::before { content: none; }
  .process { margin-top: 700px; }
  .pipelineItem { width: 370px; }
}
@media (max-width: 550px) {
  .process { margin-top: 1500px; }
  .process h2 { font-size: 40px !important; }
}

/* ============================================================
   DELIVER
   ============================================================ */
.deliver {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--black); color: var(--white); padding: 100px 0 200px; gap: 100px;
}
.deliver h2 { color: var(--yellow); }
.solutionTable {
  max-width: 1600px; margin: 0 auto; border-collapse: collapse;
  text-align: center; background-color: #000; color: #fff; overflow: hidden;
}
.solutionTable th { padding: 70px; font-size: 30px; color: var(--yellow); border-bottom: 1px solid #fff; }
.solutionTable td { font-size: 25px; }
.solutionTable td:nth-child(1), .solutionTable td:nth-child(2),
.solutionTable th:nth-child(1), .solutionTable th:nth-child(2) {
  border-right: 1px solid #fff; width: 520px; padding: 70px;
}
.solutionTable td:hover { background-color: var(--yellow); color: var(--black); transition: all .3s ease; }
.solutionTable tr:nth-child(even) { background-color: var(--white); color: var(--black); }
.solutionTable tr:nth-child(even) td:nth-child(1),
.solutionTable tr:nth-child(even) td:nth-child(2) { border-right: 1px solid #000; }
.tableWrapper { overflow-x: auto; width: 100%; }
@media (max-width: 1600px) {
  .solutionTable { max-width: 1400px; }
  .solutionTable th { font-size: 25px; padding: 50px; }
  .solutionTable td { padding: 30px; font-size: 20px; }
  .solutionTable td:nth-child(1), .solutionTable td:nth-child(2),
  .solutionTable th:nth-child(1), .solutionTable th:nth-child(2) { width: 480px; }
}
@media (max-width: 700px) {
  .solutionTable th { font-size: 25px; padding: 50px; text-align: center; }
  .deliver h2 { text-align: center; }
  .solutionTable td { padding: 17px 50px 17px 25px; font-size: 17px; }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background-image: url("../cta.jpg"); background-size: cover;
  background-position: center; background-repeat: no-repeat;
  width: 100%; display: flex; align-items: center; justify-content: center;
  position: relative; gap: 70px; flex-direction: column;
  padding: 100px 0;
}
.cta::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.88);
}
.cta h3 { color: var(--white); max-width: 1200px; position: relative; z-index: 2; text-align: center; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { padding: 100px 0; overflow: hidden; display: flex; justify-content: center; }
.founderNext { background-color: var(--black); align-items: start; }
.founderContent { max-width: 750px; margin-left: 100px; display: flex; flex-direction: column; gap: 25px; height: 690px; }
.founderContent--white { margin-left: 0; width: 730px; margin-top: 0; justify-content: center; color: var(--white); text-align: left; }
.founderContent--white p { color: var(--white); }
.founderContent p { max-width: 750px; height: 420px; font-size: 14px; letter-spacing: 2px; }
.founderContent h3 { white-space: nowrap; font-size: 68px; line-height: 1.4; letter-spacing: .02em; }
.founderContent h3 strong { color: var(--yellow); }
.founderContent h2 { white-space: nowrap; font-size: 30px; }
.founderFrame { position: relative; display: inline-block; width: 100%; margin: 0 auto; padding: 30px; }
.founderFrame img { min-height: 660px; object-fit: cover; width: 600px; }
.founderFrame::before {
  content: ""; position: absolute; top: 0; left: 0; width: 80px; height: 80px;
  border-top: 8px solid var(--yellow); border-left: 8px solid var(--yellow); z-index: 1;
}
.founderFrame::after {
  content: ""; position: absolute; bottom: 0; right: 0; width: 80px; height: 80px;
  border-bottom: 8px solid #ffd700; border-right: 8px solid #ffd700; z-index: 1;
}
@media (max-width: 1700px) {
  .founderFrame img { width: 600px; }
  .founderContent h3 { font-size: 50px !important; }
  .founderContent h2 { white-space: nowrap; font-size: 28px !important; }
  .founderContent p { max-width: 570px; font-size: 12.2px; letter-spacing: 2px; }
  .founderContent { padding: 20px 0 0 40px; margin-left: 20px; }
}
@media (max-width: 1150px) {
  .founder { flex-direction: column; }
  .founderNext { flex-direction: column-reverse; }
  .founderFrame { width: 650px; margin-left: 10px; }
  .founder { justify-content: center; align-items: center !important; }
  .founderContent {
    margin-left: -70px; padding: 10px 0 0; display: flex;
    flex-direction: column; align-items: center; justify-content: center;
  }
}
@media (max-width: 700px) {
  .founderFrame { width: 90%; margin-left: 50%; transform: translateX(-50%); }
  .founderContent {
    align-items: stretch; padding-left: 5%; margin: -20px 0 150px;
  }
  .founderContent h3 { font-size: 37px !important; padding-left: 14%; }
  .founderContent h2 { white-space: nowrap; font-size: 23px !important; padding-left: 14%; }
  .founderContent p { font-size: 12px; padding: 10px 0 10px 14%; }
  .founder { align-items: flex-start !important; }
  .founderNext .founderContent p { font-size: 14px; width: 52%; padding-left: 1%; }
  .founderNext .founderContent h2,
  .founderNext .founderContent h3 { padding-left: 1%; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { margin-top: 50px; text-align: center; margin-bottom: 100px; }
.services p { font-size: 20px; font-style: italic; font-weight: 400; color: var(--yellow); margin-bottom: 100px; }
.servicesDescription { margin-top: 20px; }
.servicesGrid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.serviceCard {
  width: 520px; height: 350px; border-radius: 30px; box-shadow: 0 0 8px 0 #113a3c3f;
  position: relative; overflow: hidden; padding: 50px 25px 0; text-align: left;
}
.serviceCardContent { width: 300px; display: flex; flex-direction: column; gap: 10px; }
.serviceCard .serviceCardContent span { display: block; font-size: 30px; font-weight: 800; white-space: wrap; }
.serviceCard p { font-size: 20px; font-weight: 400; color: var(--black); position: relative; width: 320px; }
.serviceCard::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 30px;
  background-color: var(--yellow);
}
.serviceCard button { position: absolute; left: 50%; transform: translateX(-50%); bottom: 25px; }
@media (max-width: 1600px) {
  .serviceCard .serviceCardContent span { font-size: 25px; }
  .serviceCard p { font-size: 15px; }
  .serviceCard { width: 460px; height: 310px; }
  .serviceCard button { height: 50px; }
  .serviceCard button span { font-size: 17px; }
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  display: flex; justify-content: space-between;
  background-color: var(--yellow); height: 100vh; min-height: 1000px;
}
.partnersContainerSlider { width: 50%; height: 100vh; min-height: 1000px; position: relative; }
.partnersContainerSlider .swiper, .partnersContainerSlider .swiper-wrapper { height: 100%; }
.partnersContainerItemImage { height: 100vh; min-height: 1000px; }
.partnersContainerItemImage img { object-fit: cover; width: 100%; height: 100%; }
.partnersPaginationContainer { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10; }
.partnersPagination { display: flex; align-items: center; justify-content: center; gap: 10px; }
.partnersPagination .bullet { width: 10px; height: 10px; border-radius: 50%; background: var(--white); cursor: pointer; transition: background 0.3s; }
.partnersPagination .bullet.active { background: var(--yellow); }
.partners-prev, .partners-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; z-index: 10;
}
.partners-prev { left: 20px; }
.partners-next { right: 20px; transform: translateY(-50%) rotate(180deg); }
.partners-prev.disabled, .partners-next.disabled { opacity: 0.5; pointer-events: none; }
.partnersFrame { position: relative; display: inline-block; margin: 0 auto; padding: 50px; }
.partnersFrame::before {
  content: ""; position: absolute; top: 0; left: 0; width: 80px; height: 80px;
  border-top: 8px solid #fff; border-left: 8px solid #fff; z-index: 1;
}
.partnersFrame::after {
  content: ""; position: absolute; bottom: 0; right: 0; width: 80px; height: 80px;
  border-bottom: 8px solid #fff; border-right: 8px solid #fff; z-index: 1;
}
.partnersFrame ul { position: relative; z-index: 2; margin: 0; padding: 10px; }
.partnersLeft { width: 50%; position: relative; background: var(--yellow); display: flex; justify-content: center; }
.partnersLeftContent { width: 700px; position: relative; height: 700px; margin-top: 100px; }
.partnersLeftContent ul { font-size: 22px; }
.partnersLeftContent ul li { margin: 40px 0 34px 72px; position: relative; }
.partnersLeftContent ul li::before {
  content: ""; position: absolute; left: -55px; margin-top: 5px;
  width: 47px; height: 47px;
  background: url("../checkFilled.svg") no-repeat center center;
}
@media (min-width: 1900px) {
  .partners, .partnersContainerSlider, .partnersContainerItemImage { min-height: 1100px; }
}
@media (max-width: 1800px) {
  .partnersFrame { margin: 30px; }
  .partnersLeftContent ul { font-size: 18px; }
  .partnersLeftContent ul li { margin: 35px 0 17px 60px; }
}
@media (max-width: 1200px) {
  .partnersLeftContent { width: 100%; padding: 30px; margin-top: 0; height: auto; }
  .partnersLeft { padding: 30px; }
  .partners {
    flex-direction: column-reverse; justify-content: center; align-items: center;
    height: auto; overflow: hidden;
  }
  .partnersContainerSlider { width: 100%; height: 50vh; min-height: 500px; }
  .partnersContainerItemImage { height: 50vh; min-height: 500px; }
  .partnersLeft { width: 100%; padding: 30px; }
}
@media (max-width: 600px) {
  .partnersLeft { padding: 0; }
  .partnersLeftContent { padding: 0; }
}
@media (max-width: 450px) {
  .partnersLeftContent ul li { margin-left: 55px; }
  .partnersLeftContent ul li::before { left: -45px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contactContainer {
  background: url("../contact/contact.jpg") no-repeat center center;
  background-size: cover; width: 100%; position: relative; z-index: 1;
  padding: 113px 0;
}
.contactContainer::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.86);
}
.contactContainer h3 {
  padding-bottom: 100px; font-size: 65px; font-weight: 800; line-height: 1.1;
  color: var(--white); text-align: center; position: relative; z-index: 2;
}
.contactWrapper {
  display: flex; background: #fff; border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1); padding: 120px 32px 100px;
  max-width: 1600px; margin: 0 auto; gap: 48px; position: relative; z-index: 2;
}
.contactLeft { flex: 1; display: flex; flex-direction: column; margin-left: 30px; gap: 50px; }
.contactTitle { font-size: 65px; font-weight: 800; line-height: 1.1; }
.contactSubtitle { font-size: 30px; font-weight: 500; margin-bottom: 16px; }
.contactInfoItem { display: flex; align-items: center; gap: 30px; font-size: 20px; font-weight: 500; }
.contactRight { flex: 1; display: flex; align-items: center; justify-content: center; }
.contactForm {
  width: 90%; background: #fff; border-radius: 18px; border: 1px solid #bbb;
  padding: 32px 24px 24px; display: flex; flex-direction: column; gap: 30px;
}
.contactLabel { font-size: 18px; font-weight: 500; margin-bottom: 2px; color: #222; }
.contactInput, .contactTextarea {
  border: none; border-bottom: 1px solid #bbb; padding: 8px 4px;
  font-size: 1rem; background: transparent; outline: none;
}
.contactTextarea { resize: none; }
.contactButton {
  margin: 16px 0 30px; background: #000; color: #FFD600;
  font-size: 25px; font-weight: 500; border: none; border-radius: 10px;
  padding: 12px 0; cursor: pointer; transition: background .2s;
}
.contactButton:hover { background: #222; }
.contactLeft a:hover { text-decoration: underline; }
@media (max-width: 1600px) {
  .contactWrapper { max-width: 1300px; }
  .contactTitle { font-size: 50px !important; }
  .contactSubtitle { font-size: 20px; }
  .contactInfoItem { font-size: 18px; }
  .contactForm { gap: 25px; }
  .contactButton { font-size: 20px; }
}
@media (max-width: 768px) {
  .contactContainer h3 { font-size: 48px; padding: 50px 0; }
  .contactWrapper { flex-direction: column; padding: 60px 16px; }
  .contactLeft { margin-left: 0; text-align: center; gap: 30px; }
  .contactTitle { font-size: 40px; }
  .contactSubtitle { font-size: 24px; }
  .contactInfoItem { justify-content: center; }
  .contactForm { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  width: 100%; background: #FFD600; display: flex; justify-content: center;
  padding: 100px 64px; gap: 52px; font-size: 18px; color: #000;
}
.footer__container { width: 1600px; display: flex; flex-direction: row; gap: 200px; }
.footer__colLogo { display: flex; flex-direction: column; align-items: flex-start; min-width: 180px; margin-right: 32px; }
.footer__colNav {
  display: flex; flex-direction: column; gap: 34px; min-width: 140px;
  padding: 0 52px; height: 280px; border-left: 2px solid #222; white-space: nowrap;
}
.footer__colNav:first-of-type { border-left: none; }
.footer__colContact {
  display: flex; flex-direction: column; gap: 34px; min-width: 200px;
  padding-left: 32px; border-left: 2px solid #222; white-space: nowrap;
}
.footer__colContact a:hover { text-decoration: underline; }
.footer__contactTitle { font-weight: 600; margin-bottom: 4px; }
.footer__phone { font-weight: 600; font-size: 20px; margin-bottom: 8px; }
.footer__socials { display: flex; gap: 12px; margin-bottom: 18px; align-items: center; }
.footer__address { font-size: 15px; margin-top: 8px; font-weight: 600; }
.footer__colNav a { font-size: 23px; color: #000; text-decoration: none; font-weight: 600; transition: text-decoration .2s; }
.footer__colNav a:hover { text-decoration: underline; }
@media (max-width: 1600px) {
  .footer__colNav a { font-size: 20px; }
  .footer__container { width: 1300px; gap: 120px; }
  .footer__colLogo svg { width: 220px; }
}
@media (max-width: 1368px) {
  .footer__colLogo svg { width: 200px; }
  .footer__container { flex-direction: column; align-items: center; gap: 50px; }
  .footer__colLogo { align-items: center; margin-right: 0; }
  .footer__colNav, .footer__colContact {
    border-left: none; padding: 0; align-items: center; height: auto;
  }
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.videoModal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  display: flex; justify-content: center; align-items: center;
  z-index: 9999; visibility: hidden; opacity: 0;
  transition: opacity .3s, visibility .1s;
}
.videoModal.show { visibility: visible; opacity: 1; }
.videoBackdrop {
  width: 100%; height: 180vh; overflow: hidden;
  background-color: rgba(0,0,0,0.003); backdrop-filter: blur(10px);
  position: absolute; top: 0; left: 0; transition: all .8s ease-in-out;
}
.videoModal video {
  width: 70%; position: relative; z-index: 5; border-radius: 15px;
  transition: all .3s ease-in-out; background-color: rgba(0,0,0,0.51);
}
@media screen and (max-width: 768px) {
  .videoModal video { width: 90%; }
}
