/* ============================================
   CSS VARIABLES & THEMING
============================================ */
:root {
  --accent: #0368fe;
  --accent-light: #247cff;
  --accent-dark: #9E7A2A;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg: #F8F6F1;
  --bg-2: #EFECE5;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDF9F2;
  --text-primary: #0D0D0D;
  --text-secondary: #4A4540;
  --text-muted: #8A8078;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(201,168,76,0.5);
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.1);
  --nav-bg: rgba(248,246,241,0.92);
  --hero-overlay: rgba(248,246,241,0);
}

[data-theme="dark"] {
  --bg: #080C14;
  --bg-2: #0D1420;
  --bg-card: #111827;
  --bg-card-hover: #161E2E;
  --text-primary: #F0EDE8;
  --text-secondary: #A8A4A0;
  --text-muted: #5C5856;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(201,168,76,0.4);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --nav-bg: rgba(8,12,20,0.92);
  --hero-overlay: rgba(8,12,20,0);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 120px 0; }

h1,h2,h3,h4 { font-family: 'DM Serif Display', serif; line-height: 1.15; }

.accent { color: var(--accent); }

/* ============================================
   THEME TOGGLE
============================================ */
.theme-toggle {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 16px 0 0 16px;
  padding: 16px 12px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition);
}
.theme-toggle:hover { padding-right: 16px; }

.theme-toggle .toggle-track {
  width: 26px;
  height: 52px;
  background: var(--bg-2);
  border-radius: 50px;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.theme-toggle .toggle-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  transition: top 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
[data-theme="dark"] .toggle-thumb { top: 28px; }
.toggle-icon { font-size: 11px; }
.toggle-label { font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; writing-mode: vertical-lr; color: var(--text-muted); }

/* ============================================
   NAVIGATION
============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--accent);
  color: #0D0D0D !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.35) !important; }
.nav-logo .custom-logo{
    max-height:50px;
    width:auto;
    display:block;
}

.nav-logo .custom-logo-link{
    display:flex;
    align-items:center;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  top: -100px; right: -100px;
  background: var(--accent);
  animation: glow-pulse 6s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  bottom: -50px; left: 10%;
  background: #4A90D9;
  animation: glow-pulse 8s ease-in-out infinite alternate-reverse;
}
@keyframes glow-pulse {
  from { transform: scale(1); opacity: 0.12; }
  to { transform: scale(1.2); opacity: 0.2; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  background: rgba(201,168,76,0.06);
}
.hero-eyebrow span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-title {
  font-size: clamp(48px, 5.5vw, 50px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,76,0.35); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* Hero Right Visual */
.hero-visual {
  position: relative;
}
.hero-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.card-dot { width: 10px; height: 10px; border-radius: 50%; }
.card-dot.red { background: #FF5F57; }
.card-dot.yellow { background: var(--accent); }
.card-dot.green { background: #2EC27E; }
.hero-card-title { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-left: auto; letter-spacing: 0.08em; }

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.metric-box {
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.metric-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 6px; font-family: 'Syne', sans-serif; font-weight: 600; text-transform: uppercase; }
.metric-value { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--text-primary); }
.metric-value.up { color: #2EC27E; }
.metric-value.gold { color: var(--accent); }

.chart-bar-container {
  margin-top: 16px;
}
.chart-label { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; font-family: 'Syne', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--accent);
  border-radius: 4px 4px 0 0;
  animation: bar-grow 1.5s ease-out forwards;
}
.bar:nth-child(1)::after { height: 40%; animation-delay: 0.1s; }
.bar:nth-child(2)::after { height: 65%; animation-delay: 0.2s; }
.bar:nth-child(3)::after { height: 50%; animation-delay: 0.3s; }
.bar:nth-child(4)::after { height: 80%; animation-delay: 0.4s; }
.bar:nth-child(5)::after { height: 60%; animation-delay: 0.5s; }
.bar:nth-child(6)::after { height: 90%; animation-delay: 0.6s; opacity: 0.8; background: var(--accent-light); }
@keyframes bar-grow { from{height:0;} }

.hero-float-1 {
  position: absolute;
  top: -24px; right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float1 4s ease-in-out infinite;
}
.hero-float-2 {
  position: absolute;
  bottom: -20px; left: -32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float2 5s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes float2 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(8px);} }
.float-icon { font-size: 24px; }
.float-text strong { display: block; font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-primary); }
.float-text span { font-size: 11px; color: var(--text-muted); }

/* ============================================
   TRUST LOGOS
============================================ */
.trust-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.trust-marquee-wrap { overflow: hidden; position: relative; }
.trust-marquee-wrap::before,
.trust-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.trust-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.trust-marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }

.trust-marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 80s linear infinite;
}
.trust-marquee:hover { animation-play-state: paused; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  transition: all 0.3s;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: default;
}
.trust-logo:hover { opacity: 1; color: var(--text-primary); border-color: var(--accent); }
.trust-logo .logo-icon { font-size: 22px; }

/* ============================================
   SECTION HEADERS
============================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.12;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================
   ABOUT
============================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left {}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.about-feat {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.about-feat:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }
.about-feat-icon { font-size: 28px; margin-bottom: 12px; }
.about-feat-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.about-feat-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.about-right {
  position: relative;
}
.about-image-stack {
  position: relative;
  height: 520px;
}
.about-img-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.about-img-card-1 {
  top: 0; left: 0;
  width: 78%;
  height: 65%;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-img-card-2 {
  bottom: 0; right: 0;
  width: 58%;
  height: 45%;
  z-index: 2;
}
.about-card-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-card-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--border) 0,
    var(--border) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
  opacity: 0.5;
}
.about-years-badge {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.about-years-num { font-family: 'DM Serif Display', serif; font-size: 36px; line-height: 1; }
.about-years-text { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

.about-card-stat { }
.about-card-stat-num { font-family: 'DM Serif Display', serif; font-size: 48px; color: var(--text-primary); line-height: 1; }
.about-card-stat-num span { color: var(--accent); }
.about-card-stat-label { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }

.about-progress { margin-top: 20px; }
.progress-item { margin-bottom: 14px; }
.progress-top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.progress-name { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.progress-pct { font-size: 12px; color: var(--accent); font-weight: 600; }
.progress-bar-bg { height: 4px; background: var(--bg-2); border-radius: 2px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 1.5s ease-out; }

/* ============================================
   SERVICES
============================================ */
.services { background: var(--bg-2); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}
.service-card ul {
    padding-bottom: 30px;
    list-style: inside;
    padding-top: 10px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }

.service-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.testimonial-slider.reveal.reveal-delay-2.visible {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card.featured::before { background: rgba(0,0,0,0.2); }
.service-card.featured .service-icon { background: rgba(0,0,0,0.12); color: #fff; }

.service-card.featured .service-title { color: #fff; }
.service-card.featured .service-desc { color: #fff; }
.service-card.featured .service-tag { background: rgba(0,0,0,0.12); color: #fff; }
.service-card.featured .service-arrow { color: #fff; border-color: rgba(0,0,0,0.2); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: rgba(201,168,76,0.18); transform: scale(1.1); }

.service-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.service-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.service-tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,0.1);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: all 0.3s;
  letter-spacing: 0.06em;
}
.service-card:hover .service-arrow { gap: 10px; border-color: var(--accent); }

/* ============================================
   PROCESS
============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 72px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(201,168,76,0.2), var(--accent));
}
.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-num-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
.process-step:hover .step-num-wrap {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.1);
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.process-step:hover .step-num { color: #0D0D0D; }
.step-icon { font-size: 22px; margin-bottom: 16px; }
.step-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   PORTFOLIO
============================================ */
section#portfolio {
    display: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.portfolio-card.large { grid-column: span 1; grid-row: span 1; }

.portfolio-thumb {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-thumb-bg { transform: scale(1.05); }

.thumb-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.thumb-2 { background: linear-gradient(135deg, #0d1b2a 0%, #1b4332 100%); }
.thumb-3 { background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%); }
.thumb-4 { background: linear-gradient(135deg, #b5451b 0%, #e8c56d 100%); }

.thumb-mockup {
  position: absolute;
  inset: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-emoji { font-size: 64px; opacity: 0.8; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.overlay-btn {
  background: var(--accent);
  color: #0D0D0D;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(20px);
  transition: transform 0.3s 0.1s;
}
.portfolio-card:hover .overlay-btn { transform: translateY(0); }

.portfolio-info { padding: 28px; }
.portfolio-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.ptag {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,0.1);
  padding: 4px 10px;
  border-radius: 50px;
}
.portfolio-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.portfolio-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #2EC27E;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { background: var(--bg-2); }
.testimonials .section-header { text-align: center; margin-bottom: 64px; }
.testimonials .section-desc { margin: 0 auto; text-align: center; }

.testimonial-slider .slick-slide { padding: 12px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 20px;
  display: block;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D0D0D;
  flex-shrink: 0;
}
.author-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.star-row {
  position: absolute;
  top: 32px; right: 32px;
  display: flex;
  gap: 3px;
  color: var(--accent);
  font-size: 13px;
}

.slick-dots li button:before {
  color: var(--text-muted) !important;
  font-size: 8px !important;
}
.slick-dots li.slick-active button:before { color: var(--accent) !important; }

/* ============================================
   CTA
============================================ */
.cta-section {
  padding: 80px 0;
}
.cta-inner {
  background: #00204e;
  border-radius: 24px;
  padding: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(80px);
  opacity: 0.15;
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-glow-2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: #4A90D9;
  filter: blur(80px);
  opacity: 0.08;
  bottom: -80px; left: 10%;
  pointer-events: none;
}
.cta-left { position: relative; z-index: 2; }
.cta-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
[data-theme="dark"] .cta-title { color: #F0EDE8; }

.cta-desc { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 460px; line-height: 1.7; }
[data-theme="light"] .cta-desc { color: #fff; }

.cta-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.cta-btn-1 {
  background: var(--accent);
  color: #0D0D0D;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s;
  display: block;
}
.cta-btn-1:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,76,0.4); }
.cta-btn-2 {
  padding: 18px 40px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s;
  display: block;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.15);
}
[data-theme="light"] .cta-btn-2 {
    color: #25D366;
    border-color: #25D366;
}
.cta-btn-2:hover { border-color: #25D366; color: var(--accent); }

[data-theme="dark"] .cta-inner.reveal.visible {
    background: #000;
}





/*====================================================
CONTACT SECTION
====================================================*/

.tg-contact-section{
    position:relative;
    overflow:hidden;
}

.tg-contact-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(3,104,254,.08);
    filter:blur(120px);
    top:-150px;
    left:-150px;
    pointer-events:none;
}

.tg-contact-section::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(3,104,254,.06);
    filter:blur(100px);
    bottom:-120px;
    right:-120px;
    pointer-events:none;
}

.tg-contact-wrapper{

    display:grid;
    grid-template-columns:1fr 580px;
    align-items:center;
    gap:80px;

}

.tg-contact-content h2{

    font-size:clamp(2.5rem,5vw,4.2rem);
    margin:20px 0;
    max-width:650px;

}

.tg-contact-content p{

    font-size:18px;
    color:var(--text-secondary);
    max-width:580px;
    line-height:1.9;

}

.tg-contact-tag{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;

    border-radius:50px;

    border:1px solid var(--border);

    background:var(--bg-card);

    font-size:13px;

    letter-spacing:.08em;

    text-transform:uppercase;

    font-weight:700;

    color:var(--accent);

}

.tg-contact-tag::before{

    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--accent);

}

.tg-contact-highlights{

    margin-top:40px;

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.tg-highlight-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    background:var(--bg-card);

    border-radius:50px;

    border:1px solid var(--border);

    transition:var(--transition);

    font-weight:600;

}

.tg-highlight-item:hover{

    transform:translateY(-5px);

    border-color:var(--accent);

}

.tg-highlight-item span{

    width:28px;

    height:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--accent);

    color:#fff;

    font-size:14px;

}


/*====================================================
FORM CARD
====================================================*/

.tg-form-card{

    background:var(--bg-card);

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px;

    box-shadow:var(--shadow-lg);

    position:relative;

    overflow:hidden;

}

.tg-form-card::before{

    content:"";

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:inherit;

    background:linear-gradient(135deg,rgba(3,104,254,.45),transparent);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

}


/*====================================================
CONTACT FORM 7
====================================================*/

.tg-form-card input,
.tg-form-card textarea,
.tg-form-card select{

    width:100%;

    background:var(--bg);

    border:1px solid var(--border);

    border-radius:14px;

    padding:18px 20px;

    color:var(--text-primary);

    font-size:16px;

    margin-bottom:18px;

    transition:var(--transition);

    outline:none;

}

.tg-form-card input:focus,
.tg-form-card textarea:focus,
.tg-form-card select:focus{

    border-color:var(--accent);

    box-shadow:0 0 0 4px rgba(3,104,254,.12);

}

.tg-form-card textarea{

    min-height:170px;

    resize:vertical;

}

.tg-form-card input[type=submit]{

    background:var(--accent);

    color:#fff;

    font-weight:700;

    cursor:pointer;

    border:none;

    transition:var(--transition);

}

.tg-form-card input[type=submit]:hover{

    background:var(--accent-light);

    transform:translateY(-3px);

    box-shadow:0 14px 30px rgba(3,104,254,.25);

}

.tg-form-card .wpcf7-spinner{

    margin-left:15px;

}

.tg-form-card .wpcf7-response-output{

    margin:20px 0 0;

    border-radius:12px;

}


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

@media(max-width:991px){

.tg-contact-wrapper{

grid-template-columns:1fr;

gap:50px;

}

.tg-contact-content{

text-align:center;

}

.tg-contact-content p{

margin:auto;

}

.tg-contact-highlights{

justify-content:center;

}

}


@media(max-width:767px){

.tg-form-card{

padding:28px;

}

.tg-contact-content h2{

font-size:2.4rem;

}

.tg-highlight-item{

width:100%;

justify-content:center;

}

}

/*=================================================
CONTACT FORM 7
=================================================*/

.tg-cf7-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.tg-cf7-field{
    flex:1;
}

.tg-cf7-field label{

    display:block;

    margin-bottom:10px;

    font-size:14px;

    font-weight:600;

    color:var(--text-primary);

}

.tg-cf7-field input,
.tg-cf7-field textarea,
.tg-cf7-field select{

    width:100%;

    height:58px;

    background:var(--bg);

    border:1px solid var(--border);

    border-radius:14px;

    padding:0 18px;

    font-size:15px;

    color:var(--text-primary);

    transition:var(--transition);

    outline:none;

}

.tg-cf7-field textarea{

    height:170px;

    padding:18px;

    resize:vertical;

}

.tg-cf7-field input::placeholder,
.tg-cf7-field textarea::placeholder{

    color:var(--text-muted);

}

.tg-cf7-field input:focus,
.tg-cf7-field textarea:focus,
.tg-cf7-field select:focus{

    border-color:var(--accent);

    box-shadow:0 0 0 4px rgba(3,104,254,.12);

}

.tg-cf7-field select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230368fe' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' stroke='%230368fe' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;

    padding-right:55px;

}

.tg-cf7-submit{

    margin-top:30px;

}

.tg-cf7-submit input{

    width:100%;

    height:60px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,var(--accent),var(--accent-light));

    color:#fff;

    font-size:16px;

    font-weight:700;

    letter-spacing:.04em;

    cursor:pointer;

    transition:var(--transition);

}

.tg-cf7-submit input:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(3,104,254,.28);

}

.wpcf7-spinner{

    margin-top:18px;

}

.wpcf7-response-output{

    margin-top:25px !important;

    border-radius:12px;

    font-size:14px;

}

/* Mobile */

@media(max-width:768px){

.tg-cf7-row{

flex-direction:column;

gap:0;

}

}
/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo { font-size: 24px; margin-bottom: 16px; display: block; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover { border-color: var(--accent); transform: translateY(-3px); }

.footer-col-title { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-newsletter {}
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn {
  padding: 12px 20px;
  background: var(--accent);
  color: #0D0D0D;
  border: none;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}
.newsletter-btn:hover { background: var(--accent-light); }

.footer-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.contact-icon { font-size: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-copy span { color: var(--accent); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; padding-top: 140px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(38px, 8vw, 56px); }
  .hero-stats { gap: 32px; }
  .about-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 48px 32px; }
  .cta-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .theme-toggle { display: none; }
  .mobile-theme-toggle {
    display: flex !important;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 52px; height: 52px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
  }
}

.mobile-theme-toggle { display: none; }

/* ============================================
   CUSTOM SCROLLBAR
============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}