/* =========================================================
   GLOBAL
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Kanit:wght@400;500;600;700&display=swap');


:root {

  --bg: #080909;
  --surface: #0e1010;
  --surface-light: #131616;

  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f4f5f3;
  --muted: #929896;
  --muted-light: #b7bcba;

  --accent: #96bf48;
  --accent-dark: #7fa438;

  --white: #ffffff;

  --max-width: 1180px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {

  background: var(--bg);

  color: var(--text);

  font-family: 'Inter', sans-serif;

  line-height: 1.6;

  overflow-x: hidden;
}


button,
a {
  font-family: inherit;
}


a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   LOADER
========================================================= */

#loader {

  position: fixed;

  inset: 0;

  z-index: 9999;

  background: #070808;

  display: flex;

  align-items: center;

  justify-content: center;

  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}


#loader.loaded {

  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}


.loader-inner {

  width: min(90%, 700px);

  min-height: 100vh;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 40px 0;
}


.loader-brand {

  display: flex;

  align-items: center;

  gap: 14px;

  font-size: 11px;

  letter-spacing: 0.16em;

  color: #aeb3b0;
}


.loader-shopify-logo {

  width: 82px;

  height: auto;
}


.loader-divider {

  width: 1px;

  height: 18px;

  background: rgba(255,255,255,0.2);
}


.loader-profile-text {

  font-size: 10px;

  letter-spacing: 0.18em;
}


.loader-center {

  width: 100%;

  text-align: center;

  position: relative;
}


.loader-mark {

  width: 50px;

  height: 50px;

  margin: 0 auto 30px;

  position: relative;
}


.loader-mark span {

  position: absolute;

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--accent);

  animation: loaderDots 1.4s infinite ease-in-out;
}


.loader-mark span:nth-child(1) {

  left: 6px;

  top: 22px;

  animation-delay: 0s;
}


.loader-mark span:nth-child(2) {

  left: 22px;

  top: 8px;

  animation-delay: 0.15s;
}


.loader-mark span:nth-child(3) {

  left: 38px;

  top: 22px;

  animation-delay: 0.3s;
}


@keyframes loaderDots {

  0%,
  80%,
  100% {

    opacity: 0.3;

    transform: scale(0.7);
  }

  40% {

    opacity: 1;

    transform: scale(1);
  }
}


.loader-center h1 {

  font-family: 'Kanit', sans-serif;

  font-weight: 500;

  font-size: clamp(24px, 4vw, 34px);

  letter-spacing: -0.02em;

  margin-bottom: 28px;
}


.loader-progress {

  width: min(100%, 380px);

  height: 2px;

  margin: 0 auto 22px;

  background: rgba(255,255,255,0.1);

  overflow: hidden;
}


.loader-progress-bar {

  height: 100%;

  width: 0%;

  background: var(--accent);

  animation: progress 2.55s ease forwards;
}


@keyframes progress {

  0% {
    width: 0%;
  }

  25% {
    width: 28%;
  }

  55% {
    width: 58%;
  }

  80% {
    width: 82%;
  }

  100% {
    width: 100%;
  }
}


.loading-message-wrapper {

  height: 25px;

  position: relative;
}


.loading-message {

  position: absolute;

  inset: 0;

  opacity: 0;

  transform: translateY(5px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;

  color: var(--muted);

  font-size: 12px;

  letter-spacing: 0.04em;
}


.loading-message.active {

  opacity: 1;

  transform: translateY(0);
}


.loader-footer {

  display: flex;

  justify-content: space-between;

  color: #555c59;

  font-size: 9px;

  letter-spacing: 0.15em;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

#content {

  opacity: 1;

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


#content.hidden {

  opacity: 0;

  transform: translateY(20px);
}


.profile-container {

  width: min(100% - 40px, var(--max-width));

  margin: auto;
}


/* =========================================================
   PROFILE HEADER
========================================================= */

.profile-header {

  padding: 34px 0 60px;

  border-bottom: 1px solid var(--border);
}


.profile-header-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-bottom: 28px;

  border-bottom: 1px solid var(--border);

  margin-bottom: 55px;
}


.profile-label,
.profile-reference {

  font-size: 10px;

  letter-spacing: 0.14em;

  color: var(--muted);
}


.profile-label {

  display: flex;

  align-items: center;

  gap: 9px;
}


.status-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow: 0 0 12px rgba(150,191,72,0.7);
}


.profile-introduction {

  display: grid;

  grid-template-columns: 240px 1fr;

  gap: 60px;

  align-items: center;
}


.profile-image-wrapper {

  width: 240px;

  height: 290px;

  position: relative;

  overflow: hidden;

  background: #171a19;

  border: 1px solid var(--border);
}


.profile-image {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: saturate(0.9);
}


.image-glow {

  position: absolute;

  width: 180px;

  height: 180px;

  background: rgba(150,191,72,0.15);

  filter: blur(70px);

  top: -80px;

  right: -80px;

  z-index: 0;
}


.profile-image {

  position: relative;

  z-index: 1;
}


.name-row {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 5px;
}


.name-row h1 {

  font-family: 'Kanit', sans-serif;

  font-size: clamp(42px, 7vw, 72px);

  line-height: 0.95;

  font-weight: 500;

  letter-spacing: -0.045em;
}


.verified-icon {

  width: 23px;

  height: 23px;
}


.profile-role {

  color: var(--accent);

  font-size: 14px;

  font-weight: 600;

  margin: 16px 0;
}


.profile-description {

  max-width: 680px;

  color: var(--muted-light);

  font-size: 17px;

  line-height: 1.7;
}


.specialty-tags {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 25px;
}


.specialty-tags span {

  border: 1px solid var(--border);

  padding: 7px 12px;

  color: #aeb4b1;

  font-size: 10px;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}


/* =========================================================
   CONTACT ACTIONS
========================================================= */

.contact-actions {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-top: 55px;
}


.contact-button {

  min-height: 72px;

  padding: 15px 18px;

  display: flex;

  align-items: center;

  gap: 13px;

  border: 1px solid var(--border);

  background: var(--surface);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}


.contact-button:hover {

  transform: translateY(-3px);

  border-color: var(--border-strong);

  background: var(--surface-light);
}


.contact-button img {

  width: 22px;

  height: 22px;
}


.contact-button span {

  display: flex;

  flex-direction: column;

  flex: 1;

  font-size: 13px;

  font-weight: 600;
}


.contact-button small {

  color: var(--muted);

  font-size: 8px;

  letter-spacing: 0.14em;

  margin-bottom: 2px;
}


.contact-button b {

  font-size: 18px;

  font-weight: 400;

  color: var(--muted);
}


.contact-button.whatsapp:hover {

  border-color: rgba(37,211,102,0.4);
}


.contact-button.email:hover {

  border-color: rgba(255,255,255,0.3);
}


.contact-button.telegram:hover {

  border-color: rgba(42,171,238,0.4);
}


/* =========================================================
   PROFILE META
========================================================= */

.profile-meta {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  margin-top: 28px;

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);
}


.profile-meta div {

  padding: 20px;

  border-right: 1px solid var(--border);
}


.profile-meta div:last-child {

  border-right: none;
}


.profile-meta span {

  display: block;

  color: #656d69;

  font-size: 8px;

  letter-spacing: 0.16em;

  margin-bottom: 6px;
}


.profile-meta strong {

  color: #b9bfbc;

  font-size: 12px;

  font-weight: 500;
}


/* =========================================================
   SECTIONS
========================================================= */

.content-section {

  padding: 100px 0;

  border-bottom: 1px solid var(--border);
}


.section-heading {

  display: flex;

  gap: 20px;

  align-items: flex-start;

  margin-bottom: 60px;
}


.section-number {

  color: var(--accent);

  font-family: 'Kanit', sans-serif;

  font-size: 13px;
}


.section-heading p {

  color: #656c69;

  font-size: 9px;

  letter-spacing: 0.18em;

  margin-bottom: 7px;
}


.section-heading h2 {

  font-family: 'Kanit', sans-serif;

  font-size: clamp(32px, 5vw, 48px);

  line-height: 1;

  font-weight: 500;

  letter-spacing: -0.03em;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;
}


.about-statement h3 {

  font-family: 'Kanit', sans-serif;

  font-size: clamp(35px, 5vw, 58px);

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: -0.04em;
}


.about-statement span {

  color: var(--accent);
}


.about-copy {

  color: var(--muted);

  font-size: 15px;
}


.about-copy p {

  margin-bottom: 22px;
}


/* =========================================================
   EXPERTISE
========================================================= */

.expertise-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border);

  border-left: 1px solid var(--border);
}


.expertise-card {

  padding: 30px;

  min-height: 245px;

  border-right: 1px solid var(--border);

  border-bottom: 1px solid var(--border);

  transition:
    background 0.3s ease;
}


.expertise-card:hover {

  background: var(--surface);
}


.expertise-card > span {

  color: var(--accent);

  font-family: 'Kanit', sans-serif;

  font-size: 12px;
}


.expertise-card h3 {

  margin-top: 45px;

  font-family: 'Kanit', sans-serif;

  font-size: 25px;

  font-weight: 500;
}


.expertise-card p {

  color: var(--muted);

  font-size: 13px;

  margin-top: 10px;

  line-height: 1.65;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {

  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(150,191,72,0.04),
      transparent 35%
    );
}


.approach-intro {

  margin-bottom: 70px;
}


.approach-intro h3 {

  max-width: 800px;

  font-family: 'Kanit', sans-serif;

  font-size: clamp(38px, 6vw, 68px);

  line-height: 1;

  font-weight: 400;

  letter-spacing: -0.045em;
}


.approach-intro span {

  color: var(--accent);
}


.process-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 0;

  border-top: 1px solid var(--border);

  border-left: 1px solid var(--border);
}


.process-step {

  min-height: 260px;

  padding: 25px;

  border-right: 1px solid var(--border);

  border-bottom: 1px solid var(--border);
}


.process-top {

  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--accent);
}


.process-top div {

  height: 1px;

  flex: 1;

  background: var(--border);
}


.process-step h3 {

  font-family: 'Kanit', sans-serif;

  font-size: 27px;

  margin-top: 60px;

  font-weight: 500;
}


.process-step p {

  color: var(--muted);

  font-size: 13px;

  margin-top: 10px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-list {

  border-top: 1px solid var(--border);
}


.service-item {

  border-bottom: 1px solid var(--border);
}


.service-header {

  width: 100%;

  background: transparent;

  border: none;

  color: var(--text);

  padding: 27px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  cursor: pointer;

  text-align: left;
}


.service-title {

  display: flex;

  align-items: center;

  gap: 25px;
}


.service-title > span {

  color: var(--accent);

  font-size: 11px;
}


.service-title h3 {

  font-family: 'Kanit', sans-serif;

  font-size: clamp(20px, 3vw, 30px);

  font-weight: 400;
}


.service-toggle {

  width: 35px;

  height: 35px;

  border: 1px solid var(--border);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  color: var(--muted);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.service-item.active .service-toggle {

  transform: rotate(45deg);

  background: var(--surface-light);

  color: var(--accent);
}


.service-content {

  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}


.service-content p {

  max-width: 700px;

  padding: 0 0 30px 60px;

  color: var(--muted);

  font-size: 14px;
}


.service-item.active .service-content {

  max-height: 200px;
}


/* =========================================================
   WHY DRAYY
========================================================= */

.reasons-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--border);

  border-left: 1px solid var(--border);
}


.reason {

  padding: 35px;

  min-height: 220px;

  border-right: 1px solid var(--border);

  border-bottom: 1px solid var(--border);
}


.reason > span {

  color: var(--accent);

  font-size: 11px;
}


.reason h3 {

  font-family: 'Kanit', sans-serif;

  font-size: 27px;

  margin-top: 35px;
}


.reason p {

  color: var(--muted);

  font-size: 13px;

  max-width: 400px;

  margin-top: 8px;
}


/* =========================================================
   CTA
========================================================= */

.final-cta {

  position: relative;

  overflow: hidden;

  margin-top: 100px;

  padding: 100px 60px;

  border: 1px solid var(--border);

  background: #0d100e;

  text-align: center;
}


.cta-background {

  position: absolute;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: rgba(150,191,72,0.07);

  filter: blur(80px);

  top: -250px;

  left: 50%;

  transform: translateX(-50%);
}


.cta-content {

  position: relative;

  z-index: 1;

  max-width: 760px;

  margin: auto;
}


.cta-label {

  color: var(--accent);

  font-size: 9px;

  letter-spacing: 0.2em;
}


.cta-content h2 {

  font-family: 'Kanit', sans-serif;

  font-size: clamp(45px, 7vw, 75px);

  line-height: 0.95;

  font-weight: 400;

  letter-spacing: -0.05em;

  margin-top: 20px;
}


.cta-content h2 span {

  color: var(--muted);
}


.cta-content p {

  max-width: 600px;

  margin: 25px auto 35px;

  color: var(--muted);

  font-size: 14px;
}


.cta-buttons {

  display: flex;

  justify-content: center;

  gap: 10px;
}


.primary-cta,
.secondary-cta {

  padding: 14px 22px;

  font-size: 12px;

  border: 1px solid var(--border);

  transition: 0.3s ease;
}


.primary-cta {

  background: var(--accent);

  color: #10140b;

  border-color: var(--accent);

  font-weight: 700;
}


.primary-cta:hover {

  background: #abc95f;

  transform: translateY(-2px);
}


.primary-cta span {

  margin-left: 10px;
}


.secondary-cta {

  color: #c5cac7;

  background: var(--surface);
}


.secondary-cta:hover {

  border-color: var(--border-strong);

  transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

footer {

  padding: 35px 0;

  display: flex;

  justify-content: space-between;

  color: #626966;

  font-size: 9px;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


footer div:first-child {

  display: flex;

  gap: 15px;
}


footer strong {

  color: #b5bbb8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

  .profile-introduction {

    grid-template-columns: 170px 1fr;

    gap: 35px;
  }


  .profile-image-wrapper {

    width: 170px;

    height: 220px;
  }


  .contact-actions {

    grid-template-columns: 1fr;
  }


  .about-grid {

    grid-template-columns: 1fr;

    gap: 40px;
  }


  .expertise-grid {

    grid-template-columns: repeat(2, 1fr);
  }


  .process-grid {

    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 600px) {

  .profile-container {

    width: min(100% - 24px, var(--max-width));
  }


  .loader-inner {

    padding: 25px 0;
  }


  .loader-footer {

    font-size: 7px;
  }


  .profile-header {

    padding-top: 20px;
  }


  .profile-header-top {

    margin-bottom: 40px;
  }


  .profile-reference {

    display: none;
  }


  .profile-introduction {

    grid-template-columns: 1fr;

    gap: 30px;
  }


  .profile-image-wrapper {

    width: 150px;

    height: 180px;
  }


  .name-row h1 {

    font-size: 45px;
  }


  .profile-description {

    font-size: 14px;
  }


  .profile-meta {

    grid-template-columns: 1fr;
  }


  .profile-meta div {

    border-right: none;

    border-bottom: 1px solid var(--border);
  }


  .profile-meta div:last-child {

    border-bottom: none;
  }


  .content-section {

    padding: 70px 0;
  }


  .section-heading {

    margin-bottom: 40px;
  }


  .expertise-grid {

    grid-template-columns: 1fr;
  }


  .process-grid {

    grid-template-columns: 1fr;
  }


  .reasons-grid {

    grid-template-columns: 1fr;
  }


  .service-title {

    gap: 15px;
  }


  .service-content p {

    padding-left: 0;
  }


  .final-cta {

    padding: 70px 20px;

    margin-top: 70px;
  }


  .cta-buttons {

    flex-direction: column;
  }


  footer {

    flex-direction: column;

    gap: 20px;
  }

}