/* =========================
   FONT FACE
========================= */
@font-face {
  font-family: "Fanlste";
  src: url("../fonts/fanlste.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Regular";
  src: url("../fonts/GeneralSans-Regular.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Medium";
  src: url("../fonts/GeneralSans-Medium.otf") format("opentype");
}

@font-face {
  font-family: "General Sans Semibold";
  src: url("../fonts/GeneralSans-Semibold.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Light Italic";
  src: url("../fonts/BwGradualDEMO-LightItalic.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Regular";
  src: url("../fonts/BwGradualDEMO-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Bold";
  src: url("../fonts/BwGradualDEMO-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Bold Italic";
  src: url("../fonts/BwGradualDEMO-BoldItalic.otf") format("opentype");
}

@font-face {
  font-family: "Bw Gradual DEMO Medium";
  src: url("../fonts/BwGradualDEMO-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Amsterdam Handwriting Regulat";
  src: url("../fonts/Amsterdam\ Handwriting_Regular.ttf") format("opentype");
}




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

body {
  font-family: "General Sans", system-ui, sans-serif;
  background: #fff;
}

/* =========================
   HERO LAYOUT
========================= */
.hero {
  position: relative;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;

  padding-top: 92px;
  display: flex;
  flex-direction: column;
}


/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 16px 20px 8px;
}

.header-container {
  max-width: 960px;
  width: auto;
  margin: 0 auto;
  height: 68px;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.05);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.logo {
  font-family: "Fanlste";
  font-size: 26px;
  text-decoration: none;
  color: #000;
}

.logo:hover,
.logo:focus,
.logo:active {
  text-decoration: none;
  color: #000;
}

.menu-toggle{
  display:none;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #777;
  text-decoration: none;
}

.nav a.active {
  font-weight: 600;
  color: #000;
}


/* CTA */
/* .cta {
  display: flex;
  align-items: center;
  gap: 10px;

  height: 44px;
  padding: 6px 18px 6px 6px;

  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.cta-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon img {
  width: 16px;
  height: 16px;
} */




/* =========================
   SERVICES HERO LAYOUT
========================= */
.services-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 55px 20px 30px;

  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
  gap: 60px;
}

/* =========================
   LEFT SIDE
========================= */
.services-left {
  display: flex;
  flex-direction: column;
}

/* =========================
   PILL
========================= */
.services-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;

  padding: 7px 12px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);

  border: 0.5px solid rgba(0, 0, 0, 0.08);

  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  margin-bottom: 16px;
}

.services-pill img {
  width: 14px;
  height: 14px;
}

.services-pill span {
  font-family: "General Sans Regular";
  font-size: 12px;
  font-weight: 100;
  color: rgba(20, 20, 20, 1);
}

/* =========================
   TITLE
========================= */
.services-title {
  line-height: 1.15;
}

.services-title .line-one {
  display: block;
  font-family: "Bw Gradual DEMO Light Italic";
  font-size: clamp(34px, 4.2vw, 38px);
  font-style: italic;
  font-weight: 300;
  color: rgba(20, 20, 20, 1);
}

.services-title .line-two {
  display: block;
  font-family: "Bw Gradual DEMO Light Italic";
  font-size: clamp(34px, 4.2vw, 38px);
  font-style: italic;
  font-weight: 300;
  color: rgba(20, 20, 20, 1);
}

.services-title .line-two strong {
  font-family: "Bw Gradual DEMO Bold";
  font-style: normal;
  font-weight: 400;
}

/* =========================
   RIGHT SIDE
========================= */
.services-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
}

/* DESCRIPTION */
.services-desc {
  font-family: "General Sans Regular";
  font-size: 14px;
  line-height: 1.7;
  color: rgba(116, 113, 114, 1);
  margin-bottom: 18px;
  text-align: end;
}


/* =========================
   CONTACT BUTTON
========================= */
.contact-btn {
  display: inline-flex;
  align-items: center;
  align-self: self-end;
  gap: 5px;

  height: 45px;
  padding: 6px 10px 6px 6px;

  border-radius: 999px;
  border: 0.5px solid rgba(0, 0, 0, 0.812);
  cursor: pointer;

  font-family: "General Sans Medium", sans-serif;
  font-size: 15px;
  text-decoration: none;

  transition: all 0.25s ease;
}

/* =========================
   ICON CIRCLE
========================= */
.btn-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.btn-icon img {
  width: 18px;
  height: 18px;
}


/* =========================
   SECONDARY (GLASS WHITE)
========================= */
.btn-secondary {
  color: rgba(20, 20, 20, 1);

  /* Glass white */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(0, 0, 0, 0.213);

  /* BIG soft floating shadow (like image) */
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.133),
    0 5px 3px rgba(0, 0, 0, 0.018),
    inset 0 1px 0 rgba(255, 255, 255, 0.299);

  transition: all 0.3s ease;
}


.btn-secondary .btn-icon {
  background: linear-gradient(
    180deg,
    rgba(1, 39, 58, 1),
    rgba(1, 27, 41, 1)
  );

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


/* Hover */
.btn-secondary:hover {
  background: linear-gradient(
    180deg,
    rgba(1, 39, 58, 1),
    rgba(1, 27, 41, 1)
  );

  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary:hover .btn-icon {
  background: rgba(80, 164, 207, 1);
}



/* =========================
   SERVICES CONTENT SECTION
========================= */
.services-content {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0;
  position: relative;
}

/* =========================
   TOP IMAGE
========================= */
.services-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.services-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================
   CONTENT CARD
========================= */

.services-card{
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
  margin-top: -94px;
}

.services-card-content {
  position: relative;
  z-index: 5;
  width: 100%;
  background: rgba(247, 247, 247, 1);
  border-radius: 22px;
  padding: 40px 60px 60px;
  text-align: center;
}

/* =========================
   LIQUID GLASS SERVICES PILL
========================= */
.services-glass-pill {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;

  padding: 8px 15px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border: 0.5px solid rgba(0, 0, 0, 0.099);

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
}

/* Keep text/icons above blobs */
.services-glass-pill > * {
  position: relative;
  z-index: 5;
}

.services-glass-pill span {
  font-family: "General Sans Medium";
  font-size: 13px;
  color: rgba(20, 20, 20, 1);
}

.services-glass-pill img {
  width: 14px;
  height: 14px;
}

/* =========================
   CLEAR LIQUID BLOBS
========================= */

.services-glass-pill::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 16px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.12);

  filter: blur(1.5px);
  top: -10px;
  left: 12px;
  z-index: 1;
}

.services-glass-pill span::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 12px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 1px 4px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  top: 13px;
  left: -50px;
  z-index: 1;
}

.services-glass-pill::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 20px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 -2px 6px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  bottom: 50px;
  right: -10px;
  z-index: 2;
}

.services-glass-pill span::after {
  content: "";
  position: absolute;

  width: 30px;
  height: 14px;
  border-radius: 50%;
  background: transparent;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.10),
    0 2px 5px rgba(0, 0, 0, 0.10);

  filter: blur(1.5px);
  bottom: -5px;
  right: -50px;
  z-index: 0;
}

.services-glass-pill img {
  width: 14px;
}

/* =========================
   TITLE
========================= */
.services-content-title {
  margin-top: 25px;
  margin-bottom: 18px;
}

.services-content-title .regular {
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(10px, 4vw, 39px);
  color: rgba(20,20,20,1);
  font-weight: 100;
}

.services-content-title .bold {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: clamp(10px, 4vw, 39px);
  margin-left: 6px;
}

/* =========================
   DESCRIPTION
========================= */
.services-content-desc {
  max-width: 740px;
  margin: 0 auto 40px;
  font-family: "General Sans Regular";
  font-size: 13px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}

/* =========================
   FEATURE GRID
========================= */
.services-feature-grid {
  display: grid;
  width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}


/* =========================
   FEATURE CARD
========================= */
.feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 28px;
  text-align: left;

  transition: transform 0.3s ease;
}

/* =========================
   ICON
========================= */
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;
}

.feature-icon img {
  width: 25px;
}

/* =========================
   ICON COLORS
========================= */
.feature-card:nth-child(1) .feature-icon { background: rgba(220,239,250,1); }
.feature-card:nth-child(2) .feature-icon { background: rgba(213,239,233,1); }
.feature-card:nth-child(3) .feature-icon { background: rgba(228,223,255,1); }
.feature-card:nth-child(4) .feature-icon { background: rgba(255,240,196,1); }
.feature-card:nth-child(5) .feature-icon { background: rgba(250,220,245,1); }

/* =========================
   TEXT
========================= */
.feature-card h4 {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 100;
  color: rgba(20,20,20,1);
}

.feature-card p {
  font-family: "General Sans Medium";
  font-size: 12px;
  line-height: 1.6;
  color: rgba(116,113,114,1);
}

/* =========================
   SECOND ROW CENTERING
========================= */
/* -------------------------
   FIRST ROW → 3 equal cards
------------------------- */
.services-feature-grid .feature-card:nth-child(1) {
  grid-column: 1 / span 2;
}

.services-feature-grid .feature-card:nth-child(2) {
  grid-column: 3 / span 2;
}

.services-feature-grid .feature-card:nth-child(3) {
  grid-column: 5 / span 2;
}

/* -------------------------
   SECOND ROW → 2 centered wide cards
------------------------- */
.services-feature-grid .feature-card:nth-child(4) {
  grid-column: 1 / span 3;   /* left centered */
}

.services-feature-grid .feature-card:nth-child(5) {
  grid-column: 4 / span 3;   /* right centered */
}





/* =========================
   BRANDING SERVICE SECTION
========================= */
.branding-section {
  max-width: 1100px;
  margin: 60px auto 50px;
  padding: 0 20px;
  text-align: center;
}

/* =========================
   TITLE
========================= */
.branding-title {
  margin: 20px 0 14px;
}

.branding-title .regular {
  display: block;
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(28px, 4vw, 39px);
  color: rgba(20,20,20,1);
  font-weight: 100;
}

.branding-title .bold {
  display: block;
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: clamp(28px, 4vw, 39px);
  color: rgba(20,20,20,1);
  font-weight: 200;
}

.branding-desc {
  max-width: 720px;
  margin: 0 auto 50px;
  font-family: "General Sans Medium";
  font-size: 13px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}

/* =========================
   GRID
========================= */
.branding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 80px;
}

/* =========================
   CARD
========================= */
.branding-card {
  position: relative;
  border-radius: 18px;
  padding: 26px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
  align-self: center;
  min-height: 360px;
  width: 450px;
}

/* Text block */
.card-text h4 {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 30px;
  font-weight: 100;
  color: rgba(20,20,20,1);
}

.card-text h3 {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: 30px;
  margin-bottom: 10px;
  color: rgba(20,20,20,1);
}

.card-text p {
  max-width: 170px;
  font-family: "General Sans Medium";
  font-size: 12px;
  font-weight: 100;
  line-height: 1.6;
  color: rgba(116,113,114,1);
}

/* Image inside card */
.card-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 240px;
  object-fit: cover;
}

/* Arrow */
.card-arrow {
  position: absolute;
  left: 20px;
  bottom: 20px;

  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

}

.card-arrow img {
  width: 25px;
}

/* =========================
   BACKGROUND COLORS
========================= */
.bg-cream { background: rgba(243, 239, 227, 1); }
.bg-gray  { background: rgba(234, 233, 239, 1); }
.bg-mint  { background: rgba(226, 241, 238, 1); }
.bg-pink  { background: rgba(241, 227, 226, 1); }




/* =========================
   MANUFACTURING SECTION
========================= */
.manufacturing-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.manufacturing-wrapper {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;

  background: rgba(247, 247, 247, 1);
  border-radius: 22px;
  padding: 40px 130px;
}

/* =========================
   LEFT CONTENT
========================= */
.manufacturing-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================
   TITLE
========================= */
.manufacturing-title {
  margin: 18px 0 14px;
  line-height: 1.15;
}

.manufacturing-title .line-regular {
  display: block;
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(28px, 4vw, 38px);
  color: rgba(20,20,20,1);
  font-weight: 100;
}

.manufacturing-title .line-bold {
  display: block;
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: clamp(28px, 4vw, 38px);
  color: rgba(20,20,20,1);
  font-weight: 100;
}

/* Mixed line styling */
.line-mixed {
  display: block;
}

.line-mixed .regular-part {
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(28px, 4vw, 38px);
  color: rgba(20,20,20,1);
  font-weight: 100;
}

.line-mixed .bold-part {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: clamp(28px, 4vw, 38px);
  color: rgba(20,20,20,1);
  margin-left: 6px;
  font-weight: 100;
}


/* =========================
   DESCRIPTION
========================= */
.manufacturing-desc {
  max-width: none;
  margin-bottom: 32px;

  font-family: "General Sans Medium";
  font-size: 12px;
  font-weight: 100;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}

/* =========================
   POINT LIST
========================= */
.manufacturing-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point-item {
  max-width: 520px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.point-num {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 45px;
  color: rgba(0,0,0,1);
  min-width: 35px;
  font-weight: 100;
}

/* text block */
.point-text h4 {
  font-family: "General Sans Regular";
  font-size: 20px;
  margin-bottom: 4px;
  color: rgba(20,20,20,1);
  font-weight: 100;
}

.point-text p {
  font-family: "General Sans Medium";
  font-size: 11px;
  line-height: 1.6;
  color: rgba(116,113,114,1);
  font-weight: 100;
}

/* =========================
   RIGHT IMAGE
========================= */
.manufacturing-image {
  width: 395px;
  height: 579px;
  border-radius: 18px;
  overflow: hidden;
}

.manufacturing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}







/* =========================
   DIGITAL COMMERCE SECTION
========================= */
.digital-section {
  max-width: 1050px;
  margin: 60px auto 60px;
  padding: 0 20px;
  text-align: center;
}

/* =========================
   TITLE
========================= */
.digital-title {
  margin: 18px 0 14px;
}

.digital-title .regular {
  display: block;
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(28px, 4vw, 40px);
  color: rgba(20,20,20,1);
  font-weight: 100;
}

.digital-title .bold {
  display: block;
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: clamp(28px, 4vw, 40px);
  color: rgba(20,20,20,1);
  font-weight: 100;
  margin: 5px;
}

.digital-desc {
  max-width: 760px;
  margin: 15px auto 30px;

  font-family: "General Sans Regular";
  font-size: 12px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}

/* =========================
   SERVICE GRID
========================= */
.digital-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 30px;
}

/* =========================
   CARD
========================= */
.digital-card {
  text-align: left;
}

.digital-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.digital-card h4 {
  font-family: "General Sans Medium";
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 100;
  color: rgba(20,20,20,1);
}

.digital-card p {
  font-family: "General Sans Medium";
  font-size: 11px;
  font-weight: 100;
  line-height: 1.6;
  color: rgba(116,113,114,1);
}

/* =========================
   LOGOS
========================= */
.digital-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.digital-logos img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}





/* =========================
   DIGITAL MARKETING SECTION
========================= */
.marketing-section {
  max-width: 1250px;
  margin: 10px auto;
  padding: 0 10px;
}

/* Main black container */
.marketing-wrapper {
  background: rgba(20, 20, 20, 1);
  border-radius: 22px;
  padding: 60px 120px 100px;
  text-align: center;
}

/* =========================
   DIGITAL MARKETING GLASS PILL (BLACK)
========================= */
.digital-marketing-glass-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 7px 18px;
  border-radius: 999px;

  /* ✅ background */
  background: rgba(255, 255, 255, 0.1);

  /* ✅ blur */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(12px);

  /* ✅ border */
  border: 1px solid rgba(255, 255, 255, 0.142);

  /* ✅ shadow */
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.132);

  overflow: hidden;
}


/* text color stays white */
.digital-marketing-glass-pill span {
  color: #ffffff;
  font-family: "General Sans Regular";
  font-size: 14px;
  font-weight: 100;
}


/* Thin white ellipse (like your PNG) */
.digital-marketing-glass-pill::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 2px;

  width: 38px;
  height: 20px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);

  background: transparent;
  opacity: 0.4;
  filter: blur(1.8px);
  pointer-events: none;
}


/* subtle second ellipse (optional, premium look) */
.digital-marketing-glass-pill::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 5px;

  width: 30px;
  height: 9px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);

  opacity: 0.4;
  filter: blur(1.8px);
  pointer-events: none;
}


.digital-marketing-glass-pill span::before {
  content: "";
  position: absolute;

  width: 30px;
  height: 7px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;

  opacity: 0.35;
  filter: blur(1.6px);

  top: 50%;
  right: 0px;

  pointer-events: none;
}

/* =========================
   TITLE
========================= */
.marketing-title {
  margin: 18px 0 12px;
}

.marketing-title .regular {
  display: block;
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(30px, 4vw, 40px);
  color: rgba(255,255,255,1);
  font-weight: 100;
}

.marketing-title .bold {
  display: block;
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: clamp(30px, 4vw, 40px);
  color: rgba(255,255,255,1);
  font-weight: 100;
}

.marketing-desc {
  max-width: 780px;
  margin: 0 auto 30px;

  font-family: "General Sans Regular";
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}

/* =========================
   CARD GRID
========================= */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* =========================
   CARD
========================= */
.marketing-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 26px 25px;
  text-align: left;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.12);

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.marketing-card::before {
  content: "";
  position: absolute;

  top: -15px;
  left: -18px;

  width: 100px;
  height: 30px;

  border: 1px solid rgba(255, 255, 255, 0.55); /* outline only */
  border-radius: 0 0 120px 0; /* half-oval curve */

  background: transparent;

  filter: blur(3px);
  opacity: 0.6;

  pointer-events: none;
}

/* ✨ Inner glass glow */
.marketing-card::after {
  content: "";
  position: absolute;

  bottom: -15px;
  right: -15px;

  width: 150px;
  height: 35px;

  border: 1px solid rgba(255, 255, 255, 0.45); /* slightly softer */
  border-radius: 120px 0 0 0; /* mirrored half-oval */

  background: transparent;

  filter: blur(3px);
  opacity: 0.55;

  pointer-events: none;
}

.marketing-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 50px;
}

.marketing-card h4 {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 22px;
  font-weight: 100;
  margin-bottom: 8px;
  color: rgba(255,255,255,1);
}

.marketing-card p {
  font-family: "General Sans Medium";
  font-size: 12px;
  font-weight: 100;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.456);
  margin-bottom: 40px;
}

/* =========================
   LOGOS
========================= */
.marketing-logos {
  margin-top: 40px;
  margin-bottom: 40px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-wrap: wrap;
}

.marketing-logos img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  
  filter: grayscale(100%);
  opacity: 0.85;

}





/* =========================
   EXPORT SECTION
========================= */
.export-section {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

/* =========================
   GLASS PILL
========================= */
.export-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 6px 14px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.export-pill img {
  width: 14px;
}

.export-pill span {
  font-family: "General Sans Regular";
  font-size: 13px;
  color: rgba(20,20,20,1);
}

/* =========================
   TITLE
========================= */
.export-title {
  margin: 22px 0 50px;
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 100;
  line-height: 1.25;
  color: rgba(20,20,20,1);
}

/* =========================
   INFO CARDS
========================= */
.export-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}

.export-info-card {
  background: rgba(247,247,247,1);
  border-radius: 16px;
  padding: 26px;
  text-align: left;

  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  
}

.export-info-card img {
  width: 50px;
  height: 50px;
}

.export-info-card p {
  font-family: "General Sans Medium";
  font-size: 11px;
  font-weight: 100;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}

/* =========================
   STEP FLOW WRAPPER
========================= */
.export-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 200px;
  padding: 0 20px;
  justify-content: start;
}

/* =========================
   MAIN HORIZONTAL LINE
========================= */
.export-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 1%;
  height: 1px;
  background: rgb(54, 54, 54);
  z-index: 1;
}

/* =========================
   STEP ITEM
========================= */
.export-step {
  position: relative;
  display: flex;
  justify-content: start;
}

/* =========================
   STEP LABEL (ON LINE)
========================= */
.step-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;

  font-family: "General Sans Medium";
  font-size: 12px;
  color: rgba(116,113,114,1);

  background: #ffffff;
  border: 1px solid rgb(54, 54, 54);
  border-radius: 999px;
  padding: 6px 16px;
}

/* =========================
   STEP CARD
========================= */
.step-card {
  position: absolute;
  width: 280px;

  display: flex;
  align-items: center;
  gap: 12px;
  left: 10px;
}

/* =========================
   IMAGE
========================= */
.step-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* =========================
   TEXT
========================= */
.step-text h4 {
  font-family: "Bw Gradual DEMO Regular";
  font-size: 17px;
  font-weight: 100;
  margin-bottom: 4px;
  color: rgba(20,20,20,1);
  text-align: left;
}

.step-text p {
  font-family: "General Sans Medium";
  font-size: 11px;
  font-weight: 100;
  line-height: 1.5;
  color: rgba(116,113,114,1);
  text-align: left;
}

/* =====================================================
   TOP STEPS (1 & 3) → CARD ABOVE + LINE UP
===================================================== */
.export-step.top .step-card {
  bottom: calc(50% + 90px);
}

/* vertical connector UP */
.export-step.top .step-label::after {
  content: "";
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 85px;
  background: rgb(54, 54, 54);
}

/* =====================================================
   BOTTOM STEPS (2 & 4) → CARD BELOW + LINE DOWN
===================================================== */
.export-step.bottom .step-card {
  top: calc(50% + 90px);
}

/* vertical connector DOWN */
.export-step.bottom .step-label::after {
  content: "";
  position: absolute;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 85px;
  background: rgb(54, 54, 54);
}








/* =========================
   SALES ANALYSIS SECTION
========================= */
.sales-section {
  max-width: 1000px;
  margin: 240px auto 100px;
  padding: 0 20px;
  text-align: center;
}



/* =========================
   TITLE
========================= */
.sales-title {
  margin-top: 20px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sales-title .regular {
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 100;
  color: rgba(20,20,20,1);
}

.sales-title .bold {
  font-family: "Bw Gradual DEMO Bold Italic";
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 100;
  margin-left: 6px;
  color: rgba(20,20,20,1);
}

/* =========================
   DESCRIPTION
========================= */
.sales-desc {
  max-width: 780px;
  margin: 0 auto 40px;

  font-family: "General Sans Regular";
  font-size: 12px;
  font-weight: 100;
  line-height: 1.7;
  color: rgba(116,113,114,1);
}

/* =========================
   GRID
========================= */
.sales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* =========================
   CARD
========================= */
.sales-card {
  background: rgba(237,242,247,1);
  border-radius: 18px;
  padding: 26px 22px;

  text-align: left;
}

/* =========================
   IMAGE
========================= */
.sales-card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* =========================
   TEXT STYLES
========================= */
.sales-card h3 {
  font-family: "Bw Gradual DEMO Medium";
  font-size: 32px;
  font-weight: 100;
  margin-bottom: 4px;
  color: rgba(20,20,20,1);
}

.sales-card h4 {
  font-family: "Bw Gradual DEMO Light Italic";
  font-size: 17px;
  font-weight: 100;
  margin-bottom: 8px;
  color: rgba(20,20,20,1);
}

.sales-card p {
  font-family: "General Sans Regular";
  max-width: 150px;
  font-size: 11px;
  font-weight: 100;
  line-height: 1.6;
  color: rgba(116,113,114,1);
}











/* =========================
   GLOBAL MARKET ACCESS SECTION
========================= */
.global-access-section {
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 20px;
  text-align: center;
}

/* =========================
   GLASS PILL
========================= */
.global-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    0 6px 14px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);

  margin-bottom: 16px;
}

.global-pill img {
  width: 14px;
}

.global-pill span {
  font-family: "General Sans Regular";
  font-size: 13px;
  color: rgba(20,20,20,1);
}

/* =========================
   TITLE
========================= */
.global-title {
  font-family: "Bw Gradual DEMO Regular";
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 100;
  line-height: 1.25;
  margin-bottom: 40px;
  color: rgba(20,20,20,1);
}

/* =========================
   LOGO GRID
========================= */
.global-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* =========================
   LOGO CARD
========================= */
.logo-card {
  background: none;

  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
}

.logo-card img {
  width: 130px;
  height: 80px;
  object-fit: contain;
}










/* =========================
   FOOTER
========================= */
.site-footer {
  width: 100%;
  background: rgba(20, 20, 20, 1);
  padding: 70px 20px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 70px;
  color: #fff;
}

.footer-container .footer-col:nth-child(2) {
  justify-self: center;
}


/* LEFT */
.footer-logo {
  width: 50px;
  margin-bottom: 25px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-item img {
  width: auto;
  height: auto;
  margin-top: 4px;
}

.footer-item span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* CENTER */
.footer-links-col h4 {
  margin-bottom: 18px;
}

.footer-links-col a {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-links-col a:hover {
  color: #fff;
}

/* RIGHT */
.footer-about-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  margin-top: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social img {
  width: 30px;
  opacity: 0.8;
  padding: 6px;
  border-radius: 6px;
  background: rgba(54, 54, 54, 0.75);
  transition: opacity 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
}



/* DIVIDER */
.footer-divider {
  max-width: 1000px;
  margin: 40px auto 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* BOTTOM BAR */
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "General Sans Regular";
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}


/* =========================
   WAVING BRAND TEXT
========================= */

.footer-brand {
  margin-top: 60px;
  text-align: center;
  font-family: "Fanlste";
  font-size: 250px;
  line-height: 1;
  color: rgba(255, 255, 255, 1);
  pointer-events: none;
  white-space: nowrap;
}

/* wave container */
.wave-text span {
  display: inline-block;
  animation: waveMove 6s ease-in-out infinite;
}

/* stagger animation */
.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.2s; }
.wave-text span:nth-child(3) { animation-delay: 0.4s; }
.wave-text span:nth-child(4) { animation-delay: 0.6s; }
.wave-text span:nth-child(5) { animation-delay: 0.8s; }
.wave-text span:nth-child(6) { animation-delay: 1s; }
.wave-text span:nth-child(7) { animation-delay: 1.2s; }
.wave-text span:nth-child(8) { animation-delay: 1.4s; }
.wave-text span:nth-child(9) { animation-delay: 1.6s; }

/* =========================
   KEYFRAMES
========================= */
@keyframes waveMove {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-14px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}















































/* =========================
   RESPONSIVE
========================= */




/* =========================
   (min-width: 1440px)
========================= */

@media (min-width: 1440px) {

  .hero { margin-bottom: 22.5px; padding-top: 103.5px;}

  .header { padding: 18px 22.5px 9px;}
  
  .header-container { max-width: 1080px; height: 76.5px;}
  
  .logo { font-size: 29.25px;}
  
  .nav { gap: 31.5px;}
  
  .nav a { font-size: 15.75px;}

  .services-hero { max-width: 1237.5px; padding: 61.875px 22.5px 33.75px; gap: 67.5px; }

  .services-pill { gap: 7.875px; padding: 7.875px 13.5px; margin-bottom: 18px; }

  .services-pill img { width: 15.75px; height: 15.75px; }

  .services-pill span { font-size: 13.5px; }

  .services-title .line-one { font-size: clamp(38.25px, 4.2vw, 42.75px); }

  .services-title .line-two { font-size: clamp(38.25px, 4.2vw, 42.75px); }

  .services-right { padding-top: 11.25px; }

  .services-desc { font-size: 15.75px; margin-bottom: 20.25px; }

  .contact-btn { gap: 5.625px; height: 50.625px; padding: 6.75px 11.25px 6.75px 6.75px; font-size: 16.875px; }

  .btn-icon { width: 39.375px; height: 39.375px; }

  .btn-icon img { width: 20.25px; height: 20.25px; }

  .services-content { max-width: 1125px; margin: 0 auto 90px; }

  .services-image-wrap img { height: 472.5px; }

  .services-card { max-width: 1372.5px; margin-top: -105.75px; }

  .services-card-content { padding: 45px 67.5px 67.5px; }

  .services-glass-pill { gap: 7.875px; padding: 9px 16.875px; }

  .services-glass-pill span { font-size: 14.625px; }

  .services-glass-pill img { width: 15.75px; height: 15.75px; }

  .services-glass-pill::before { width: 33.75px; height: 18px; top: -11.25px; left: 13.5px; }

  .services-glass-pill span::before { width: 33.75px; height: 13.5px; top: 14.625px; left: -56.25px; }

  .services-glass-pill::after { width: 33.75px; height: 22.5px; bottom: 56.25px; right: -11.25px; }

  .services-glass-pill span::after { width: 33.75px; height: 15.75px; bottom: -5.625px; right: -56.25px; }

  .services-glass-pill img { width: 15.75px; }

  .services-content-title { margin-top: 28.125px; margin-bottom: 20.25px; }

  .services-content-title .regular { font-size: clamp(11.25px, 4vw, 43.875px); }

  .services-content-title .bold { font-size: clamp(11.25px, 4vw, 43.875px); margin-left: 6.75px; }

  .services-content-desc { max-width: 765px; margin: 0 auto 45px; font-size: 14.62px; }

  .services-feature-grid { width: 1125px; gap: 11.25px; }

  .feature-card { padding: 33.75px 31.5px; }

  .feature-icon { width: 49.5px; height: 49.5px; margin-bottom: 15.75px; }

  .feature-icon img { width: 28.125px; }

  .feature-card h4 { font-size: 15.75px; margin-bottom: 6.75px; }

  .feature-card p { font-size: 13.5px; }





  .branding-section { max-width: 1237.5px; margin: 67.5px auto 56.25px; padding: 0 22.5px; }

  .branding-title { margin: 22.5px 0 15.75px; }

  .branding-title .regular { font-size: clamp(31.5px, 4vw, 43.875px); }

  .branding-title .bold { font-size: clamp(31.5px, 4vw, 43.875px); }

  .branding-desc { max-width: 810px; margin: 0 auto 56.25px; font-size: 13.5px; }

  .branding-grid { gap: 11.25px; margin: 0 90px; }

  .branding-card { padding: 29.25px; min-height: 405px; width: 506.25px; }

  .card-text h4 { font-size: 33.75px; }

  .card-text h3 { font-size: 33.75px; margin-bottom: 11.25px; }

  .card-text p { max-width: 191.25px; font-size: 13.5px; }

  .card-image { width: 270px; }

  .card-arrow { left: 22.5px; bottom: 22.5px; width: 56.25px; height: 56.25px; }

  .card-arrow img { width: 28.125px; }

  .manufacturing-section { max-width: 1350px; }

  .manufacturing-wrapper { gap: 54px; padding: 45px 146.25px; }

  .manufacturing-title { margin: 20.25px 0 15.75px; }

  .manufacturing-title .line-regular { font-size: clamp(31.5px, 4vw, 42.75px); }

  .manufacturing-title .line-bold { font-size: clamp(31.5px, 4vw, 42.75px); }

  .line-mixed .regular-part { font-size: clamp(31.5px, 4vw, 42.75px); }

  .line-mixed .bold-part { font-size: clamp(31.5px, 4vw, 42.75px); margin-left: 6.75px; }

  .manufacturing-desc { margin-bottom: 36px; font-size: 13.5px; }

  .manufacturing-points { gap: 22.5px; }

  .point-item { max-width: 585px; gap: 22.5px; }

  .point-num { font-size: 50.625px; min-width: 39.375px; }

  .point-text h4 { font-size: 22.5px; margin-bottom: 4.5px; }

  .point-text p { font-size: 12.375px; }

  .manufacturing-image { width: 444.375px; height: 651.375px; }

  .digital-section { max-width: 1181.25px; margin: 67.5px auto 67.5px; padding: 0 22.5px; }

  .digital-title { margin: 20.25px 0 15.75px; }

  .digital-title .regular { font-size: clamp(31.5px, 4vw, 45px); }

  .digital-title .bold { font-size: clamp(31.5px, 4vw, 45px); margin: 5.625px; }

  .digital-desc { max-width: 855px; margin: 16.875px auto 33.75px; font-size: 13.5px; }

  .digital-grid { gap: 29.25px; margin-bottom: 33.75px; }

  .digital-card img { height: 168.75px; margin-bottom: 13.5px; }

  .digital-card h4 { font-size: 16.875px; margin-bottom: 6.75px; }

  .digital-card p { font-size: 12.375px; }

  .digital-logos { gap: 33.75px; }

  .digital-logos img { width: 78.75px; height: 78.75px; }





  
  .marketing-section { max-width: 1406.25px; margin: 11.25px auto; padding: 0 11.25px; }

  .marketing-wrapper { padding: 67.5px 135px 112.5px; }

  .digital-marketing-glass-pill { gap: 11.25px; padding: 7.875px 20.25px; }

  .digital-marketing-glass-pill span { font-size: 15.75px; }

  .digital-marketing-glass-pill::before { top: -5.625px; left: 2.25px; width: 42.75px; height: 22.5px; }

  .digital-marketing-glass-pill::after { bottom: -2.25px; right: 5.625px; width: 33.75px; height: 10.125px; }

  .digital-marketing-glass-pill span::before { width: 33.75px; height: 7.875px; }

  .marketing-title { margin: 20.25px 0 13.5px; }

  .marketing-title .regular { font-size: clamp(33.75px, 4vw, 45px); }

  .marketing-title .bold { font-size: clamp(33.75px, 4vw, 45px); }

  .marketing-desc { max-width: 877.5px; margin: 0 auto 33.75px; font-size: 14.06px; }

  .marketing-grid { gap: 16.875px; }

  .marketing-card { padding: 29.25px 28.125px; }

  .marketing-card::before { top: -16.875px; left: -20.25px; width: 112.5px; height: 33.75px; }

  .marketing-card::after { bottom: -16.875px; right: -16.875px; width: 168.75px; height: 39.375px; }

  .marketing-card img { width: 90px; height: 90px; margin-bottom: 56.25px; }

  .marketing-card h4 { font-size: 24.75px; margin-bottom: 9px; }

  .marketing-card p { font-size: 13.5px; margin-bottom: 45px; }

  .marketing-logos { margin-top: 45px; margin-bottom: 45px; gap: 101.25px; }

  .marketing-logos img { width: 135px; height: 67.5px; }
  
  .export-section { max-width: 1125px; margin: 33.75px auto; padding: 0 22.5px; }

  .export-pill { gap: 11.25px; padding: 9px 20.25px; }

  .export-pill img { width: 15.75px; }

  .export-pill span { font-size: 14.625px; }

  .export-title { margin: 24.75px 0 56.25px; font-size: clamp(31.5px, 4vw, 42.75px); }

  .export-info-grid { gap: 24.75px; margin-bottom: 78.75px; }

  .export-info-card { padding: 29.25px; gap: 20.25px; }

  .export-info-card img { width: 56.25px; height: 56.25px; }

  .export-info-card p { font-size: 12.375px; }

  .export-steps { margin-top: 225px; padding: 0 22.5px; }

  .export-steps::before { height: 1.125px; }

  .step-label { font-size: 13.5px; padding: 6.75px 18px; }

  .step-card { width: 315px; gap: 13.5px; left: 11.25px; }

  .step-card img { width: 67.5px; height: 67.5px; }

  .step-text h4 { font-size: 19.125px; margin-bottom: 4.5px; }

  .step-text p { font-size: 12.375px; }

  .export-step.top .step-card { bottom: calc(50% + 101.25px); }

  .export-step.top .step-label::after { top: -95.625px; width: 1.125px; height: 95.625px; }

  .export-step.bottom .step-card { top: calc(50% + 101.25px); }

  .export-step.bottom .step-label::after { bottom: -95.625px; width: 1.125px; height: 95.625px; }

  .sales-section { max-width: 1125px; margin: 270px auto 112.5px; padding: 0 22.5px; }

  .sales-title { margin-top: 22.5px; margin-bottom: 18px; }

  .sales-title .regular { font-size: clamp(36px, 4vw, 45px); }

  .sales-title .bold { font-size: clamp(36px, 4vw, 45px); margin-left: 6.75px; }







  .sales-desc { max-width: 877.5px; margin: 0 auto 45px; font-size: 13.5px; }

  .sales-grid { gap: 24.75px; }

  .sales-card { padding: 29.25px 24.75px; }

  .sales-card img { width: 61.875px; height: 61.875px; margin-bottom: 15.75px; }

  .sales-card h3 { font-size: 36px; margin-bottom: 4.5px; }

  .sales-card h4 { font-size: 19.125px; margin-bottom: 9px; }

  .sales-card p { max-width: 168.75px; font-size: 12.375px; }

  .global-access-section { max-width: 1125px; margin: 0 auto 112.5px; padding: 0 22.5px; }

  .global-pill { gap: 11.25px; padding: 9px 20.25px; margin-bottom: 18px; }

  .global-pill img { width: 15.75px; }

  .global-pill span { font-size: 14.625px; }

  .global-title { font-size: clamp(33.75px, 4vw, 45px); margin-bottom: 45px; }

  .global-logos-grid { gap: 24.75px; }

  .logo-card { padding: 11.25px 11.25px; }

  .logo-card img { width: 146.25px; height: 90px; }
  
  
  
  .site-footer { padding: 78.75px 22.5px 45px;}
  .footer-container { max-width: 1125px; gap: 78.75px;}
  .footer-logo { width: 56.25px; margin-bottom: 28.125px;}
  .footer-item { gap: 13.5px; margin-bottom: 15.75px;}
  .footer-item img { margin-top: 4.5px;}
  .footer-item span { font-size: 14.625px;}
  .footer-links-col h4 { margin-bottom: 20.25px;}
  .footer-links-col a { font-size: 18px; margin-bottom: 15.75px;}
  .footer-about-col p { font-size: 16.875px; margin-bottom: 27px; margin-top: 20.25px;}
  .footer-social { gap: 18px;}
  .footer-social img { width: 33.75px; padding: 6.75px;}
  .footer-divider { max-width: 1125px; margin: 45px auto 22.5px; height: 1.125px;}
  .footer-bottom { max-width: 1125px; font-size: 13.5px;}
  .footer-bottom-links { gap: 20.25px;}
  .footer-brand { margin-top: 67.5px; font-size: 281.25px;}

}




/* =========================
   (min-width: 1600px)
========================= */

@media (min-width: 1600px) {

.hero { margin-bottom: 25px; padding-top: 115px; }
.header { padding: 20px 25px 10px; }
.header-container { max-width: 1200px; height: 85px; }
.logo { font-size: 32.5px; }
.nav { gap: 35px; }
.nav a { font-size: 17.5px; }

.services-hero { max-width: 1375px; padding: 68.75px 25px 37.5px; gap: 75px; }
.services-pill { gap: 8.75px; padding: 8.75px 15px; margin-bottom: 20px; }
.services-pill img { width: 17.5px; height: 17.5px; }
.services-pill span { font-size: 15px; }

.services-title .line-one { font-size: clamp(42.5px, 4.2vw, 47.5px); }
.services-title .line-two { font-size: clamp(42.5px, 4.2vw, 47.5px); }

.services-right { padding-top: 12.5px; }
.services-desc { font-size: 17.5px; margin-bottom: 22.5px; }

.contact-btn { gap: 6.25px; height: 56.25px; padding: 7.5px 12.5px 7.5px 7.5px; font-size: 18.75px; }
.btn-icon { width: 43.75px; height: 43.75px; }
.btn-icon img { width: 22.5px; height: 22.5px; }

.services-content { max-width: 1250px; margin: 0 auto 100px; }
.services-image-wrap img { height: 525px; }
.services-card { max-width: 1525px; margin-top: -117.5px; }
.services-card-content { padding: 50px 75px 75px; }

.services-glass-pill { gap: 8.75px; padding: 10px 18.75px; }
.services-glass-pill span { font-size: 16.25px; }
.services-glass-pill img { width: 17.5px; height: 17.5px; }

.services-glass-pill::before { width: 37.5px; height: 20px; top: -12.5px; left: 15px; }
.services-glass-pill span::before { width: 37.5px; height: 15px; top: 16.25px; left: -62.5px; }
.services-glass-pill::after { width: 37.5px; height: 25px; bottom: 62.5px; right: -12.5px; }
.services-glass-pill span::after { width: 37.5px; height: 17.5px; bottom: -6.25px; right: -62.5px; }

.services-content-title { margin-top: 31.25px; margin-bottom: 22.5px; }
.services-content-title .regular { font-size: clamp(12.5px, 4vw, 48.75px); }
.services-content-title .bold { font-size: clamp(12.5px, 4vw, 48.75px); margin-left: 7.5px; }

.services-content-desc { max-width: 850px; margin: 0 auto 50px; font-size: 16.25px; }

.services-feature-grid { width: 1250px; gap: 12.5px; }
.feature-card { padding: 37.5px 35px; }
.feature-icon { width: 55px; height: 55px; margin-bottom: 17.5px; }
.feature-icon img { width: 31.25px; }
.feature-card h4 { font-size: 17.5px; margin-bottom: 7.5px; }
.feature-card p { font-size: 15px; }

.branding-section { max-width: 1375px; margin: 75px auto 62.5px; padding: 0 25px; }
.branding-title { margin: 25px 0 17.5px; }
.branding-title .regular { font-size: clamp(35px, 4vw, 48.75px); }
.branding-title .bold { font-size: clamp(35px, 4vw, 48.75px); }
.branding-desc { max-width: 900px; margin: 0 auto 62.5px; font-size: 15px; }
.branding-grid { gap: 12.5px; margin: 0 100px; }
.branding-card { padding: 32.5px; min-height: 450px; width: 562.5px; }
.card-text h4 { font-size: 37.5px; }
.card-text h3 { font-size: 37.5px; margin-bottom: 12.5px; }
.card-text p { max-width: 212.5px; font-size: 15px; }
.card-image { width: 300px; }
.card-arrow { left: 25px; bottom: 25px; width: 62.5px; height: 62.5px; }
.card-arrow img { width: 31.25px; }

.manufacturing-section { max-width: 1500px; }
.manufacturing-wrapper { gap: 60px; padding: 50px 162.5px; }
.manufacturing-title { margin: 22.5px 0 17.5px; }
.manufacturing-title .line-regular { font-size: clamp(35px, 4vw, 47.5px); }
.manufacturing-title .line-bold { font-size: clamp(35px, 4vw, 47.5px); }
.line-mixed .regular-part { font-size: clamp(35px, 4vw, 47.5px); }
.line-mixed .bold-part { font-size: clamp(35px, 4vw, 47.5px); margin-left: 7.5px; }
.manufacturing-desc { margin-bottom: 40px; font-size: 15px; }
.manufacturing-points { gap: 25px; }
.point-item { max-width: 650px; gap: 25px; }
.point-num { font-size: 56.25px; min-width: 43.75px; }
.point-text h4 { font-size: 25px; margin-bottom: 5px; }
.point-text p { font-size: 13.75px; }
.manufacturing-image { width: 493.75px; height: 725px; }

.digital-section { max-width: 1312.5px; margin: 75px auto 75px; padding: 0 25px; }
.digital-title { margin: 22.5px 0 17.5px; }
.digital-title .regular { font-size: clamp(35px, 4vw, 50px); }
.digital-title .bold { font-size: clamp(35px, 4vw, 50px); margin: 6.25px; }
.digital-desc { max-width: 950px; margin: 18.75px auto 37.5px; font-size: 15px; }
.digital-grid { gap: 32.5px; margin-bottom: 37.5px; }
.digital-card img { height: 187.5px; margin-bottom: 15px; }
.digital-card h4 { font-size: 18.75px; margin-bottom: 7.5px; }
.digital-card p { font-size: 13.75px; }
.digital-logos { gap: 37.5px; }
.digital-logos img { width: 87.5px; height: 87.5px; }

.marketing-section { max-width: 1562.5px; margin: 12.5px auto; padding: 0 12.5px; }
.marketing-wrapper { padding: 75px 150px 125px; }
.digital-marketing-glass-pill { gap: 12.5px; padding: 8.75px 22.5px; }
.digital-marketing-glass-pill span { font-size: 17.5px; }
.digital-marketing-glass-pill::before { top: -6.25px; left: 2.5px; width: 47.5px; height: 25px; }
.digital-marketing-glass-pill::after { bottom: -2.5px; right: 6.25px; width: 37.5px; height: 11.25px; }
.digital-marketing-glass-pill span::before { width: 37.5px; height: 8.75px; }
.marketing-title { margin: 22.5px 0 15px; }
.marketing-title .regular { font-size: clamp(37.5px, 4vw, 50px); }
.marketing-title .bold { font-size: clamp(37.5px, 4vw, 50px); }
.marketing-desc { max-width: 975px; margin: 0 auto 37.5px; font-size: 15.625px; }
.marketing-grid { gap: 18.75px; }
.marketing-card { padding: 32.5px 31.25px; }
.marketing-card::before { top: -18.75px; left: -22.5px; width: 125px; height: 37.5px; }
.marketing-card::after { bottom: -18.75px; right: -18.75px; width: 187.5px; height: 43.75px; }
.marketing-card img { width: 100px; height: 100px; margin-bottom: 62.5px; }
.marketing-card h4 { font-size: 27.5px; margin-bottom: 10px; }
.marketing-card p { font-size: 15px; margin-bottom: 50px; }
.marketing-logos { margin-top: 50px; margin-bottom: 50px; gap: 112.5px; }
.marketing-logos img { width: 150px; height: 75px; }

.export-section { max-width: 1250px; margin: 37.5px auto; padding: 0 25px; }
.export-pill { gap: 12.5px; padding: 10px 22.5px; }
.export-pill img { width: 17.5px; }
.export-pill span { font-size: 16.25px; }
.export-title { margin: 27.5px 0 62.5px; font-size: clamp(35px, 4vw, 47.5px); }
.export-info-grid { gap: 27.5px; margin-bottom: 87.5px; }
.export-info-card { padding: 32.5px; gap: 22.5px; }
.export-info-card img { width: 62.5px; height: 62.5px; }
.export-info-card p { font-size: 13.75px; }
.export-steps { margin-top: 250px; padding: 0 25px; }
.export-steps::before { height: 1.25px; }
.step-label { font-size: 15px; padding: 7.5px 20px; }
.step-card { width: 350px; gap: 15px; left: 12.5px; }
.step-card img { width: 75px; height: 75px; }
.step-text h4 { font-size: 21.25px; margin-bottom: 5px; }
.step-text p { font-size: 13.75px; }
.export-step.top .step-card { bottom: calc(50% + 112.5px); }
.export-step.top .step-label::after { top: -106.25px; width: 1.25px; height: 106.25px; }
.export-step.bottom .step-card { top: calc(50% + 112.5px); }
.export-step.bottom .step-label::after { bottom: -106.25px; width: 1.25px; height: 106.25px; }

.sales-section { max-width: 1250px; margin: 300px auto 125px; padding: 0 25px; }
.sales-title { margin-top: 25px; margin-bottom: 20px; }
.sales-title .regular { font-size: clamp(40px, 4vw, 50px); }
.sales-title .bold { font-size: clamp(40px, 4vw, 50px); margin-left: 7.5px; }

.sales-desc { max-width: 975px; margin: 0 auto 50px; font-size: 15px; }
.sales-grid { gap: 27.5px; }
.sales-card { padding: 32.5px 27.5px; }
.sales-card img { width: 68.75px; height: 68.75px; margin-bottom: 17.5px; }
.sales-card h3 { font-size: 40px; margin-bottom: 5px; }
.sales-card h4 { font-size: 21.25px; margin-bottom: 10px; }
.sales-card p { max-width: 187.5px; font-size: 13.75px; }

.global-access-section { max-width: 1250px; margin: 0 auto 125px; padding: 0 25px; }
.global-pill { gap: 12.5px; padding: 10px 22.5px; margin-bottom: 20px; }
.global-pill img { width: 17.5px; }
.global-pill span { font-size: 16.25px; }
.global-title { font-size: clamp(37.5px, 4vw, 50px); margin-bottom: 50px; }
.global-logos-grid { gap: 27.5px; }
.logo-card { padding: 12.5px 12.5px; }
.logo-card img { width: 162.5px; height: 100px; }

.site-footer { padding: 87.5px 25px 50px; }
  .footer-container { max-width: 1250px; gap: 87.5px;}
  .footer-logo { width: 62.5px; margin-bottom: 31.25px;}
  .footer-item { gap: 15px; margin-bottom: 17.5px;}
  .footer-item img { margin-top: 5px;}
  .footer-item span { font-size: 16.25px;}
  .footer-links-col h4 { margin-bottom: 22.5px;}
  .footer-links-col a { font-size: 20px; margin-bottom: 17.5px;}
  .footer-about-col p { font-size: 18.75px; margin-bottom: 30px; margin-top: 22.5px;}
  .footer-social { gap: 20px;}
  .footer-social img { width: 37.5px; padding: 7.5px;}
  .footer-divider { max-width: 1250px; margin: 50px auto 25px; height: 1.25px; }
  .footer-bottom { max-width: 1250px; font-size: 15px; }
  .footer-bottom-links { gap: 22.5px; }
  .footer-brand { margin-top: 75px; font-size: 312.5px; }

}





/* =========================
   (min-width: 1920px)
========================= */

@media (min-width: 1920px) {

  .hero { margin-bottom: 30px; padding-top: 138px; }
  .header { padding: 24px 30px 12px; }
  .header-container { max-width: 1440px; height: 102px; }
  .logo { font-size: 39px; }
  .nav { gap: 42px; }
  .nav a { font-size: 21px; }
  
  .services-hero { max-width: 1650px; padding: 82.5px 30px 45px; gap: 90px; }
  .services-pill { gap: 10.5px; padding: 10.5px 18px; margin-bottom: 24px; }
  .services-pill img { width: 21px; height: 21px; }
  .services-pill span { font-size: 18px; }
  
  .services-title .line-one { font-size: clamp(51px, 4.2vw, 57px); }
  .services-title .line-two { font-size: clamp(51px, 4.2vw, 57px); }
  
  .services-right { padding-top: 15px; }
  .services-desc { font-size: 21px; margin-bottom: 27px; }
  
  .contact-btn { gap: 7.5px; height: 67.5px; padding: 9px 15px 9px 9px; font-size: 22.5px; }
  .btn-icon { width: 52.5px; height: 52.5px; }
  .btn-icon img { width: 27px; height: 27px; }
  
  .services-content { max-width: 1500px; margin: 0 auto 120px; }
  .services-image-wrap img { height: 630px; }
  .services-card { max-width: 1830px; margin-top: -141px; }
  .services-card-content { padding: 60px 90px 90px; }
  
  .services-glass-pill { gap: 10.5px; padding: 12px 22.5px; }
  .services-glass-pill span { font-size: 19.5px; }
  .services-glass-pill img { width: 21px; height: 21px; }
  
  .services-glass-pill::before { width: 45px; height: 24px; top: -15px; left: 18px; }
  .services-glass-pill span::before { width: 45px; height: 18px; top: 19.5px; left: -75px; }
  .services-glass-pill::after { width: 45px; height: 30px; bottom: 75px; right: -15px; }
  .services-glass-pill span::after { width: 45px; height: 21px; bottom: -7.5px; right: -75px; }
  
  .services-content-title { margin-top: 37.5px; margin-bottom: 27px; }
  .services-content-title .regular { font-size: clamp(15px, 4vw, 58.5px); }
  .services-content-title .bold { font-size: clamp(15px, 4vw, 58.5px); margin-left: 9px; }
  
  .services-content-desc { max-width: 1020px; margin: 0 auto 60px; font-size: 19.5px; }
  
  .services-feature-grid { width: 1500px; gap: 15px; }
  .feature-card { padding: 45px 42px; }
  .feature-icon { width: 66px; height: 66px; margin-bottom: 21px; }
  .feature-icon img { width: 37.5px; }
  .feature-card h4 { font-size: 21px; margin-bottom: 9px; }
  .feature-card p { font-size: 18px; }

.branding-section { max-width: 1650px; margin: 90px auto 75px; padding: 0 30px; }
.branding-title { margin: 30px 0 21px; }
.branding-title .regular { font-size: clamp(42px, 4vw, 58.5px); }
.branding-title .bold { font-size: clamp(42px, 4vw, 58.5px); }
.branding-desc { max-width: 1080px; margin: 0 auto 75px; font-size: 18px; }
.branding-grid { gap: 15px; margin: 0 120px; }
.branding-card { padding: 39px; min-height: 540px; width: 675px; }
.card-text h4 { font-size: 45px; }
.card-text h3 { font-size: 45px; margin-bottom: 15px; }
.card-text p { max-width: 255px; font-size: 18px; }
.card-image { width: 360px; }
.card-arrow { left: 30px; bottom: 30px; width: 75px; height: 75px; }
.card-arrow img { width: 37.5px; }

.manufacturing-section { max-width: 1800px; }
.manufacturing-wrapper { gap: 72px; padding: 60px 195px; }
.manufacturing-title { margin: 27px 0 21px; }
.manufacturing-title .line-regular { font-size: clamp(42px, 4vw, 57px); }
.manufacturing-title .line-bold { font-size: clamp(42px, 4vw, 57px); }
.line-mixed .regular-part { font-size: clamp(42px, 4vw, 57px); }
.line-mixed .bold-part { font-size: clamp(42px, 4vw, 57px); margin-left: 9px; }
.manufacturing-desc { margin-bottom: 48px; font-size: 18px; }
.manufacturing-points { gap: 30px; }
.point-item { max-width: 780px; gap: 30px; }
.point-num { font-size: 67.5px; min-width: 52.5px; }
.point-text h4 { font-size: 30px; margin-bottom: 6px; }
.point-text p { font-size: 16.5px; }
.manufacturing-image { width: 592.5px; height: 870px; }

.digital-section { max-width: 1575px; margin: 90px auto 90px; padding: 0 30px; }
.digital-title { margin: 27px 0 21px; }
.digital-title .regular { font-size: clamp(42px, 4vw, 60px); }
.digital-title .bold { font-size: clamp(42px, 4vw, 60px); margin: 7.5px; }
.digital-desc { max-width: 1140px; margin: 22.5px auto 45px; font-size: 18px; }
.digital-grid { gap: 39px; margin-bottom: 45px; }
.digital-card img { height: 225px; margin-bottom: 18px; }
.digital-card h4 { font-size: 22.5px; margin-bottom: 9px; }
.digital-card p { font-size: 16.5px; }
.digital-logos { gap: 45px; }
.digital-logos img { width: 105px; height: 105px; }

.marketing-section { max-width: 1875px; margin: 15px auto; padding: 0 15px; }
.marketing-wrapper { padding: 90px 180px 150px; }
.digital-marketing-glass-pill { gap: 15px; padding: 10.5px 27px; }
.digital-marketing-glass-pill span { font-size: 21px; }
.digital-marketing-glass-pill::before { top: -7.5px; left: 3px; width: 57px; height: 30px; }
.digital-marketing-glass-pill::after { bottom: -3px; right: 7.5px; width: 45px; height: 13.5px; }
.digital-marketing-glass-pill span::before { width: 45px; height: 10.5px; }
.marketing-title { margin: 27px 0 18px; }
.marketing-title .regular { font-size: clamp(45px, 4vw, 60px); }
.marketing-title .bold { font-size: clamp(45px, 4vw, 60px); }
.marketing-desc { max-width: 1170px; margin: 0 auto 45px; font-size: 18.75px; }
.marketing-grid { gap: 22.5px; }
.marketing-card { padding: 39px 37.5px; }
.marketing-card::before { top: -22.5px; left: -27px; width: 150px; height: 45px; }
.marketing-card::after { bottom: -22.5px; right: -22.5px; width: 225px; height: 52.5px; }
.marketing-card img { width: 120px; height: 120px; margin-bottom: 75px; }
.marketing-card h4 { font-size: 33px; margin-bottom: 12px; }
.marketing-card p { font-size: 18px; margin-bottom: 60px; }
.marketing-logos { margin-top: 60px; margin-bottom: 60px; gap: 135px; }
.marketing-logos img { width: 180px; height: 90px; }

.export-section { max-width: 1500px; margin: 45px auto; padding: 0 30px; }
.export-pill { gap: 15px; padding: 12px 27px; }
.export-pill img { width: 21px; }
.export-pill span { font-size: 19.5px; }
.export-title { margin: 33px 0 75px; font-size: clamp(42px, 4vw, 57px); }
.export-info-grid { gap: 33px; margin-bottom: 105px; }
.export-info-card { padding: 39px; gap: 27px; }
.export-info-card img { width: 75px; height: 75px; }
.export-info-card p { font-size: 16.5px; }
.export-steps { margin-top: 300px; padding: 0 30px; }
.export-steps::before { height: 1.5px; }
.step-label { font-size: 18px; padding: 9px 24px; }
.step-card { width: 420px; gap: 18px; left: 15px; }
.step-card img { width: 90px; height: 90px; }
.step-text h4 { font-size: 25.5px; margin-bottom: 6px; }
.step-text p { font-size: 16.5px; }
.export-step.top .step-card { bottom: calc(50% + 135px); }
.export-step.top .step-label::after { top: -127.5px; width: 1.5px; height: 127.5px; }
.export-step.bottom .step-card { top: calc(50% + 135px); }
.export-step.bottom .step-label::after { bottom: -127.5px; width: 1.5px; height: 127.5px; }

.sales-section { max-width: 1500px; margin: 360px auto 150px; padding: 0 30px; }
.sales-title { margin-top: 30px; margin-bottom: 24px; }
.sales-title .regular { font-size: clamp(48px, 4vw, 60px); }
.sales-title .bold { font-size: clamp(48px, 4vw, 60px); margin-left: 9px; }

.sales-desc { max-width: 1170px; margin: 0 auto 60px; font-size: 18px; }
.sales-grid { gap: 33px; }
.sales-card { padding: 39px 33px; }
.sales-card img { width: 82.5px; height: 82.5px; margin-bottom: 21px; }
.sales-card h3 { font-size: 48px; margin-bottom: 6px; }
.sales-card h4 { font-size: 25.5px; margin-bottom: 12px; }
.sales-card p { max-width: 225px; font-size: 16.5px; }

.global-access-section { max-width: 1500px; margin: 0 auto 150px; padding: 0 30px; }
.global-pill { gap: 15px; padding: 12px 27px; margin-bottom: 24px; }
.global-pill img { width: 21px; }
.global-pill span { font-size: 19.5px; }
.global-title { font-size: clamp(45px, 4vw, 60px); margin-bottom: 60px; }
.global-logos-grid { gap: 33px; }
.logo-card { padding: 15px 15px; }
.logo-card img { width: 195px; height: 120px; }

.site-footer { padding: 105px 30px 60px; }
  .footer-container { max-width: 1500px; gap: 105px;}
  .footer-logo { width: 75px; margin-bottom: 37.5px;}
  .footer-item { gap: 18px; margin-bottom: 21px;}
  .footer-item img { margin-top: 6px;}
  .footer-item span { font-size: 19.5px;}
  .footer-links-col h4 { margin-bottom: 27px;}
  .footer-links-col a { font-size: 24px; margin-bottom: 21px;}
  .footer-about-col p { font-size: 22.5px; margin-bottom: 36px; margin-top: 27px;}
  .footer-social { gap: 24px;}
  .footer-social img { width: 45px; padding: 9px;}
  .footer-divider { max-width: 1500px; margin: 60px auto 30px; height: 1.5px; }
  .footer-bottom { max-width: 1500px; font-size: 18px; }
  .footer-bottom-links { gap: 27px; }
  .footer-brand { margin-top: 90px; font-size: 375px; }

}






/* =========================
   (min-width: 2560px)
========================= */

@media (min-width: 2560px) {

  .hero { margin-bottom: 40px; padding-top: 184px; }
  .header { padding: 32px 40px 16px; }
  .header-container { max-width: 1920px; height: 136px; }
  .logo { font-size: 52px; }
  .nav { gap: 56px; }
  .nav a { font-size: 28px; }
  
  .services-hero { max-width: 2200px; padding: 110px 40px 60px; gap: 120px; }
  .services-pill { gap: 14px; padding: 14px 24px; margin-bottom: 32px; }
  .services-pill img { width: 28px; height: 28px; }
  .services-pill span { font-size: 24px; }
  
  .services-title .line-one { font-size: clamp(68px, 4.2vw, 76px); }
  .services-title .line-two { font-size: clamp(68px, 4.2vw, 76px); }
  
  .services-right { padding-top: 20px; }
  .services-desc { font-size: 28px; margin-bottom: 36px; }
  
  .contact-btn { gap: 10px; height: 90px; padding: 12px 20px 12px 12px; font-size: 30px; }
  .btn-icon { width: 70px; height: 70px; }
  .btn-icon img { width: 36px; height: 36px; }
  
  .services-content { max-width: 2000px; margin: 0 auto 160px; }
  .services-image-wrap img { height: 840px; }
  .services-card { max-width: 2440px; margin-top: -188px; }
  .services-card-content { padding: 80px 120px 120px; }
  
  .services-glass-pill { gap: 14px; padding: 16px 30px; }
  .services-glass-pill span { font-size: 26px; }
  .services-glass-pill img { width: 28px; height: 28px; }
  
  .services-glass-pill::before { width: 60px; height: 32px; top: -20px; left: 24px; }
  .services-glass-pill span::before { width: 60px; height: 24px; top: 26px; left: -100px; }
  .services-glass-pill::after { width: 60px; height: 40px; bottom: 100px; right: -20px; }
  .services-glass-pill span::after { width: 60px; height: 28px; bottom: -10px; right: -100px; }
  
  .services-content-title { margin-top: 50px; margin-bottom: 36px; }
  .services-content-title .regular { font-size: clamp(20px, 4vw, 78px); }
  .services-content-title .bold { font-size: clamp(20px, 4vw, 78px); margin-left: 12px; }
  
  .services-content-desc { max-width: 1360px; margin: 0 auto 80px; font-size: 26px; }
  
  .services-feature-grid { width: 2000px; gap: 20px; }
  .feature-card { padding: 60px 56px; }
  .feature-icon { width: 88px; height: 88px; margin-bottom: 28px; }
  .feature-icon img { width: 50px; }
  .feature-card h4 { font-size: 28px; margin-bottom: 12px; }
  .feature-card p { font-size: 24px; }
  
  .branding-section { max-width: 2200px; margin: 120px auto 100px; padding: 0 40px; }
  .branding-title { margin: 40px 0 28px; }
  .branding-title .regular { font-size: clamp(56px, 4vw, 78px); }
  .branding-title .bold { font-size: clamp(56px, 4vw, 78px); }
  .branding-desc { max-width: 1440px; margin: 0 auto 100px; font-size: 24px; }
  .branding-grid { gap: 20px; margin: 0 160px; }
  .branding-card { padding: 52px; min-height: 720px; width: 900px; }
  .card-text h4 { font-size: 60px; }
  .card-text h3 { font-size: 60px; margin-bottom: 20px; }
  .card-text p { max-width: 340px; font-size: 24px; }
  .card-image { width: 480px; }
  .card-arrow { left: 40px; bottom: 40px; width: 100px; height: 100px; }
  .card-arrow img { width: 50px; }
  
  .manufacturing-section { max-width: 2400px; }
  .manufacturing-wrapper { gap: 96px; padding: 80px 260px; }
  .manufacturing-title { margin: 36px 0 28px; }
  .manufacturing-title .line-regular { font-size: clamp(56px, 4vw, 76px); }
  .manufacturing-title .line-bold { font-size: clamp(56px, 4vw, 76px); }
  .line-mixed .regular-part { font-size: clamp(56px, 4vw, 76px); }
  .line-mixed .bold-part { font-size: clamp(56px, 4vw, 76px); margin-left: 12px; }
  .manufacturing-desc { margin-bottom: 64px; font-size: 24px; }
  .manufacturing-points { gap: 40px; }
  .point-item { max-width: 1040px; gap: 40px; }
  .point-num { font-size: 90px; min-width: 70px; }
  .point-text h4 { font-size: 40px; margin-bottom: 8px; }
  .point-text p { font-size: 22px; }
  .manufacturing-image { width: 790px; height: 1160px; }
  
  .digital-section { max-width: 2100px; margin: 120px auto 120px; padding: 0 40px; }
  .digital-title { margin: 36px 0 28px; }
  .digital-title .regular { font-size: clamp(56px, 4vw, 80px); }
  .digital-title .bold { font-size: clamp(56px, 4vw, 80px); margin: 10px; }
  .digital-desc { max-width: 1520px; margin: 30px auto 60px; font-size: 24px; }
  .digital-grid { gap: 52px; margin-bottom: 60px; }
  .digital-card img { height: 300px; margin-bottom: 24px; }
  .digital-card h4 { font-size: 30px; margin-bottom: 12px; }
  .digital-card p { font-size: 22px; }
  .digital-logos { gap: 60px; }
  .digital-logos img { width: 140px; height: 140px; }

.marketing-section { max-width: 2500px; margin: 20px auto; padding: 0 20px; }
.marketing-wrapper { padding: 120px 240px 200px; }
.digital-marketing-glass-pill { gap: 20px; padding: 14px 36px; }
.digital-marketing-glass-pill span { font-size: 28px; }
.digital-marketing-glass-pill::before { top: -10px; left: 4px; width: 76px; height: 40px; }
.digital-marketing-glass-pill::after { bottom: -4px; right: 10px; width: 60px; height: 18px; }
.digital-marketing-glass-pill span::before { width: 60px; height: 14px; }
.marketing-title { margin: 36px 0 24px; }
.marketing-title .regular { font-size: clamp(60px, 4vw, 80px); }
.marketing-title .bold { font-size: clamp(60px, 4vw, 80px); }
.marketing-desc { max-width: 1560px; margin: 0 auto 60px; font-size: 25px; }
.marketing-grid { gap: 30px; }
.marketing-card { padding: 52px 50px; }
.marketing-card::before { top: -30px; left: -36px; width: 200px; height: 60px; }
.marketing-card::after { bottom: -30px; right: -30px; width: 300px; height: 70px; }
.marketing-card img { width: 160px; height: 160px; margin-bottom: 100px; }
.marketing-card h4 { font-size: 44px; margin-bottom: 16px; }
.marketing-card p { font-size: 24px; margin-bottom: 80px; }
.marketing-logos { margin-top: 80px; margin-bottom: 80px; gap: 180px; }
.marketing-logos img { width: 240px; height: 120px; }

.export-section { max-width: 2000px; margin: 60px auto; padding: 0 40px; }
.export-pill { gap: 20px; padding: 16px 36px; }
.export-pill img { width: 28px; }
.export-pill span { font-size: 26px; }
.export-title { margin: 44px 0 100px; font-size: clamp(56px, 4vw, 76px); }
.export-info-grid { gap: 44px; margin-bottom: 140px; }
.export-info-card { padding: 52px; gap: 36px; }
.export-info-card img { width: 100px; height: 100px; }
.export-info-card p { font-size: 22px; }
.export-steps { margin-top: 400px; padding: 0 40px; }
.export-steps::before { height: 2px; }
.step-label { font-size: 24px; padding: 12px 32px; }
.step-card { width: 560px; gap: 24px; left: 20px; }
.step-card img { width: 120px; height: 120px; }
.step-text h4 { font-size: 34px; margin-bottom: 8px; }
.step-text p { font-size: 22px; }
.export-step.top .step-card { bottom: calc(50% + 180px); }
.export-step.top .step-label::after { top: -170px; width: 2px; height: 170px; }
.export-step.bottom .step-card { top: calc(50% + 180px); }
.export-step.bottom .step-label::after { bottom: -170px; width: 2px; height: 170px; }

.sales-section { max-width: 2000px; margin: 480px auto 200px; padding: 0 40px; }
.sales-title { margin-top: 40px; margin-bottom: 32px; }
.sales-title .regular { font-size: clamp(64px, 4vw, 80px); }
.sales-title .bold { font-size: clamp(64px, 4vw, 80px); margin-left: 12px; }

.sales-desc { max-width: 1560px; margin: 0 auto 80px; font-size: 24px; }
.sales-grid { gap: 44px; }
.sales-card { padding: 52px 44px; }
.sales-card img { width: 110px; height: 110px; margin-bottom: 28px; }
.sales-card h3 { font-size: 64px; margin-bottom: 8px; }
.sales-card h4 { font-size: 34px; margin-bottom: 16px; }
.sales-card p { max-width: 300px; font-size: 22px; }

.global-access-section { max-width: 2000px; margin: 0 auto 200px; padding: 0 40px; }
.global-pill { gap: 20px; padding: 16px 36px; margin-bottom: 32px; }
.global-pill img { width: 28px; }
.global-pill span { font-size: 26px; }
.global-title { font-size: clamp(60px, 4vw, 80px); margin-bottom: 80px; }
.global-logos-grid { gap: 44px; }
.logo-card { padding: 20px 20px; }
.logo-card img { width: 260px; height: 160px; }

.site-footer { padding: 140px 40px 80px; }
  .footer-container { max-width: 2000px; gap: 140px;}
  .footer-logo { width: 100px; margin-bottom: 50px;}
  .footer-item { gap: 24px; margin-bottom: 28px;}
  .footer-item img { margin-top: 8px;}
  .footer-item span { font-size: 26px;}
  .footer-links-col h4 { margin-bottom: 36px;}
  .footer-links-col a { font-size: 32px; margin-bottom: 28px;}
  .footer-about-col p { font-size: 30px; margin-bottom: 48px; margin-top: 36px;}
  .footer-social { gap: 32px;}
  .footer-social img { width: 60px; padding: 12px;}
  .footer-divider { max-width: 2000px; margin: 80px auto 40px; height: 2px; }
  .footer-bottom { max-width: 2000px; font-size: 24px; }
  .footer-bottom-links { gap: 36px; }
  .footer-brand { margin-top: 120px; font-size: 500px; }

}











































/* =========================
   MOBILE VIEW
========================= */
@media (max-width:480px){

  body{ overflow-x:hidden;}

  .hero{ padding-top:90px; align-items:center;}

  .header{ position:fixed; top:0; left:0; width:100%; z-index:9999; display:flex; justify-content:center; padding:12px 0;}

  .header-container{ width:92%; max-width:420px; height:56px; display:flex; align-items:center; justify-content:space-between; margin:0 auto;background: rgba(255, 255, 255, 0.65);backdrop-filter: blur(8px);-webkit-backdrop-filter: blur(12px);border-radius: 999px;border: 0.5px solid rgba(0, 0, 0, 0.05);box-shadow:0 24px 60px rgba(0, 0, 0, 0.055),inset 0 1px 0 rgba(255, 255, 255, 0.32);}

  .logo{ font-size:20px;}

  .menu-toggle{ display:block; font-size:22px; color: #000; background:none; border:none; cursor:pointer;}

  .nav{ display:none; position:absolute; top:70px; left:50%; transform:translateX(-50%); width:92%; max-width:420px; background:#fff; border-radius:16px; padding:18px; flex-direction:column; gap:16px; box-shadow:0 20px 40px rgba(0,0,0,0.08);}

  .nav.show{ display:flex;}

  .nav a{ font-size:15px; text-align:center;}

  .services-hero{grid-template-columns:1fr;gap:22px;padding:20px 14px 10px;text-align:center;}

  .services-left{align-items:center;}
  
  .services-pill{margin:0 auto 12px;padding:6px 12px;}
  
  .services-pill span{font-size:11px;}
  
  .services-title{text-align:center;}
  
  .services-title .line-one{font-size:26px;line-height:1.2;}
  
  .services-title .line-two{font-size:26px;line-height:1.2;}
  
  .services-right{align-items:center;padding-top:0;}
  
  .services-desc{font-size:13px;line-height:1.6;text-align:center;margin-bottom:16px;}
  
  .contact-btn{align-self:center;height:42px;padding:6px 12px;font-size:14px;}
  
  .btn-icon{width:32px;height:32px;}
  
  .btn-icon img{width:16px;height:16px;}

  .btn-secondary{ box-shadow: 0 6px 14px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.25);}

  .btn-secondary .btn-icon{ box-shadow: 0 4px 10px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.25);}  
  
  .services-content{max-width:100%;margin: 20px auto 40px;padding:0 14px;}

  .services-image-wrap{border-radius:14px;}
  
  .services-image-wrap img{height:220px;border-radius:14px;}
  
  .services-card{margin-top:-60px;padding:0 14px;}
  
  .services-card-content{padding:24px 16px 30px;border-radius:16px;}
  
  .services-glass-pill{padding:6px 12px;gap:6px;}
  
  .services-glass-pill span{font-size:12px;}
  
  .services-glass-pill img{width:12px;height:12px;}
  
  .services-content-title{margin-top:18px;margin-bottom:12px;line-height:1.2;}
  
  .services-content-title .regular{font-size:24px;}
  
  .services-content-title .bold{font-size:24px;margin-left:4px;}
  
  .services-content-desc{font-size:12px;line-height:1.6;margin-bottom:24px;padding:0 6px;text-align:center;}
    
  .services-feature-grid{width:100%;grid-template-columns:1fr;gap:12px;margin:0 auto;}
  
  .services-feature-grid .feature-card:nth-child(n){grid-column:auto;}
  
  .feature-card{padding:18px 16px;border-radius:14px;}
  
  .feature-icon{width:36px;height:36px;margin-bottom:10px;}
  
  .feature-icon img{width:20px;}
  
  .feature-card h4{font-size:13px;margin-bottom:4px;}
  
  .feature-card p{font-size:12px;line-height:1.5;}

  .branding-section{max-width:100%;margin:40px auto 30px;padding:0 14px;}

  .branding-title{margin:14px 0 10px;}
  
  .branding-title .regular{font-size:24px;line-height:1.25;}
  
  .branding-title .bold{font-size:24px;line-height:1.25;}
  
  .branding-desc{font-size:12px;line-height:1.6;margin:0 auto 26px;padding:0 6px;text-align:center;}
  
  .branding-grid{grid-template-columns:1fr;gap:14px;margin:0;}
  
  .branding-card{width:100%;min-height:240px;padding:18px;border-radius:14px;}
  
  .card-text h4{font-size:20px;}
  
  .card-text h3{font-size:20px;margin-bottom:6px;}
  
  .card-text p{max-width:60%;font-size:12px;line-height:1.5;}
  
  .card-image{width:150px;right:-10px;bottom:-10px;opacity:.95;}
  
  .card-arrow{width:38px;height:38px;left:14px;bottom:14px;}
  
  .card-arrow img{width:18px;}

  .manufacturing-section{max-width:100%;margin:30px auto;padding:0 14px;}

  .manufacturing-wrapper{grid-template-columns:1fr;gap:22px;padding:22px 16px;border-radius:16px;text-align:center;}
  
  .manufacturing-content{align-items:center;text-align:center;order:1;}
  
  .manufacturing-content .services-glass-pill{margin:0 auto;}
  
  .manufacturing-title{margin:14px auto 10px;line-height:1.2;text-align:center;}
  
  .manufacturing-title .line-regular{font-size:24px;}
  
  .manufacturing-title .line-bold{font-size:24px;}
  
  .line-mixed .regular-part{font-size:24px;}
  
  .line-mixed .bold-part{font-size:24px;margin-left:4px;}
  
  .manufacturing-image{grid-row: 2;width:100%;height:300px;border-radius:14px;}
  
  .manufacturing-image img{width:100%;height:100%;object-fit:cover;object-position:top;}
  
  .manufacturing-desc{font-size:12px;line-height:1.6;margin:10px auto 20px;text-align:center;max-width:320px;order:3;}
  
  .manufacturing-points{grid-row: 3;gap:16px;text-align:left;width:100%;order:4;}
  
  .point-item{max-width:100%;gap:12px;}
  
  .point-num{font-size:28px;min-width:24px;}
  
  .point-text h4{font-size:16px;margin-bottom:2px;}
  
  .point-text p{font-size:12px;line-height:1.5;}

  .digital-section{max-width:100%;margin:40px auto;padding:0 14px;text-align:center;}

  .digital-section .services-glass-pill{margin:0 auto;}
  
  .digital-title{margin:14px auto 10px;line-height:1.25;}
  
  .digital-title .regular{font-size:24px;}
  
  .digital-title .bold{font-size:24px;margin:2px 0;}
  
  .digital-desc{font-size:12px;line-height:1.6;margin:10px auto 22px;max-width:320px;text-align:center;}
  
  .digital-grid{grid-template-columns:repeat(2,1fr);gap:14px;margin-bottom:22px;}
  
  .digital-card{text-align:left;}
  
  .digital-card img{height:120px;border-radius:12px;margin-bottom:8px;}
  
  .digital-card h4{font-size:14px;margin-bottom:4px;}
  
  .digital-card p{font-size:12px;line-height:1.5;}
  
  .digital-logos{gap:16px;justify-content:center;}
  
  .digital-logos img{width:48px;height:48px;}

  .marketing-section{max-width:100%;margin:30px auto;padding:0 14px;}

  .marketing-wrapper{padding:28px 16px 34px;border-radius:16px;text-align:center;}
  
  .digital-marketing-glass-pill{margin:0 auto;padding:6px 14px;gap:6px;}
  
  .digital-marketing-glass-pill span{font-size:12px;text-align:center;}
  
  .marketing-title{margin:14px auto 10px;line-height:1.25;}
  
  .marketing-title .regular{font-size:24px;}
  
  .marketing-title .bold{font-size:24px;}
  
  .marketing-desc{font-size:12px;line-height:1.6;margin:10px auto 22px;max-width:320px;text-align:center;}
  
  .marketing-grid{grid-template-columns:repeat(2,1fr);gap:12px;}
  
  .marketing-card{padding:18px 16px;border-radius:14px;}
  
  .marketing-card img{width:56px;height:56px;margin-bottom:20px;}
  
  .marketing-card h4{font-size:16px;margin-bottom:6px;}
  
  .marketing-card p{font-size:12px;line-height:1.5;margin-bottom:10px;}
  
  .marketing-logos{gap:26px;margin:26px auto 10px;}
  
  .marketing-logos img{width:70px;height:36px;}

  .export-section{max-width:100%;margin:30px auto;padding:0 14px;}

  .export-pill{margin:0 auto;padding:6px 14px;gap:6px;}
  
  .export-pill span{font-size:12px;text-align:center;}
  
  .export-title{margin:16px auto 26px;font-size:24px;line-height:1.3;}
  
  .export-info-grid{grid-template-columns:1fr;gap:14px;margin-bottom:34px;}
  
  .export-info-card{padding:18px;border-radius:14px;gap:12px;}
  
  .export-info-card img{width:40px;height:40px;}
  
  .export-info-card p{font-size:12px;line-height:1.6;}
  
  .export-steps{position:relative;display:flex;flex-direction:column;align-items:flex-start;gap:42px;margin-top:35px;padding-left:42px;}

  .export-steps::before{display: none;}
  
  .export-step{position:relative;display:flex;flex-direction:column;align-items:flex-start;}
  
  .step-label{position:absolute;left:-42px;top:20px;font-size:10.5px;padding:4px 12px;background:#fff;border:1px solid rgb(54,54,54);border-radius:999px;z-index:2;}
  
  .step-label::after{display: none;}
  
  .step-card{position:relative;width:100%;display:flex;align-items:center;gap:12px;padding:0;}
  
  .step-card img{width:48px;height:48px;margin-left:10px;}
  
  .step-text h4{font-size:15px;margin-bottom:2px;text-align:left;}
  
  .step-text p{font-size:11.5px;line-height:1.45;text-align:left;}

  .sales-section{max-width:100%;margin:60px auto 50px;padding:0 14px;text-align:center;}

  .sales-title{margin-top:14px;margin-bottom:12px;line-height:1.25;}
  
  .sales-title .regular{font-size:24px;}
  
  .sales-title .bold{font-size:24px;margin-left:4px;}
  
  .sales-desc{font-size:12px;line-height:1.6;margin-bottom:26px;padding:0 6px;}
  
  .sales-grid{grid-template-columns:repeat(2,1fr);gap:14px;}
  
  .sales-card{border-radius:14px;padding:18px 14px;text-align:left;}
  
  .sales-card img{width:44px;height:44px;margin-bottom:10px;}
  
  .sales-card h3{font-size:24px;margin-bottom:2px;}
  
  .sales-card h4{font-size:14px;margin-bottom:6px;}
  
  .sales-card p{max-width:100%;font-size:11.5px;line-height:1.5;}

  .global-access-section{max-width:100%;margin:40px auto 60px;padding:0 14px;text-align:center;}

  .global-pill{margin:0 auto 12px;padding:6px 14px;gap:6px;}
  
  .global-pill span{font-size:12px;}
  
  .global-title{font-size:24px;line-height:1.3;margin-bottom:26px;}
  
  .global-logos-grid{grid-template-columns:repeat(2,1fr);gap:14px;}
  
  .logo-card{padding:12px 6px;}
  
  .logo-card img{width:100%;max-width:120px;height:60px;object-fit:contain;}

  .site-footer{padding:40px 14px 24px;}
  
  .footer-container{grid-template-columns:1fr;gap:30px;text-align:center;}
  
  .footer-container .footer-col:nth-child(2){justify-self:center;}
  
  .footer-logo{width:42px;margin:0 auto 18px;}
  
  .footer-item{justify-content:center;text-align:center;}
  
  .footer-item span{font-size:12px;line-height:1.5;}
  
  .footer-links-col a{font-size:14px;margin-bottom:10px;}
  
  .footer-about-col p{font-size:13px;margin:10px 0 18px;}
  
  .footer-social{justify-content:center;gap:12px;}
  
  .footer-social img{width:26px;padding:5px;}
  
  .footer-divider{margin:24px auto 16px;}
  
  .footer-bottom{flex-direction:column;gap:10px;font-size:11px;text-align:center;}
  
  .footer-bottom-links{gap:12px;flex-wrap:wrap;justify-content:center;}
  
  .footer-brand{margin-top:30px;font-size:80px;}
  
  .wave-text span{animation-duration:5s;}
}