/* ============ COMPLETE CSS - Paste everything from your original <style> tag ============ */

:root {
 
  /* Brand */
  --primary: #4ba349;
  --primary-dark: #2f7d45;
  --primary-light: #73c76f;
 
  /* Premium Dark Greens */
  --ink: #0f2d1f;
  --ink-2: #17412d;
  --ink-3: #21543a;
 
  /* Secondary Accent */
  --accent: #5b8c5a;
  --gold: #c8a44d;
 
  /* Backgrounds */
  --bg: #f7faf7;
  --bg-2: #edf5ee;
  --bg-3: #e4efe5;
  --card: #ffffff;
 
  /* Borders */
  --line: #dce8de;
 
  /* Text */
  --head: #163222;
  --muted: #5f7467;
  --muted-2: #849588;
 
  /* Effects */
  --radius: 18px;
  --radius-sm: 12px;
 
  --shadow-sm: 0 4px 12px rgba(22,50,34,.06);
  --shadow: 0 20px 50px rgba(22,50,34,.12);
  --shadow-lg: 0 40px 90px rgba(22,50,34,.18);
 
  /* Layout */
  --max: 1240px;
 
  /* Fonts */
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--head);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.serif {
  font-family: var(--serif);
}

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-d);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.eyebrow.light {
  color: var(--teal);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

h2.title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--head);
  margin: 14px 0 0;
}

.lead {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 660px;
  margin-top: 14px;
}

.center-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.center-head .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .92rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: .25s;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(15, 184, 169, .6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(15, 184, 169, .75);
}

.btn-gold {
  background: linear-gradient(135deg, #e0b964, var(--gold));
  color: #3a2c08;
  box-shadow: 0 14px 30px -12px rgba(201, 162, 75, .6);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .16);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-d);
}

/* Top Bar */
.topbar {
  background: var(--ink);
  color: #cdd9ea;
  font-size: .8rem;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.topbar .tb-left {
  display: flex;
  gap: 22px;
  align-items: center;
  min-width: 0;
}

.topbar .tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
  flex: none;
}

.topbar a:hover {
  color: #fff;
}

.tb-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tb-social a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
  transition: .2s;
}

.tb-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.tb-social svg {
  width: 13px;
  height: 13px;
  color: #cdd9ea;
}

.tb-social a:hover svg {
  color: #fff;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: .3s;
}

header.scrolled {
  box-shadow: 0 10px 30px -18px rgba(7, 20, 46, .3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--ink), var(--ink-3));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.logo .mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(15, 184, 169, .5), transparent 60%);
}

.logo .mark svg {
  width: 25px;
  height: 25px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.logo .lt {
  line-height: 1.05;
}

.logo .lt b {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--ink);
  letter-spacing: -.01em;
  display: block;
}

.logo .lt span {
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-d);
  font-weight: 700;
}

/* WordPress Menu Styles */
.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.menu li {
  position: relative;
}

.menu li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: .92rem;
  color: #27384f;
  border-radius: 10px;
  transition: .2s;
}

.menu li a:hover {
  color: var(--teal-d);
  background: var(--bg-2);
}

.menu li a svg {
  width: 13px;
  height: 13px;
  opacity: .65;
  transition: .25s;
}

.menu li:hover>a svg {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s;
  z-index: 50;
  list-style: none;
}

.menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu .sub-menu li a {
  padding: 10px 12px;
  font-size: .88rem;
  font-weight: 500;
  color: #33455e;
  white-space: nowrap;
}

.menu .sub-menu li a:hover {
  background: var(--bg-2);
  color: var(--teal-d);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-pill .pc {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  color: var(--teal-d);
}

.phone-pill .pc svg {
  width: 17px;
  height: 17px;
}

.phone-pill .pt {
  line-height: 1.1;
}

.phone-pill .pt small {
  font-size: .66rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.phone-pill .pt b {
  font-size: .92rem;
  color: var(--ink);
}

/* Mobile Toggle */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #4ba44a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.burger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s;
}

.burger.on span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.on span:nth-child(2) {
  opacity: 0;
}

.burger.on span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, #000 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 30% 20%, #000, transparent 75%);
}

.hero .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  pointer-events: none;
}

.hero .g1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--teal), transparent 65%);
  top: -160px;
  right: -120px;
}

.hero .g2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #1c6fb0, transparent 65%);
  bottom: -160px;
  left: -100px;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 15px 7px 9px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: #dbe6f4;
}

.hero-badge b {
  background: var(--green);
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.6vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 22px 0 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}

.hero p.sub {
  color: #c2d2e6;
  font-size: 1.1rem;
  margin-top: 20px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-chips .chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 9px 15px;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 600;
  color: #dbe6f4;
}

.hero-chips .chip svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* Lead Card Form */
.lead-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  color: var(--head);
  position: relative;
}

.lead-card .lc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.lead-card .lc-top .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}

.lead-card .lc-top .ic svg {
  width: 21px;
  height: 21px;
}

.lead-card h3 {
  font-family: var(--serif);
  font-size: 1.32rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}

.lead-card .lc-sub {
  font-size: .84rem;
  color: var(--muted);
  margin: 6px 0 18px;
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  color: #42536b;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--head);
  background: #fbfcfe;
  transition: .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 184, 169, .12);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-card .btn-primary {
  width: 100%;
  margin-top: 6px;
}

.lead-card .lc-trust {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin-top: 13px;
  font-size: .74rem;
  color: var(--muted-2);
}

.lead-card .lc-trust svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* Stats Section */
.stats {
  background: var(--ink-2);
  color: #fff;
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 34px 24px;
  text-align: center;
}

.stat .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.stat .num span {
  color: var(--teal);
}

.stat .lbl {
  font-size: .82rem;
  color: #a9bdd6;
  margin-top: 8px;
  font-weight: 500;
}

.stats .stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .1);
}

/* Certification Strip */
.certstrip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.certstrip .wrap {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
}

.certstrip .ct-lbl {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.certstrip .cbadge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: #3a4d66;
  font-size: .9rem;
}

.certstrip .cbadge .cd {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  color: var(--teal-d);
}

.certstrip .cbadge .cd svg {
  width: 19px;
  height: 19px;
}

/* Generic Sections */
.sec {
  padding: 88px 0;
    background: var(--bg);

}

.sec.tight {
  padding: 70px 0;
}

.sec.alt {
  background: var(--bg);
}

.sec.dark {
  background: linear-gradient(160deg, var(--ink), var(--ink-2));
  color: #fff;
}

.sec.dark h2.title {
  color: #fff;
}

.sec.dark .lead {
  color: #bccadd;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media .ph {
  border-radius: var(--radius);
  height: auto;
  background: linear-gradient(150deg, var(--ink-2), #15406e);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media .float {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-media .float .fn {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
}

.about-media .float .fl {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
}

.about-media .float .fd {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #e0b964);
  display: grid;
  place-items: center;
  color: #3a2c08;
}

.about-media .float .fd svg {
  width: 24px;
  height: 24px;
}

.about-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.about-list .ai {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-list .ai .aic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  color: var(--teal-d);
  flex: none;
}

.about-list .ai .aic svg {
  width: 20px;
  height: 20px;
}

.about-list .ai b {
  display: block;
  color: var(--head);
  font-size: 1rem;
}

.about-list .ai p {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 2px;
}

.about-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.sig {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sig .sn {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
}

.sig .st {
  font-size: .82rem;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.sig .st b {
  color: var(--head);
  display: block;
}

/* Manufacturing Grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.feat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s;
}

.feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feat:hover::before {
  transform: scaleX(1);
}

.feat .fic {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  color: var(--teal-d);
  margin-bottom: 18px;
  transition: .3s;
}

.feat:hover .fic {
  /*background: linear-gradient(135deg, var(--teal), var(--teal-d));*/
  background: linear-gradient(
    135deg,
    #163222 0%,
    #21543a 50%,
    #4ba349 100%
);
  color: #fff;
}

.feat .fic svg {
  width: 27px;
  height: 27px;
}

.feat h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--head);
  font-weight: 600;
}

.feat p {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 8px;
}

.feat .fc {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal-d);
}

.feat .fc svg {
  width: 14px;
  height: 14px;
  transition: .2s;
}

.feat:hover .fc svg {
  transform: translateX(4px);
}

/* Divisions */
.div-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.divcard {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.sec.dark .divcard {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
}

.divcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.divcard .dvi {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}

.divcard:nth-child(1) .dvi {
  background: linear-gradient(135deg, #0FB8A9, #0a9488);
}

.divcard:nth-child(2) .dvi {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.divcard:nth-child(3) .dvi {
  background: linear-gradient(135deg, #1FBF75, #15994f);
}

.divcard:nth-child(4) .dvi {
  background: linear-gradient(135deg, #e0b964, #C9A24B);
}

.divcard .dvi svg {
  width: 31px;
  height: 31px;
}

.divcard h3 {
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 600;
  color: var(--head);
}

.sec.dark .divcard h3 {
  color: #fff;
}

.divcard p {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 8px;
}

.sec.dark .divcard p {
  color: #aebfd5;
}

.divcard .dl {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--teal);
}

.divcard .dl svg {
  width: 15px;
  height: 15px;
  transition: .2s;
}

.divcard:hover .dl svg {
  transform: translateX(4px);
}

/* Products Grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prod {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.prod:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.prod .pic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  color: var(--teal-d);
  margin-bottom: 16px;
  transition: .3s;
}

.prod:hover .pic {
  /*background: linear-gradient(135deg, var(--teal), var(--teal-d));*/
  background: linear-gradient(
    135deg,
    #163222 0%,
    #21543a 50%,
    #4ba349 100%
);
  color: #fff;
}

.prod .pic svg {
  width: 25px;
  height: 25px;
}

.prod h3 {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--head);
}

.prod p {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 6px;
}

.prod .pcount {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--teal-d);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 999px;
}

/* QA Section */
.qa-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.qa-checks {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.qa-checks .qc {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.qa-checks .qc .qm {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(31, 191, 117, .14);
  display: grid;
  place-items: center;
  color: var(--green);
  flex: none;
  margin-top: 2px;
}

.qa-checks .qc .qm svg {
  width: 15px;
  height: 15px;
}

.qa-checks .qc b {
  color: #fff;
  font-size: .98rem;
}

.qa-checks .qc p {
  color: #aebfd5;
  font-size: .88rem;
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding-bottom: 30px;
  position: relative;
}

.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, .14);
}

.step .sn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 184, 169, .16);
  border: 1px solid rgba(15, 184, 169, .3);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--teal);
  font-size: 1.2rem;
  flex: none;
}

.step h4 {
  color: #fff;
  font-size: 1.06rem;
  font-family: var(--serif);
  font-weight: 600;
}

.step p {
  color: #aebfd5;
  font-size: .88rem;
  margin-top: 4px;
}

/* Exports */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.exp-map {
  background: linear-gradient(150deg, var(--ink), var(--ink-2));
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.exp-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 184, 169, .5) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .35;
}

.exp-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.exp-stats .es {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 20px;
}

.exp-stats .es .en {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

.exp-stats .es .en span {
  color: var(--teal);
}

.exp-stats .es .el {
  font-size: .8rem;
  color: #a9bdd6;
  margin-top: 6px;
}

.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.country-chips span {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: #33455e;
}

.country-chips span:hover {
  border-color: var(--teal);
  color: var(--teal-d);
}

/* Testimonials */
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: .3s;
}

.tcard:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.tcard .quote {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--teal);
  opacity: .22;
  line-height: .6;
  height: 26px;
}

.tcard p {
  font-size: .94rem;
  color: #3a4d66;
  font-style: italic;
  margin: 6px 0 20px;
}

.tcard .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.tcard .stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.tcard .who .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-2), #16487a);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--serif);
  flex: none;
}

.tcard .who b {
  font-size: .94rem;
  color: var(--head);
  display: block;
}

.tcard .who small {
  font-size: .8rem;
  color: var(--muted);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
  cursor: pointer;
}

.bcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.bcard .bimg {
  height: 188px;
  background: linear-gradient(150deg, var(--ink-2), #16487a);
  position: relative;
  overflow: hidden;
}

.bcard:nth-child(2) .bimg {
  background: linear-gradient(150deg, #0a9488, var(--teal));
}

.bcard:nth-child(3) .bimg {
  background: linear-gradient(150deg, #15994f, var(--green));
}

/*.bcard .bimg::after {*/
/*  content: "Article Image";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  display: grid;*/
/*  place-items: center;*/
/*  color: rgba(255, 255, 255, .4);*/
/*  font-size: .78rem;*/
/*  font-weight: 600;*/
/*}*/

.bcard .bcat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--teal-d);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 1;
}

.bcard .bbody {
  padding: 24px;
}

.bcard .bmeta {
  display: flex;
  gap: 14px;
  font-size: .76rem;
  color: var(--muted-2);
  margin-bottom: 10px;
  font-weight: 600;
}

.bcard .bmeta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bcard .bmeta svg {
  width: 13px;
  height: 13px;
}

.bcard h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--head);
  line-height: 1.25;
}

.bcard .br {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal-d);
}

.bcard .br svg {
  width: 14px;
  height: 14px;
  transition: .2s;
}

.bcard:hover .br svg {
  transform: translateX(4px);
}

/* CTA Section */
.ctaband {
  background: linear-gradient(135deg, var(--ink), var(--ink-3));
  color: #fff;
  border-radius: 26px;
  padding: 54px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 46px;
  align-items: center;
}

.ctaband::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 184, 169, .4), transparent 65%);
  top: -160px;
  right: -80px;
  filter: blur(40px);
}

.ctaband h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  position: relative;
}

.ctaband p {
  color: #c2d2e6;
  margin-top: 14px;
  position: relative;
  max-width: 480px;
}

.ctaband .cb-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
}

.cb-form {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  padding: 26px;
  position: relative;
}

.cb-form h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.cb-form .field input,
.cb-form .field select {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.cb-form .field input::placeholder {
  color: #9fb2cb;
}

.cb-form .field label {
  color: #fff;
}

.cb-form .btn-gold {
  width: 100%;
}

/* Footer */
footer {
  background: var(--ink);
  color: #a9bdd6;
  padding: 70px 0 0;
}

.fgrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

footer .logo .lt b {
  color: #fff;
}

footer p.fbrand {
  font-size: .9rem;
  margin: 18px 0;
  max-width: 340px;
  color: #9fb2cb;
}

.fcerts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fcerts span {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .74rem;
  font-weight: 700;
  color: #cdd9ea;
}

footer h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .02em;
}

footer ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

footer ul a {
  font-size: .88rem;
  color: #a9bdd6;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

footer ul a:hover {
  color: var(--teal);
  transform: translateX(3px);
}

.fcontact {
  display: grid;
  gap: 14px;
}

.fcontact .fci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .88rem;
}

.fcontact .fci svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
  flex: none;
  margin-top: 3px;
}

.fnews {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.fnews input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-family: var(--sans);
  font-size: .85rem;
}

.fnews input::placeholder {
  color: #9fb2cb;
}

.fnews button {
  width: 46px;
  border-radius: 10px;
  border: none;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.fnews button svg {
  width: 18px;
  height: 18px;
}

.fbottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .82rem;
  color: #8294ad;
  flex-wrap: wrap;
  gap: 12px;
}

.fbottom a:hover {
  color: var(--teal);
}
/* ===== FOOTER RESPONSIVE FIX ===== */
@media (max-width: 1024px) {
  .fgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 640px) {
  .fgrid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  
  footer {
    padding: 50px 0 0;
  }
  
  .fbottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 0;
  }
  
  .fnews {
    flex-direction: column;
  }
  
  .fnews button {
    width: 100%;
    padding: 12px;
  }
  
  .fcerts {
    justify-content: center;
  }
  
  footer .logo {
    justify-content: center;
  }
  
  .fbrand {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .fcontact .fci {
    justify-content: center;
  }
  
  footer h4 {
    text-align: center;
  }
  
  footer ul {
    text-align: center;
  }
  
  footer ul a {
    justify-content: center;
  }
  
  .fcontact .fci svg {
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .fgrid {
    gap: 32px;
  }
  
  .fbottom span:first-child {
    font-size: 0.75rem;
  }
  
  .fbottom span:last-child {
    font-size: 0.7rem;
  }
}

/* Floating Buttons */
.floats {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: .25s;
  color: #fff;
  position: relative;
}

.fab:hover {
  transform: scale(1.08);
}

.fab.wa {
  background: #25D366;
}

.fab.call {
  background: linear-gradient(135deg, #000000, #4ba44a);
}

.fab svg {
  width: 27px;
  height: 27px;
}

.fab.wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Modal */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 46, .6);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-bg.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 22px;
  max-width: 480px;
  width: 100%;
  padding: 34px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: pop .3s ease;
}

@keyframes pop {
  from {
    transform: scale(.94);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal .close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.modal .close:hover {
  background: var(--bg-2);
  color: var(--ink);
}

.modal .mtop {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 6px;
}

.modal .mtop .mi {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: grid;
  place-items: center;
  color: #fff;
}

.modal .mtop .mi svg {
  width: 23px;
  height: 23px;
}

.modal h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 600;
}

.modal .msub {
  font-size: .86rem;
  color: var(--muted);
  margin: 6px 0 20px;
}

.modal .btn-primary {
  width: 100%;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(330px, 86vw);
  background: #fff;
  z-index: 400;
  transform: translateX(100%);
  transition: .35s cubic-bezier(.16, 1, .3, 1);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  padding: 24px;
}

.mobile-nav.open {
  transform: none;
}

.mobile-nav .mn-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mobile-nav .mobile-menu {
  list-style: none;
}

.mobile-nav .mobile-menu li a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: #27384f;
}

.mobile-nav .mobile-menu li a:hover {
  color: var(--teal-d);
}

.mobile-nav .mn-cta {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 46, .4);
  z-index: 350;
  display: none;
}

.mob-overlay.open {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats .wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .stats .stat:nth-child(3) {
    border-right: none;
  }
  .menu,
  .phone-pill {
    display: none;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .topbar .tb-left .tb-item.loc {
    display: none;
  }
  .about-grid,
  .qa-grid,
  .exp-grid,
  .ctaband {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .div-grid,
  .tg,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .ctaband {
    padding: 36px 26px;
  }
  .about-media .ph {
    height: 320px;
  }
  .sec {
    padding: 60px 0;
  }
  .step:not(:last-child)::before {
    left: 23px;
  }
}

@media (max-width: 560px) {
  .feat-grid,
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats .stat {
    border-right: none !important;
    padding: 10px 0;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 50px 0 70px;
  }
  .wrap {
    padding: 0 18px;
  }
  .exp-stats {
    grid-template-columns: 1fr;
  }
  .divcard {
    grid-template-columns: 1fr;
  }
  .tb-social {
    display: none;
  }
}

.topbar {
    background: var(--ink);
    color: #cdd9ea;
    font-size: .8rem;
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 9px;
    padding-bottom: 9px;
}

/*Top-bar btn*/
@media (max-width: 768px) {
    .top-bar-btn {
        display: none !important;
    }
}
/*Division Slider*/
.partner-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    background: #fff;
}

.slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide {
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: transform .3s ease;
}

.slide img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.division_sec {
    text-align: center;
    margin-bottom: 20px;
}

/*Logistic Partner*/
.logistics-section{
    padding:100px 20px;
    background:#fff;
}

.logistics-container{
    max-width:1180px;
    margin:0 auto;
}

.logistics-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.logistics-head h2{
    font-size:42px;
    color:var(--head);
    margin:15px 0;
}

.logistics-head p{
    color:var(--muted);
    line-height:1.8;
    font-size:16px;
}

.logistics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.logistics-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:30px;
    min-height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
    box-shadow:var(--shadow-sm);
}

.logistics-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.logistics-card img{
    max-width:100%;
    max-height:90px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.8;
    transition:.3s;
}

.logistics-card:hover img{
    filter:none;
    opacity:1;
}

@media(max-width:991px){

    .logistics-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .logistics-section{
        padding:70px 15px;
    }

    .logistics-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .logistics-head h2{
        font-size:30px;
    }

    .logistics-card{
        min-height:140px;
        padding:25px;
    }
}


/*Youtube section*/
.yt-section {
    width: 100%;
    padding: 100px 0;
    /*background: radial-gradient(circle at top right, rgba(75,163,73,.05), transparent 35%), #f8fafc;*/
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.yt-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(75,163,73,.12);
    color: #2c7a2b;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.yt-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #0a2b3e;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.yt-heading p {
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.yt-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.yt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 40px -16px rgba(0,0,0,0.12);
    border-color: rgba(75,163,73,0.2);
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.yt-content {
    padding: 24px;
}

.yt-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
    color: #0a2b3e;
}

.yt-content p {
    margin: 0;
    color: #5a6e85;
    line-height: 1.6;
    font-size: 15px;
}

.yt-btn-wrap {
    text-align: center;
    margin-top: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4ba349, #2d6e2c);
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(75,163,73,0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(75,163,73,0.35);
    background: linear-gradient(135deg, #3f913d, #245f23);
    color: #fff;
}

@media (max-width: 1024px) {
    .yt-grid {
        gap: 24px;
    }
    .yt-heading h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .yt-section {
        padding: 70px 0;
    }
    .yt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .yt-heading h2 {
        font-size: 32px;
    }
    .yt-heading p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .yt-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 20px;
    }
    .yt-content {
        padding: 20px;
    }
    .yt-content h3 {
        font-size: 20px;
    }
}