/* ============================================
   GoDesk - Complete Stylesheet
   Built from Tailwind design tokens
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --navy: #1A2B4C;
  --teal: #3A60A1;
  --orange: #F28C38;
  --ice: #F8FAFC;
  --white: #FFFFFF;
  --muted: #64748B;
  --light-muted: #94A3B8;
  --border-light: #E2E8F0;
  --border-dark: #2D3F5F;
  --success: #10B981;
  --error: #EF4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 4px 24px rgba(26,43,76,0.08);
  --shadow-hover: 0 12px 40px rgba(26,43,76,0.12);
  --shadow-dashboard: 0 20px 60px rgba(26,43,76,0.15);
}

/* ---- Layout ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; transition: all 0.3s ease;
  background: transparent; border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(26,43,76,0.95); backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.08);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 24px; color: #fff; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo svg { width: 32px; height: 32px; color: var(--orange); flex-shrink: 0; }
.logo span { color: var(--orange); }
.nav-links {
  display: none; align-items: center; gap: 4px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 8px 12px; font-size: 14px; font-weight: 500;
  color: var(--light-muted); border-radius: 6px;
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.btn-orange {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff; font-weight: 600;
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-size: 14px; transition: all 0.2s ease;
}
.btn-orange:hover { filter: brightness(1.1); transform: scale(1.02); }
.btn-orange-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff; font-weight: 600;
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-size: 14px; border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s ease;
}
.btn-orange-outline:hover { background: rgba(255,255,255,0.05); }
.btn-orange-lg {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff; font-weight: 600;
  padding: 16px 40px; border-radius: var(--radius-sm);
  font-size: 16px; transition: all 0.2s ease;
}
.btn-orange-lg:hover { filter: brightness(1.1); transform: scale(1.02); }
.btn-navy {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 15px; transition: all 0.2s ease; width: 100%;
}
.btn-navy:hover { background: rgba(26,43,76,0.9); }

/* Hamburger */
.hamburger { display: block; padding: 8px; color: #fff; background: none; border: none; cursor: pointer; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 24px; font-size: 16px; font-weight: 500;
  color: var(--light-muted); transition: all 0.2s;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-menu .btn-orange { margin: 12px 24px 0; display: block; text-align: center; }

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh; background: var(--navy);
  position: relative; overflow: hidden; display: flex; align-items: center;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(242,140,56,0.08) 0%, transparent 70%), var(--navy);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
  padding: 40px 0;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.hero-left { text-align: center; }
@media (min-width: 1024px) { .hero-left { text-align: left; } }
.hero-left .eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 16px; }
.hero-left h1 {
  font-size: 40px; font-weight: 700; color: #fff; line-height: 1.1;
}
@media (min-width: 768px) { .hero-left h1 { font-size: 56px; } }
.hero-left p { font-size: 18px; color: rgba(255,255,255,0.75); margin-top: 20px; max-width: 480px; }
.hero-ctas { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; justify-content: center; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
@media (min-width: 1024px) { .hero-ctas { justify-content: flex-start; } }

/* Hero form panel */
.form-panel {
  position: relative; z-index: 10; width: 100%; max-width: 420px; margin: 0 auto;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl);
  padding: 32px;
}
.form-panel-inner { position: relative; }
.dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background 0.3s; }
.dot.active { background: var(--orange); }
.form-step { display: none; }
.form-step.active { display: flex; flex-direction: column; }
.form-step h3 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 24px; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.option-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 20px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; transition: all 0.3s ease;
}
.option-card:hover { background: rgba(255,255,255,0.1); }
.option-card.selected { background: rgba(242,140,56,0.1); border-color: var(--orange); }
.option-card svg { width: 24px; height: 24px; color: var(--orange); }
.option-card span { color: #fff; font-size: 15px; font-weight: 500; }
.option-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.option-row {
  display: flex; align-items: center; gap: 16px; padding: 16px;
  border-radius: var(--radius-md); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); cursor: pointer;
  transition: all 0.3s ease;
}
.option-row:hover { background: rgba(255,255,255,0.1); }
.option-row.selected { background: rgba(242,140,56,0.1); border-color: var(--orange); }
.option-row svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.option-row span { color: #fff; font-size: 15px; font-weight: 500; }
.underline-input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2); color: #fff;
  padding: 12px 0; font-size: 16px; outline: none; margin-bottom: 16px;
  transition: border-color 0.3s;
}
.underline-input:focus { border-bottom-color: var(--orange); }
.underline-input::placeholder { color: rgba(255,255,255,0.35); }
.success-box { text-align: center; }
.success-box svg { width: 48px; height: 48px; color: var(--success); margin-bottom: 16px; }
.success-box h3 { font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.success-box p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 320px; margin: 0 auto 24px; }
.success-box a { color: var(--orange); font-weight: 500; text-decoration: underline; }

/* ---- Section Headers ---- */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.eyebrow.orange { color: var(--orange); }
.eyebrow.teal { color: var(--teal); }
.section-title {
  font-size: 28px; font-weight: 600; color: var(--navy); line-height: 1.2;
}
@media (min-width: 768px) { .section-title { font-size: 36px; } }
.section-title.white { color: #fff; }
.section-title.center { max-width: 640px; margin-left: auto; margin-right: auto; }
.section-body { margin-top: 16px; font-size: 18px; line-height: 1.7; max-width: 640px; }
.section-body.muted { color: var(--muted); }
.section-body.light { color: rgba(255,255,255,0.75); }
.section-body.center { margin-left: auto; margin-right: auto; }

/* ---- Cards ---- */
.card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 32px;
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-dark {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 40px;
}
.card-dark.featured { border-top: 3px solid var(--orange); }
.icon-box {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.icon-box.teal { background: rgba(58,96,161,0.1); color: var(--teal); }
.icon-box.orange { background: rgba(242,140,56,0.1); color: var(--orange); }
.icon-box svg { width: 24px; height: 24px; }
.card h4 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ---- Two Column Layout ---- */
.two-col {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* ---- Feature Lists ---- */
.feature-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.feature-list li { display: flex; align-items: center; gap: 12px; }
.feature-list svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.feature-list span { color: var(--navy); font-weight: 500; }
.highlight-box {
  border-left: 3px solid var(--teal); padding-left: 16px; margin-top: 24px;
}
.highlight-box p { color: var(--teal); font-weight: 500; }

/* ---- Steps ---- */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-item {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; position: relative;
}
.step-number { font-size: 48px; font-weight: 700; color: var(--orange); line-height: 1; }
.step-item h3 { font-size: 24px; font-weight: 600; color: #fff; margin: 16px 0 12px; }
.step-item p { color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ---- Tabs ---- */
.tabs { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 1px solid var(--border-light); margin-bottom: 40px; }
.tab-btn {
  padding: 12px 20px; font-size: 14px; font-weight: 500;
  border-bottom: 2px solid transparent; transition: all 0.3s;
  color: var(--muted); cursor: pointer; background: none;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---- Accordion ---- */
.accordion-item { border-bottom: 1px solid var(--border-light); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; width: 100%; background: none; border: none;
}
.accordion-header h4 { font-size: 18px; font-weight: 600; color: var(--navy); text-align: left; }
.accordion-header svg { width: 20px; height: 20px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.accordion-header.open svg { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.accordion-body.open { max-height: 500px; }
.accordion-body p { padding-bottom: 20px; color: var(--muted); line-height: 1.6; }

/* ---- KB Articles ---- */
.kb-article { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
.kb-article-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; width: 100%; background: none; border: none;
}
.kb-article-header:hover { background: var(--ice); }
.kb-article-header span { font-weight: 500; color: var(--navy); font-size: 15px; }
.kb-article-header svg { width: 20px; height: 20px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.kb-article-header.open svg { transform: rotate(180deg); }
.kb-article-body {
  display: none; padding: 0 20px 20px; border-top: 1px solid var(--border-light);
}
.kb-article-body.open { display: block; }
.kb-article-body p { color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.kb-article-body ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.kb-article-body ul li { color: var(--navy); margin-bottom: 8px; line-height: 1.6; }
.kb-article-body ol { list-style: decimal; padding-left: 20px; margin-bottom: 12px; }
.kb-article-body ol li { color: var(--navy); margin-bottom: 8px; line-height: 1.6; }
.kb-article-body strong { font-weight: 600; }
.kb-img { margin: 16px 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-light); box-shadow: var(--shadow-card); }
.kb-note {
  margin-top: 16px; background: rgba(242,140,56,0.05);
  border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0;
  padding: 12px 16px; font-size: 14px; color: rgba(0,0,0,0.8);
}
.kb-note::before { content: "Note: "; font-weight: 600; color: var(--orange); }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
.blog-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px 32px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.blog-meta svg { width: 14px; height: 14px; }
.blog-card h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 12px; line-height: 1.4; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--teal); }
.blog-card p { color: var(--muted); font-size: 14px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-size: 14px; font-weight: 500; margin-top: 16px; transition: gap 0.3s; }
.blog-link:hover { gap: 10px; }
.blog-link svg { width: 16px; height: 16px; }

/* ---- Blog Article Detail ---- */
.article-hero { background: var(--navy); padding: 120px 0 40px; }
.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.article-hero-img img { width: 100%; max-height: 400px; object-fit: cover; }
.article-hero h1 { font-size: 28px; font-weight: 700; color: #fff; line-height: 1.2; max-width: 800px; }
@media (min-width: 768px) { .article-hero h1 { font-size: 40px; } }
.article-meta { display: flex; align-items: center; gap: 24px; margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.6); }
.article-meta svg { width: 16px; height: 16px; }
.article-content { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
.article-content h3 { font-size: 22px; font-weight: 600; color: var(--navy); margin: 40px 0 20px; }
.article-content p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.article-content ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.article-content ul li { color: var(--muted); margin-bottom: 8px; }
.article-content ol { list-style: decimal; padding-left: 24px; margin-bottom: 20px; }
.article-content ol li { color: var(--navy); margin-bottom: 8px; }
.framework-card { background: var(--ice); border-radius: var(--radius-md); padding: 24px; margin: 16px 0; }
.framework-card p:first-child { font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.framework-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.godesk-box { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; margin: 32px 0; }
.godesk-box h4 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.godesk-box ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.godesk-box ul li { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 8px; }
.godesk-box p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 0; }
.godesk-box .accent { color: var(--orange); font-weight: 500; margin-top: 16px; display: block; }
.cta-box { background: rgba(242,140,56,0.1); border: 1px solid rgba(242,140,56,0.2); border-radius: var(--radius-md); padding: 24px 32px; margin-top: 32px; }
.cta-box p { color: var(--navy); font-weight: 500; margin-bottom: 16px; }

/* ---- Contact Form ---- */
.form-input {
  width: 100%; height: 48px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 0 16px; font-size: 16px; color: var(--navy); outline: none;
  transition: all 0.2s;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(58,96,161,0.1); }
.form-input::placeholder { color: var(--muted); }
.form-textarea {
  width: 100%; background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 12px 16px; font-size: 16px;
  color: var(--navy); outline: none; resize: none; transition: all 0.2s;
}
.form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(58,96,161,0.1); }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.required { color: var(--orange); }
.interest-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.interest-tag {
  padding: 8px 16px; border-radius: var(--radius-sm); font-size: 14px;
  font-weight: 500; border: 1px solid var(--border-light); cursor: pointer;
  transition: all 0.2s; background: var(--white); color: var(--navy);
}
.interest-tag:hover { border-color: rgba(58,96,161,0.5); }
.interest-tag.selected { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ---- Admin Login ---- */
.admin-login { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-card {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.03); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px;
}
.admin-card .icon-box { margin: 0 auto 24px; background: rgba(242,140,56,0.1); }
.admin-card h1 { text-align: center; font-size: 24px; color: #fff; margin-bottom: 8px; }
.admin-card > p { text-align: center; color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 32px; }
.admin-input {
  width: 100%; height: 48px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  padding: 0 16px; color: #fff; font-size: 15px; outline: none;
  transition: border-color 0.3s;
}
.admin-input:focus { border-color: var(--orange); }
.admin-input::placeholder { color: rgba(255,255,255,0.3); }
.password-wrap { position: relative; }
.password-wrap .admin-input { padding-right: 48px; }
.toggle-pw {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.4); background: none; border: none; cursor: pointer;
  padding: 4px;
}
.toggle-pw:hover { color: rgba(255,255,255,0.6); }
.toggle-pw svg { width: 20px; height: 20px; }
.admin-error {
  background: rgba(239,68,68,0.1); color: #f87171; font-size: 14px;
  padding: 10px 12px; border-radius: var(--radius-sm);
}

/* ---- Admin Dashboard ---- */
.admin-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.logout-btn {
  display: flex; align-items: center; gap: 8px; font-size: 14px;
  color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); padding: 8px 16px; transition: all 0.2s; cursor: pointer;
  background: none;
}
.logout-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }
.enquiry-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px; transition: all 0.3s; }
.enquiry-card:hover { box-shadow: var(--shadow-card); }
.enquiry-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.enquiry-header h3 { font-size: 18px; font-weight: 600; color: var(--navy); }
.enquiry-company { display: flex; align-items: center; gap: 4px; font-size: 14px; color: var(--muted); }
.enquiry-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.enquiry-meta svg { width: 16px; height: 16px; }
.enquiry-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.enquiry-tag { display: inline-flex; align-items: center; gap: 4px; background: rgba(58,96,161,0.1); color: var(--teal); font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: var(--radius-sm); }
.enquiry-msg { background: var(--ice); border-radius: var(--radius-md); padding: 12px 16px; font-size: 14px; color: var(--navy); line-height: 1.6; }

/* ---- Footer ---- */
.footer { background: var(--navy); }
.footer-cta { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-cta-inner { padding: 64px 0; display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 768px) { .footer-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-cta h2 { font-size: 28px; font-weight: 600; color: #fff; line-height: 1.2; }
@media (min-width: 768px) { .footer-cta h2 { font-size: 36px; } }
.footer-cta p { color: rgba(255,255,255,0.7); font-size: 18px; margin-top: 16px; }
.footer-cta-right { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-cta-right a:last-child { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-cta-right a:last-child:hover { color: #fff; }
.footer-main { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { font-size: 14px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col .logo { margin-bottom: 12px; font-size: 20px; }
.footer-col > p { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; flex-direction: column; gap: 8px; align-items: center; }
@media (min-width: 640px) { .footer-bar { flex-direction: row; justify-content: space-between; } }
.footer-bar p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ---- Utility Classes ---- */
.bg-navy { background: var(--navy); }
.bg-ice { background: var(--ice); }
.bg-white { background: var(--white); }
.text-white { color: #fff; }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-teal { color: var(--teal); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.img-rounded { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-dashboard); border: 1px solid var(--border-light); }
.img-rounded img { width: 100%; height: auto; }
.max-w-600 { max-width: 600px; }
.max-w-640 { max-width: 640px; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-900 { max-width: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.gap-3 { gap: 12px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.space-y-5 > * + * { margin-top: 20px; }
.space-y-8 > * + * { margin-top: 32px; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp 0.7s ease forwards;
}
.animate-delay-1 { animation-delay: 0.12s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.24s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.36s; opacity: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-card.featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 600;
  padding: 4px 16px; border-radius: 0 0 8px 8px;
}
.pricing-icon { margin-bottom: 20px; }
.pricing-icon svg { width: 48px; height: 48px; color: var(--teal); }
.pricing-card h3 { font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.pricing-desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 14px; color: var(--navy);
}
.pricing-features svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ---- Contact Form ---- */
.contact-form { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); font-size: 15px; color: var(--navy);
  background: var(--white); transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(58,96,161,0.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light-muted); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- KB Section ---- */
.kb-section { margin-bottom: 48px; }
.kb-section-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.kb-section-header svg { width: 24px; height: 24px; color: var(--orange); }
.kb-section-header h3 { font-size: 22px; font-weight: 600; color: var(--navy); }
.kb-articles { display: flex; flex-direction: column; gap: 12px; }

/* ---- Blog Tags & Back Button ---- */
.blog-tag {
  display: inline-block; background: rgba(58,96,161,0.1); color: var(--teal);
  font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: var(--radius-sm);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none; color: var(--muted); font-size: 14px;
  cursor: pointer; transition: color 0.2s; padding: 0; margin-bottom: 8px;
}
.btn-back:hover { color: var(--navy); }
.article-body { color: var(--navy); line-height: 1.8; }
.article-body h3 { font-size: 22px; font-weight: 600; margin: 40px 0 16px; }
.article-body p { color: var(--muted); margin-bottom: 16px; }
.article-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.article-body ul li { color: var(--navy); margin-bottom: 8px; }

/* ---- Footer (consistent) ---- */
.footer { background: var(--navy); }
.footer-main { padding: 64px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { display: flex; }
.footer-links h4 { font-size: 14px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 24px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ice); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }
