:root {
  --em: #0d4f3c;
  --em2: #186a52;
  --em3: #1e8a6a;
  --em-pale: #e9f4f0;
  --em-soft: #c8e6dd;
  --em-pale-err: #e1072e30;
  --em-soft-err: #ff1212;
  --em-err: #e1072e;
  --gold: #b8860b;
  --gold2: #d4a017;
  --gold3: #f0c040;
  --gold-pale: #fdf4d8;
  --ivory: #fafaf7;
  --cream: #f4f1eb;
  --paper: #efefea;
  --ink: #1a1a16;
  --ink2: #3d3d35;
  --ink3: #6b6b60;
  --ink4: #9a9a8e;
  --border: #ddddd4;
  --shadow-s: 0 2px 12px rgba(13, 79, 60, 0.07);
  --shadow-m: 0 6px 28px rgba(13, 79, 60, 0.199);
  --shadow-l: 0 16px 52px rgba(13, 79, 60, 0.337);
  --r: 8px;
  --t: 0.22s ease;
  --fh: "Playfair Display", Georgia, serif;
  --fb: "Lato", sans-serif;
  --fc: "Cormorant Garamond", Georgia, serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: var(--fb);
  border: none;
  outline: none;
}

.page {
  display: none;
  animation: pgIn 0.38s ease;
}
.page.active {
  display: block;
}
@keyframes pgIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topbar {
  background: var(--em);
  padding: 8px 0;
  font-size: 12.5px;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-msg {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
}
.topbar-msg span {
  color: var(--gold3);
  font-weight: 700;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar-right a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t);
}
.topbar-right a:hover {
  color: var(--gold3);
}
.topbar-icons {
  display: flex;
  gap: 7px;
}
.topbar-icons a {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  transition: all var(--t);
}
.topbar-icons a:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--em);
}

header {
  background: var(--ivory);
  border-bottom: 2px solid var(--em-soft);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-s);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-emblem {
  width: 48px;
  height: 48px;
  background: var(--em);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-emblem::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold2);
  opacity: 0.35;
}
.logo-emblem span {
  font-family: var(--fh);
  font-size: 19px;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}
.logo-text {
  line-height: 1.2;
}
.logo-name {
  font-family: var(--fh);
  font-size: 21px;
  color: var(--em);
  letter-spacing: 0.2px;
}
.logo-name em {
  color: var(--gold);
  font-style: normal;
}
.logo-tagline {
  font-size: 9.5px;
  color: var(--ink4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item {
  position: relative;
}
.nav-link {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink2);
  border-radius: 5px;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.4px;
}
.nav-link:hover,
.nav-link.cur {
  color: var(--em);
  background: var(--em-pale);
}
.nav-arr {
  font-size: 8px;
  opacity: 0.5;
}
#navMenu {
  display: flex;
}
.drop {
  display: none;
  position: absolute;
  top: calc(100%+5px);
  left: 0;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold2);
  border-radius: 0 0 var(--r) var(--r);
  min-width: 230px;
  box-shadow: var(--shadow-l);
  z-index: 200;
}
.nav-item:hover .drop {
  display: block;
}
.drop a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--ink3);
  border-bottom: 1px solid var(--border);
  transition: all var(--t);
}
.drop a:last-child {
  border-bottom: none;
}
.drop a:hover {
  color: var(--em);
  background: var(--em-pale);
  padding-left: 22px;
}
.btn-quote {
  background: var(--em) !important;
  color: #fff !important;
  border-radius: 5px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}
.btn-quote:hover {
  background: var(--gold) !important;
  color: #fff !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--t);
}

.W {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--t);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-em {
  background: var(--em);
  color: #fff;
}
.btn-em:hover {
  background: var(--em2);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(13, 79, 60, 0.28);
}
.btn-gold {
  background: var(--gold2);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--em);
  color: var(--em);
}
.btn-outline:hover {
  background: var(--em);
  color: #fff;
}
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold2);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold2);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--em);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
}

section {
  padding: 76px 0;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}
.sec-eyebrow::before,
.sec-eyebrow::after {
  content: "—";
  color: var(--gold3);
}
.sec-title {
  font-family: var(--fh);
  font-size: 38px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-title span {
  color: var(--em);
}
.sec-title em {
  color: var(--gold);
  font-style: italic;
}
.sec-desc {
  font-size: 15.5px;
  color: var(--ink3);
  line-height: 1.8;
  max-width: 680px;
}
.sec-hdr {
  margin-bottom: 54px;
}
.rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--em), var(--gold2));
  border-radius: 2px;
  margin: 14px 0;
}
.rule-c {
  margin: 14px auto;
}

.hero {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-weave {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d4f3c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  right: -150px;
  top: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 79, 60, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-orb2 {
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 134, 11, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-slides {
  position: relative;
  z-index: 2;
}
.hslide {
  display: none;
  padding: 88px 0 70px;
}
.hslide.on {
  display: block;
  animation: pgIn 0.65s ease;
}
.hero-content {
  max-width: 640px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--em-pale);
  border: 1px solid var(--em-soft);
  color: var(--em);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 24px;
}
.hero-chip::before {
  content: "◆";
  font-size: 8px;
  color: var(--gold2);
  animation: glow 2.5s ease-in-out infinite;
}
@keyframes glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-family: var(--fh);
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero h1 strong {
  color: var(--em);
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-p {
  font-size: 16px;
  color: var(--ink3);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.hdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--em-soft);
  cursor: pointer;
  transition: all 0.3s;
}
.hdot.on {
  background: var(--em);
  width: 26px;
  border-radius: 4px;
}
.hero-stat-strip {
  background: var(--em);
  padding: 0;
}
.hstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hstat {
  text-align: center;
  padding: 22px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.hstat:last-child {
  border-right: none;
}
.hstat-n {
  font-family: var(--fh);
  font-size: 36px;
  color: #fff;
}
.hstat-n sup {
  font-size: 18px;
  vertical-align: top;
  margin-top: 6px;
}
.hstat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

.process-sec {
  background: var(--cream);
}
.process-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proc-item {
  padding: 38px 32px;
  border-right: 1px solid var(--border);
  transition: background var(--t);
  display: flex;
  gap: 18px;
}
.proc-item:last-child {
  border-right: none;
}
.proc-item:hover {
  background: rgba(13, 79, 60, 0.03);
}
.proc-num {
  font-family: var(--fh);
  font-size: 60px;
  color: rgba(13, 79, 60, 0.1);
  line-height: 1;
  min-width: 54px;
}
.proc-item:hover .proc-num {
  color: rgba(13, 79, 60, 0.22);
}
.proc-ico {
  width: 54px;
  height: 54px;
  background: var(--em-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  min-width: 54px;
}
.proc-text h3 {
  font-family: var(--fh);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 7px;
}
.proc-text p {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.65;
}
.proc-text a {
  color: var(--em);
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  display: inline-block;
  transition: color var(--t);
}
.proc-text a:hover {
  color: var(--gold);
}

.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--em), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.svc-card:hover {
  border-color: var(--em-soft);
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-ico {
  width: 52px;
  height: 52px;
  background: var(--em-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.svc-card h3 {
  font-family: var(--fh);
  font-size: 17.5px;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc-card h3 a {
  color: var(--ink);
  transition: color var(--t);
}
.svc-card h3 a:hover {
  color: var(--em);
}
.svc-card p {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.7;
}
.rd-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--em);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  transition: all var(--t);
}
.rd-link:hover {
  color: var(--gold);
  gap: 8px;
}

.course-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: all var(--t);
}
.course-card:hover {
  border-color: var(--em-soft);
  box-shadow: var(--shadow-m);
}
.c-num {
  font-family: var(--fh);
  font-size: 42px;
  color: var(--border);
  line-height: 1;
  min-width: 50px;
  transition: color var(--t);
}
.course-card:hover .c-num {
  color: var(--em);
}
.c-body h3 {
  font-family: var(--fh);
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.c-body h3 a {
  color: var(--ink);
  transition: color var(--t);
}
.c-body h3 a:hover {
  color: var(--em);
}
.c-body p {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.65;
}
.c-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--em-pale);
  color: var(--em);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.port-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all var(--t);
}
.port-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
  border-color: var(--em-soft);
}
.port-thumb {
  height: 175px;
  background: linear-gradient(135deg, var(--em-pale), var(--em-soft));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.port-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--em);
  opacity: 0;
  transition: opacity var(--t);
}
.port-card:hover .port-thumb::before {
  opacity: 0.05;
}
.port-emoji {
  font-size: 40px;
  position: relative;
  z-index: 1;
}
.port-cat {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--em);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.port-body {
  padding: 20px;
}
.port-body h3 {
  font-family: var(--fh);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.port-body p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 12px;
}
.port-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ptag {
  background: var(--em-pale);
  color: var(--em);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: "\201C";
  font-family: var(--fh);
  font-size: 100px;
  color: var(--em-pale);
  position: absolute;
  top: 5px;
  right: 18px;
  line-height: 1;
}
.testi-stars {
  color: var(--gold2);
  font-size: 14px;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 20px;
  font-family: var(--fc);
}
.testi-by {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--em);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 16px;
  color: #fff;
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.testi-role {
  font-size: 12px;
  color: var(--ink4);
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all var(--t);
}
.partner-card:hover {
  border-color: var(--em-soft);
  box-shadow: var(--shadow-m);
}
.partner-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--r);
  background: var(--em-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  min-width: 64px;
}
.partner-info h4 {
  font-family: var(--fh);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.partner-info p {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 10px;
}
.partner-info a {
  color: var(--em);
  font-size: 13px;
  font-weight: 700;
  transition: color var(--t);
}
.partner-info a:hover {
  color: var(--gold);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.client-cell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all var(--t);
}
.client-cell:hover {
  border-color: var(--em);
  background: var(--em-pale);
}
.client-cell span {
  font-size: 11px;
  text-align: center;
  color: var(--ink4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.client-cell:hover span {
  color: var(--em);
}

.cta-em {
  background: var(--em);
  padding: 56px 0;
}
.cta-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold2));
  padding: 52px 0;
}
.cta-dark {
  background: var(--ink);
  padding: 52px 0;
}
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-txt h2 {
  font-family: var(--fh);
  font-size: 32px;
  color: #fff;
  margin-bottom: 8px;
}
.cta-txt h2 em {
  font-style: italic;
  color: var(--gold3);
}
.cta-txt p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.ph {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
}
.ph-about {
  background: linear-gradient(
    115deg,
    var(--em-dark, #0a3d2e) 0%,
    var(--em) 60%,
    var(--em2) 100%
  );
}
.ph-service {
  background: linear-gradient(
    115deg,
    var(--em) 0%,
    var(--em2) 55%,
    var(--gold, #b8860b) 160%
  );
}
.ph-solution {
  background: linear-gradient(125deg, var(--em2) 0%, var(--em) 100%);
}
.ph-course {
  background: linear-gradient(115deg, var(--ink) 0%, var(--em) 100%);
}
.ph-portfolio {
  background: linear-gradient(115deg, var(--em) 0%, #052a1e 100%);
}
.ph-hosting {
  background: linear-gradient(115deg, var(--gold) 0%, var(--em) 100%);
}
.ph-contact {
  background: linear-gradient(115deg, var(--ink) 0%, var(--em) 100%);
}
.ph-misc {
  background: linear-gradient(115deg, var(--em2) 0%, var(--em) 100%);
}
.ph-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
}
.ph-inner {
  position: relative;
  z-index: 1;
}
.ph-title {
  font-family: var(--fh);
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}
.ph-title em {
  font-style: italic;
  color: var(--gold3);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t);
}
.breadcrumb a:hover {
  color: var(--gold3);
}
.breadcrumb span {
  color: var(--gold3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--em-pale), var(--em-soft));
  border-radius: var(--r);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: var(--gold-pale);
  border-radius: 50% 0 0 0;
  opacity: 0.6;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(184, 134, 11, 0.2);
  color: var(--gold);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.val-item {
  background: var(--cream);
  border-radius: var(--r);
  padding: 16px;
  display: flex;
  gap: 12px;
}
.val-ico {
  width: 34px;
  height: 34px;
  background: var(--em-pale);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  min-width: 34px;
}
.val-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.val-item p {
  font-size: 12.5px;
  color: var(--ink3);
}
.timeline {
  display: flex;
  gap: 0;
  margin-top: 40px;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.tl-item {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  background: #fff;
  border-right: 1px solid var(--border);
  position: relative;
}
.tl-item:last-child {
  border-right: none;
}
.tl-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--em), var(--gold2));
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.tl-item:hover::before {
  transform: scaleX(1);
}
.tl-year {
  font-family: var(--fh);
  font-size: 22px;
  color: var(--em);
  margin-bottom: 5px;
}
.tl-label {
  font-size: 12px;
  color: var(--ink3);
  font-weight: 700;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.why-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  text-align: center;
  transition: all var(--t);
}
.why-item:hover {
  border-color: var(--em-soft);
  box-shadow: var(--shadow-m);
}
.why-ico {
  width: 54px;
  height: 54px;
  background: var(--em-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.why-item h4 {
  font-family: var(--fh);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 7px;
}
.why-item p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.65;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.step-item {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-item:last-child {
  border-right: none;
}
.step-ico {
  font-size: 28px;
  margin-bottom: 10px;
}
.step-label {
  font-family: var(--fh);
  font-size: 15px;
  color: var(--em);
  margin-bottom: 4px;
}
.step-n {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
}

.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}
.ceo-photo {
  background: linear-gradient(135deg, var(--em-pale), var(--em-soft));
  border-radius: var(--r);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  position: sticky;
  top: 90px;
}
.ceo-name {
  font-family: var(--fh);
  font-size: 34px;
  color: var(--ink);
  margin-bottom: 4px;
}
.ceo-role {
  color: var(--em);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}
.ceo-exp {
  color: var(--ink4);
  font-size: 13px;
  margin-bottom: 22px;
}
.ceo-info p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 14px;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.skill-tag {
  background: var(--em-pale);
  color: var(--em);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.ceo-quote {
  background: var(--cream);
  border-left: 4px solid var(--gold2);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--fc);
  font-size: 18px;
  color: var(--em);
  font-style: italic;
  line-height: 1.7;
}
.soc-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.soc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink2);
  transition: all var(--t);
}
.soc-link:hover {
  background: var(--em);
  color: #fff;
  border-color: var(--em);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  text-align: center;
  transition: all var(--t);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
}
.team-photo {
  height: 200px;
  background: linear-gradient(160deg, var(--em-pale), var(--em-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}
.team-badge-pos {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--em);
  color: #fff;
  font-size: 10px;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 700;
}
.team-body {
  padding: 18px;
}
.team-body h3 {
  font-family: var(--fh);
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-body p {
  font-size: 12px;
  color: var(--ink4);
  margin-bottom: 12px;
}
.team-soc {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.team-soc a {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: all var(--t);
}
.team-soc a:hover {
  background: var(--em);
  color: #fff;
  border-color: var(--em);
}

.service-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-content h2 {
  font-family: var(--fh);
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 14px;
}
.service-content p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 16px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink2);
}
.feature-list li::before {
  content: "✦";
  color: var(--gold2);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-box {
  background: var(--em);
  border-radius: var(--r);
  padding: 28px;
  color: #fff;
}
.quote-box h3 {
  font-family: var(--fh);
  font-size: 20px;
  margin-bottom: 12px;
}
.quote-box p {
  font-size: 13.5px;
  opacity: 0.8;
  margin-bottom: 18px;
  line-height: 1.65;
}
.all-services-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
}
.all-services-box h4 {
  font-family: var(--fh);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--em-pale);
}
.all-services-box ul li {
  margin-bottom: 7px;
}
.all-services-box ul li a {
  font-size: 13px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--t);
}
.all-services-box ul li a::before {
  content: "›";
  color: var(--gold2);
  font-weight: 700;
}
.all-services-box ul li a:hover {
  color: var(--em);
  padding-left: 4px;
}
.detail-card {
  background: var(--cream);
  border-radius: var(--r);
  padding: 18px;
  margin-top: 16px;
}
.detail-card h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink4);
  margin-bottom: 10px;
}
.detail-card p {
  font-size: 13.5px;
  color: var(--ink2);
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.detail-card p:last-child {
  border-bottom: none;
}
.detail-card p strong {
  color: var(--em);
  font-weight: 700;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
  transition: all var(--t);
  position: relative;
}
.plan-card.featured {
  border-color: var(--em);
  box-shadow: var(--shadow-l);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--fh);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.plan-price {
  font-family: var(--fh);
  font-size: 44px;
  color: var(--em);
  margin: 16px 0;
}
.plan-price sup {
  font-size: 22px;
  vertical-align: top;
  margin-top: 8px;
}
.plan-price small {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--ink4);
}
.plan-feats {
  margin: 20px 0;
  text-align: left;
}
.plan-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.plan-feats li:last-child {
  border-bottom: none;
}
.plan-feats li::before {
  content: "✓";
  color: var(--em);
  font-weight: 700;
}

.port-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.port-big {
  background: linear-gradient(135deg, var(--em-pale), var(--em-soft));
  border-radius: var(--r);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
}
.port-meta {
  background: var(--cream);
  border-radius: var(--r);
  padding: 22px;
  margin-top: 20px;
}
.port-meta h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink4);
  margin-bottom: 12px;
}
.port-meta li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.port-meta li:last-child {
  border-bottom: none;
}
.port-meta li strong {
  color: var(--ink);
  font-weight: 700;
}
.port-meta li span {
  color: var(--ink3);
}

.testi-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 48px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--fh);
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-left p {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.8;
  margin-bottom: 24px;
}
.c-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.c-det-ico {
  width: 46px;
  height: 46px;
  background: var(--em-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  min-width: 46px;
}
.c-det h4 {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.c-det p {
  font-size: 13.5px;
  color: var(--ink3);
}
.c-det a {
  color: var(--em);
  transition: color var(--t);
}
.c-det a:hover {
  color: var(--gold);
}
.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 28px;
}
.map-wrap iframe {
  width: 100%;
  height: 256px;
  border: none;
  display: block;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 38px;
}
.contact-form h3 {
  font-family: var(--fh);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg {
  margin-bottom: 18px;
}
.fg label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--ink);
  background: var(--ivory);
  transition: border var(--t);
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  outline: none;
  border-color: var(--em);
}
.fg textarea {
  height: 110px;
  resize: vertical;
}
.form-ok {
  display: none;
  background: var(--em-pale);
  border: 1px solid var(--em-soft);
  color: var(--em);
  padding: 14px;
  border-radius: 5px;
  font-weight: 700;
  margin-top: 12px;
}
.form-not-ok {
  display: none;
  background: var(--em-pale-err);
  border: 1px solid var(--em-soft-err);
  color: var(--em-err);
  padding: 14px;
  border-radius: 5px;
  font-weight: 700;
  margin-top: 12px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.smap-col h3 {
  font-family: var(--fh);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--em);
}
.smap-col li {
  margin-bottom: 8px;
}
.smap-col li a {
  font-size: 14px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--t);
}
.smap-col li a::before {
  content: "›";
  color: var(--gold2);
}
.smap-col li a:hover {
  color: var(--em);
  padding-left: 4px;
}

.clients-full-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 62px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}
.f-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 20px;
}
.f-soc {
  display: flex;
  gap: 9px;
}
.f-soc a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all var(--t);
}
.f-soc a:hover {
  background: var(--em);
  border-color: var(--em);
}
.f-col h4 {
  font-family: var(--fh);
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.f-col ul li {
  margin-bottom: 9px;
}
.f-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}
.f-col ul li a::before {
  content: "›";
  color: var(--gold3);
}
.f-col ul li a:hover {
  color: var(--gold3);
  padding-left: 4px;
}
.f-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  line-height: 1.65;
}
.f-contact li .fi {
  color: var(--gold3);
  font-size: 15px;
  min-width: 16px;
}
.f-contact a {
  color: var(--gold3);
}
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bar p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}
.footer-bar a {
  color: var(--gold3);
}
.footer-tag {
  color: rgba(255, 255, 255, 0.38);
  font-style: italic;
  font-family: var(--fc);
  font-size: 14px;
}

.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 998;
  font-size: 26px;
  transition: transform var(--t);
}
.wa-btn:hover {
  transform: scale(1.12);
}

@media (max-width: 980px) {
  .cards3,
  .testi-grid,
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .client-grid,
  .clients-full-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .contact-grid,
  .ceo-grid,
  .service-inner,
  .port-detail-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hstats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hstat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .process-trio {
    grid-template-columns: 1fr;
  }
  .proc-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hosting-plans,
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .cards2 {
    grid-template-columns: 1fr;
  }
  .partner-cards {
    grid-template-columns: 1fr;
  }
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-row {
    flex-direction: column;
    text-align: center;
  }
  .hamburger {
    display: flex;
  }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: flex-start;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-menu-mobile {
    background: var(--ivory);
    width: 290px;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .timeline {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .cards3,
  .testi-grid,
  .port-grid {
    grid-template-columns: 1fr;
  }
  .client-grid,
  .clients-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero h1 {
    font-size: 28px;
  }
  .sec-title,
  .ph-title {
    font-size: 26px;
  }
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .steps-row {
    grid-template-columns: 1fr;
  }
}
