@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@800&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&family=Manrope:wght@400;600;700;800&display=swap');

/* 1. Universal Reset and Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.6;
  color: #f1f5f9;
  background: #0f172a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 202px;
}


/* 2. Logo Styles */

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.logo img {
  height: 170px;
  width: 100;
  display: block;
}

.logo:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}


/* 3. Header & Navbar */

header {
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

nav ul li a:not(.btn-link):not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #f0d37e;
  transition: width 0.3s ease;
}

nav ul li a:not(.btn-link):not(.nav-cta):hover::after,
nav ul li a.link.active::after {
  width: calc(100% - 32px);
}

nav ul li a:hover {
  color: #f0d37e;
}

nav ul li a.btn-link {
  background: #C9A84C;
  color: #0d0b1e;
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 20px;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

nav ul li a.btn-link:hover {
  background: #F5D78E;
}

.nav-cta {
  display: inline-block;
  background: #f0d37e;
  color: #131318;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 10px 24px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  margin-left: auto;
}

.nav-cta:hover {
  opacity: 0.88;
}


/* Hamburger Menu (Mobile) */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
  position: fixed;
  top: 20px;
  right: 20px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: background-color 0.3s ease;
}


/* 4. Main Content Styles */

.hero-bg {
  position: relative;
  background-image: url('images/building.jpg');
  background-size: cover;
  background-position: center;
  min-height: 870px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 20, 0.86);
  z-index: 0;
}

.hero-bg .container {
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
  max-width: 896px;
  margin: auto;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.container h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: #f1f5f9;
  margin-bottom: 0;
}

body.index .container h1 {
  opacity: 0;
  animation: fadeSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.container p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 672px;
  margin-bottom: 0;
  line-height: 1.75;
}

body.index .container p {
  opacity: 0;
  animation: fadeSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.main-btn, .main-btn2 {
  display: inline-block;
  margin-top: 0;
  padding: 14px 40px;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.index .main-btn,
body.index .main-btn2,
body.index .hero-btns {
  opacity: 0;
  animation: fadeSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

/* Hero buttons row */
.hero-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

/* Start a Project — solid gold fill, dark text */
.main-btn {
  background: #f0d37e;
  color: #131318;
  border: 2px solid #f0d37e;
}
.main-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* About our Services — outline style */
.main-btn2 {
  background: transparent;
  color: #f0d37e;
  border: 2px solid rgba(240, 211, 126, 0.4);
}
.main-btn2:hover {
  background: rgba(240, 211, 126, 0.08);
  border-color: #f0d37e;
  transform: translateY(-1px);
}

.main-btn3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #f0d37e;
  text-decoration: none;
  border-bottom: 1px solid #f0d37e;
  padding: 0 0 2px 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.main-btn3:hover {
  background: transparent;
  border: none;
  border-bottom: 1px solid #f0d37e;
  color: #f0d37e;
  gap: 10px;
  opacity: 0.85;
}

/* AI Platform Sections */
#ai-platform,
#marketing-platform,
#music-platform {
  padding: 7.5rem 4rem;
}

/* Flip card to left, text to right on marketing section */
.marketing-flip {
  grid-template-columns: 0.8fr 1.2fr;
}

@media (max-width: 768px) {
  .marketing-flip {
    grid-template-columns: 1fr;
  }
}

.ai-platform-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.ai-platform-text {
  flex: 1;
  text-align: left;
}

.ai-badge {
  display: inline-block;
  background: rgba(240, 211, 126, 0.10);
  color: #f0d37e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px solid rgba(240, 211, 126, 0.20);
  margin-bottom: 1.25rem;
}

.ai-badge--blue {
  background: rgba(240, 211, 126, 0.10);
  color: #f0d37e;
  border-color: rgba(240, 211, 126, 0.20);
}

.ai-badge--purple {
  background: rgba(240, 211, 126, 0.10);
  color: #f0d37e;
  border-color: rgba(240, 211, 126, 0.20);
}

.ai-platform-text h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2.5rem;
  color: #f1f5f9;
  margin: 0 0 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ai-platform-text p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.ai-platform-card {
  flex: 1;
  background: #1e293b;
  border: 1px solid rgba(51, 65, 85, 0.3);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ai-platform-card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-platform-card--link:hover {
  border-color: rgba(240, 211, 126, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(240, 211, 126, 0.15);
}

.ai-card-header {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.ai-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.ai-card-url {
  font-size: 0.7rem;
  color: rgba(210, 200, 240, 0.45);
  margin-left: auto;
  font-family: monospace;
  letter-spacing: 0.5px;
}

.ai-card-body {
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ai-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.ai-card-stat:last-child {
  border-bottom: none;
}

.ai-stat-label {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.875rem;
  color: #94a3b8;
}

.ai-stat-val {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #f0d37e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 5. Footer Styles */

footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.55);
  padding: 5rem 4rem 3rem;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.footer-logo {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.2rem;
}

.footer-icons {
  display: flex;
  gap: 1rem;
}

.footer-icons a {
  color: #94a3b8;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer-icons a:hover {
  color: #f0d37e;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0d37e;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #f0d37e;
}

.footer-col > p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col > p a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col > p a:hover {
  color: #C9A84C;
}

.footer-bottom {
  max-width: 1000px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.linkedin-link {
  display: inline-block;
  margin: 10px;
  color: #0A66C2;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.linkedin-link:hover {
  color: #ffffff;
  transform: scale(1.15);
}


/* 6. Background per Page */

body.home {
  background: #0f172a;
}

body.services {
  background: #0f172a;
  padding-top: 0;
}
body.about {
  background: #0f172a;
  padding-top: 0;
}
body.inquiry {
  background:
    radial-gradient(ellipse at 95% 50%, rgba(201, 168, 76, 0.55)  0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(180, 140, 40, 0.32)  0%, transparent 45%),
    radial-gradient(ellipse at 80% 85%, rgba(220, 170, 50, 0.25)  0%, transparent 40%),
    radial-gradient(ellipse at 15% 45%, rgba(40, 20, 80,  0.45)   0%, transparent 45%),
    linear-gradient(105deg, #0d0b1e 0%, #1a1410 35%, #2e2008 65%, #3d2a00 100%);
  background-attachment: fixed;
}

body.inquiry label,
body.inquiry .hint {
  color: rgba(245, 235, 200, 0.9);
}
body.contact {
  background:
    radial-gradient(ellipse at 95% 50%, rgba(0, 210, 200, 0.45)  0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(0, 180, 170, 0.28)  0%, transparent 45%),
    radial-gradient(ellipse at 80% 85%, rgba(0, 200, 190, 0.22)  0%, transparent 40%),
    radial-gradient(ellipse at 15% 45%, rgba(40, 20, 80,  0.45)  0%, transparent 45%),
    linear-gradient(105deg, #0d0b1e 0%, #0d1e20 35%, #0d2e30 65%, #0d3d3a 100%);
  background-attachment: fixed;
}




/* 7. Cards / Services Grid */

.services-grid {
  display: grid;
  grid-template-columns: 1fr; /* 👈 Forces one column only */
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto; /* centers the column */
}

.card {
  background: linear-gradient(160deg, #1a1630 0%, #141028 60%, #0f1020 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 20px;
  cursor: pointer;
  min-height: 400px;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.65);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.3),
    0 0 20px rgba(201, 168, 76, 0.25),
    0 0 50px rgba(201, 168, 76, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.card h3 {
  margin: 1rem 0 0.5rem;
  color: #f5f0ff;
}

.card > a:not(.btn-card) {
  text-decoration: none;
}

.card > a:not(.btn-card) h3 {
  transition: color 0.3s ease;
}

.card > a:not(.btn-card):hover h3 {
  color: #F5D78E;
}

.card p {
  padding: 0 1rem;
  color: rgba(210, 200, 240, 0.65);
}

.btn-card {
  display: inline-block;
  margin: 1rem 0;
  padding: 8px 20px;
  background: linear-gradient(135deg, #C9A84C, #F5D78E);
  color: #0d0b1e;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  font-weight: 500;
}

.btn-card:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}


/* 8. Form / Textarea Styles */

body.inquiry form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

body.inquiry .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.2rem;
}

body.inquiry input[type="text"],
body.inquiry input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  color: #f5f0e8;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

body.inquiry input[type="text"]:focus,
body.inquiry input[type="email"]:focus {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

body.inquiry input::placeholder {
  color: rgba(245, 235, 200, 0.35);
}

#project {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  color: #f5f0e8;
  resize: vertical;
  min-height: 160px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  font-family: inherit;
}

#project:focus {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

#project::placeholder {
  color: rgba(245, 235, 200, 0.35);
}

.hint { font-size: 13px; color: rgba(201, 168, 76, 0.6); margin-top: 4px; }

.mySubmit {
  margin-top: 1.2rem;
  width: 100%;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #C9A84C, #F5D78E);
  color: #0d0b1e;
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.mySubmit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}


/* 9. Animations */

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 10. Highlight Active Link */

nav ul li a.link.active {
  color: #f0d37e;
  font-weight: 600;
}


/* 11. Stats Section */

.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 50px 0;
  flex-wrap: wrap;
  z-index: 10;
  position: relative;
}

.stats {
  background-color: #007BFF;
  color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.stats:hover {
  transform: scale(1.05);
}

.stats .counter {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'Arial Black', Arial, sans-serif;
}

.stats p {
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 12. Clients Section - Fixed and Responsive */

#clients {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7.5rem 4rem;
  width: 100%;
  background: #0f172a;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  overflow: hidden;
}

#clients h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.client-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
}

.client-logos-inner {
  display: flex;
  gap: 120px;
  align-items: center;
  width: max-content;
}

.client-logos .client-icon {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.client-logos .client-icon:hover {
  transform: scale(1.05);
}


/* 13. Mobile Styles */

@media (max-width: 768px) {
  body {
    padding-top: 147px;
  }

  .logo {
    border-radius: 10px;
  }

  .ai-platform-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #marketing-platform .ai-platform-card {
    order: 2;
  }

  #marketing-platform .ai-platform-text {
    order: 1;
  }

  .marketing-flip {
    grid-template-columns: 1fr;
  }

  .ai-platform-text {
    text-align: center;
  }

  .ai-platform-card {
    width: 100%;
  }

  .footer-logo {
    height: 150px;
  }

  .logo img {
    height: 115px;
  }

  .menu-toggle {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
  }

  nav ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -260px;
    left: auto;
    transform: none;
    width: 260px;
    height: 100vh;
    background-color: #0d0b1e;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    padding: 80px 20px;
    gap: 1rem;
    transition: right 0.3s ease;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li a {
    padding: 8px 0;
    font-size: 1rem;
  }

  main {
    padding: 3rem 1.5rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .main-btn,
  .hero-btns .main-btn2 {
    width: 100%;
    text-align: center;
  }

  .container h1 {
    font-size: 2.4rem;
    letter-spacing: -0.02em;
  }

  footer {
    font-size: 0.9rem;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #clients {
    padding: 5rem 1.5rem;
  }

  #clients h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .client-logos-inner {
    gap: 80px;
    /* Animation removed from CSS - will be applied by JavaScript */
  }

  .client-logos .client-icon {
    height: 60px;
  }

  .client-logos-inner {
    gap: 80px;
    /* Animation handled by JS */
  }

  .client-logos .client-icon {
    height: 60px;
  }
}


/* 14. WhatsApp Floating Icon */

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  fill: white;
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile-specific h2 */
.mobile-h2 {
  display: none; /* Hide by default */
}

/* 15. Service Images */

.service-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 16. Director Image */

.director-section h2, h3 {
  color: #f5f0ff;
}

/* Back Button (service sub-pages) */

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.8rem;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 8px;
  color: #C9A84C;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.back-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #F5D78E;
  color: #F5D78E;
  transform: translateX(-3px);
}

/* 17. Contact Cards */

.contact-intro {
  color: rgba(210, 200, 240, 0.75);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: linear-gradient(160deg, #1a1630 0%, #141028 60%, #0f1020 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.25),
    0 0 24px rgba(201, 168, 76, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.3rem;
  color: #F5D78E;
}

.contact-card h3 {
  color: #f5f0ff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  letter-spacing: 0.5px;
}

.contact-card p {
  color: rgba(210, 200, 240, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.contact-card a {
  color: #C9A84C;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #F5D78E;
}

.director-photo {
  width: 250px;
  height: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 15px;
}

@media (max-width: 480px) {
  .logo img {
    height: 130px;
  }
}


/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* Full-width layout override for about page */
main.about-main {
  max-width: none;
  padding: 0;
  margin: 0;
  text-align: left;
  align-items: stretch;
  gap: 0;
  display: block;
  flex: none;
}

/* ---- About Hero ---- */
.about-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.80;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #131318 0%, rgba(19,19,24,0.80) 50%, transparent 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 202px 4rem 4rem;
}

.about-hero-inner {
  max-width: 768px;
}

.about-established-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(53, 52, 58, 0.8);
  color: #f0d37e;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 211, 126, 0.3);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.about-hero-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.about-hero-desc {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.125rem;
  color: #cfc6b3;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.about-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Section Label ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #f0d37e;
  margin-bottom: 1.5rem;
}

.section-label-line {
  display: block;
  width: 3rem;
  height: 2px;
  background: #f0d37e;
  flex-shrink: 0;
}

.section-label-text {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f0d37e;
}

/* ---- Our Mission ---- */
.about-mission {
  padding: 7.5rem 4rem;
  background: #0f172a;
}

.about-mission-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-mission-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.about-mission-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: none;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1rem;
}

.about-stat-number {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f0d37e;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6457;
}

.about-mission-img-wrap {
  position: relative;
  padding-bottom: 2rem;
}

.about-mission-img-frame {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(76, 70, 56, 0.2);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.about-mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s ease;
  display: block;
}

.about-mission-img:hover {
  filter: grayscale(0);
}

.about-mission-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: #2a292f;
  padding: 1.25rem 1.75rem;
  border-radius: 4px;
  border: 1px solid rgba(240, 211, 126, 0.2);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.about-mission-badge-icon {
  font-size: 2.25rem;
  color: #f0d37e;
}

.about-mission-badge-text {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* ---- Our Story / Bento Grid ---- */
.about-story {
  background: #1b1b20;
  padding: 7.5rem 4rem;
}

.about-story-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-story-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-journey-label {
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.3em;
}

.about-story-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  height: 600px;
}

.bento-card {
  background: #35343a;
  border: 1px solid rgba(76, 70, 56, 0.3);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.bento-card:hover {
  border-color: rgba(240, 211, 126, 0.5);
}

.bento-founding {
  grid-column: span 2;
  grid-row: span 2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-founding-content {
  flex: 1;
}

.bento-card-h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.bento-card-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
}

.bento-founding-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(1) brightness(0.75);
  margin-top: 2rem;
  flex-shrink: 0;
}

.bento-expansion {
  grid-column: span 2;
  grid-row: span 1;
  padding: 2.5rem;
  background: #0e0e13;
  border-left: 4px solid #f0d37e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bento-expansion-title {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0d37e;
  margin-bottom: 0.5rem;
}

.bento-expansion-desc {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
}

.bento-expansion-icon {
  font-size: 4.5rem;
  color: rgba(240, 211, 126, 0.2);
  flex-shrink: 0;
}

.bento-platform {
  padding: 2rem;
}

.bento-platform-icon {
  font-size: 1.5rem;
  color: #f0d37e;
  display: block;
  margin-bottom: 1rem;
}

.bento-platform-title {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.bento-platform-desc {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ---- Values Section ---- */
.about-values {
  padding: 7.5rem 4rem;
  background: #0f172a;
}

.about-values-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-card {
  padding: 2rem;
  border-left: 2px solid rgba(240, 211, 126, 0.3);
  transition: border-left-color 0.25s ease;
}

.value-card:hover {
  border-left-color: #f0d37e;
}

.value-card-h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.value-card-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ---- Managing Director ---- */
.about-md {
  padding: 7.5rem 4rem;
  background: #0e0e13;
}

.about-md-inner {
  max-width: 860px;
  margin: 0 auto;
}

.about-md-label {
  justify-content: center;
  margin-bottom: 3rem;
}

.about-md-card {
  background: #131825;
  border: 1px solid rgba(240, 211, 126, 0.12);
  border-radius: 16px;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.about-md-monogram-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-md-monogram {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid #f0d37e;
  background: rgba(240, 211, 126, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f0d37e;
  letter-spacing: 0.05em;
}

.about-md-exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 211, 126, 0.1);
  border: 1px solid rgba(240, 211, 126, 0.25);
  color: #f0d37e;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.about-md-identity {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-md-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
}

.about-md-role {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.03em;
  margin: 0;
}

.about-md-divider {
  width: 48px;
  height: 2px;
  background: rgba(240, 211, 126, 0.4);
  border-radius: 2px;
}

.about-md-bio {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-md-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.8;
  margin: 0;
}

.about-md-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.about-md-tag {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f0d37e;
  background: rgba(240, 211, 126, 0.08);
  border: 1px solid rgba(240, 211, 126, 0.2);
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* ---- About CTA ---- */
.about-cta {
  padding: 8rem 2rem;
  background: #0e0e13;
  border-top: 1px solid rgba(76, 70, 56, 0.3);
  border-bottom: 1px solid rgba(76, 70, 56, 0.3);
  text-align: center;
}

.about-cta-inner {
  max-width: 768px;
  margin: 0 auto;
}

.about-cta-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.about-cta-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ---- About Page Mobile ---- */
@media (max-width: 768px) {
  .about-hero-content {
    padding: 147px 1.5rem 3rem;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-desc {
    max-width: 100%;
  }

  .about-mission {
    padding: 4rem 1.5rem;
  }

  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-mission-badge {
    position: static;
    margin-top: 1.5rem;
    left: auto;
    bottom: auto;
  }

  .about-mission-img-wrap {
    padding-bottom: 0;
  }

  .about-story {
    padding: 4rem 1.5rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .bento-founding,
  .bento-expansion {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-values {
    padding: 4rem 1.5rem;
  }

  .about-values-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-md {
    padding: 4rem 1.5rem;
  }

  .about-md-card {
    padding: 2.5rem 1.5rem;
  }

  .about-cta {
    padding: 5rem 1.5rem;
  }

  .about-cta-h2 {
    font-size: 2rem;
  }

  .about-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .about-cta-btns .main-btn,
  .about-cta-btns .main-btn2 {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   SERVICES PAGE STYLES
   ============================================================ */

main.services-main {
  max-width: none;
  padding: 0;
  margin: 0;
  text-align: left;
  align-items: stretch;
  gap: 0;
  display: block;
  flex: none;
}

/* ---- Services Hero ---- */
.services-hero {
  padding: 14rem 4rem 5rem;
  text-align: center;
}

.services-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-hero-label {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0d37e;
  display: block;
  margin-bottom: 1.5rem;
}

.services-hero-h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: #ffffff;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.125rem;
  color: #cfc6b3;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---- Platform Bento Grid ---- */
.services-platforms {
  padding: 0 4rem 7.5rem;
}

.services-platforms-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: #1b1b20;
  border: 1px solid rgba(76, 70, 56, 0.2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* ---- My Investments (col-span-8) ---- */
.svc-investments {
  grid-column: span 8;
  padding: 2rem;
  display: flex;
  gap: 2rem;
}

.svc-investments-text {
  flex: 1;
}

.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 211, 126, 0.1);
  border: 1px solid rgba(240, 211, 126, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.svc-badge i,
.svc-badge span {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0d37e;
}

.svc-investments-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.svc-investments-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.svc-investments-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-investments-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e4e1e9;
}

.svc-investments-list li i {
  color: #f0d37e;
  font-size: 1rem;
}

.svc-investments-img-wrap {
  flex: 1;
  min-height: 300px;
  background: #2a292f;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.svc-investments-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.7s ease, opacity 0.7s ease;
  display: block;
}

.svc-investments-img-wrap:hover .svc-investments-img {
  filter: grayscale(0);
  opacity: 1;
}

/* My outline button variant */
.svc-outline-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid #f0d37e;
  color: #f0d37e;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.svc-outline-btn:hover {
  background: #f0d37e;
  color: #3c2f00;
}

/* My marketing button variant */
.svc-outline-btn2 {
  display: inline-block;
  align-self: flex-start;
  padding: 0.5rem 1.5rem;
  border: 1px solid #110f0c;
  color: #15130e;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.svc-outline-btn2:hover {
  background: #15130e;
  color: #f0d37e;
}

/* ---- My Marketing (col-span-4) ---- */
.svc-marketing {
  grid-column: span 4;
  background: #f0d37e;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-badge--dark {
  background: rgba(0,0,0,0.1);
  border: none;
}

.svc-badge--dark i,
.svc-badge--dark span {
  color: #3c2f00;
}

.svc-marketing-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #3c2f00;
  margin-bottom: 1rem;
}

.svc-marketing-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(60, 47, 0, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

.svc-marketing-stats {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.svc-marketing-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #3c2f00;
}

.svc-marketing-stat + .svc-marketing-stat {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.svc-dark-btn {
  display: block;
  width: 100%;
  background: #3c2f00;
  color: #f0d37e;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.svc-dark-btn:hover {
  opacity: 0.85;
}

/* ---- My Music (col-span-4) ---- */
.svc-music {
  grid-column: span 4;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.svc-music-icon-wrap {
  background: rgba(240, 211, 126, 0.1);
  width: 56px;
  height: 56px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.svc-music-icon-wrap i {
  font-size: 1.75rem;
  color: #f0d37e;
}

.svc-music-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.svc-music-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.svc-music-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: #2a292f;
  border-radius: 4px;
  margin-top: auto;
}

.svc-music-footer img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.svc-music-footer-title {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.svc-music-footer-sub {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ---- Custom Backend (col-span-8) ---- */
.svc-backend {
  grid-column: span 8;
  background: #0e0e13;
  padding: 2.5rem;
}

.svc-backend-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.svc-backend-label {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f0d37e;
  display: block;
  margin-bottom: 0.5rem;
}

.svc-backend-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.svc-backend-p {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.svc-backend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-backend-tag {
  padding: 4px 12px;
  background: #1f1f25;
  border: 1px solid rgba(76, 70, 56, 0.3);
  border-radius: 4px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.75rem;
  color: #94a3b8;
}

.svc-backend-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.svc-backend-tile {
  padding: 1.5rem;
  background: #1f1f25;
  border: 1px solid rgba(76, 70, 56, 0.1);
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.25s ease;
}

.svc-backend-tile:hover {
  border-color: rgba(240, 211, 126, 0.3);
}

.svc-backend-tile i {
  font-size: 1.25rem;
  color: #f0d37e;
  display: block;
  margin-bottom: 0.75rem;
}

.svc-backend-tile-title {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
}

/* ---- Services CTA ---- */
.services-cta {
  padding: 8rem 2rem;
  background: #1f1f25;
  border-top: 1px solid rgba(76, 70, 56, 0.2);
  border-bottom: 1px solid rgba(76, 70, 56, 0.2);
  text-align: center;
}

.services-cta-inner {
  max-width: 768px;
  margin: 0 auto;
}

.services-cta-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.services-cta-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ---- Services Page Mobile ---- */
@media (max-width: 768px) {
  .services-hero {
    padding: 11rem 1.5rem 3rem;
  }

  .services-hero-h1 {
    font-size: 2.2rem;
  }

  .services-platforms {
    padding: 0 1.5rem 4rem;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-investments,
  .svc-marketing,
  .svc-music,
  .svc-backend {
    grid-column: span 1;
  }

  .svc-investments {
    flex-direction: column;
  }

  .svc-investments-img-wrap {
    min-height: 200px;
  }

  .svc-backend-inner {
    grid-template-columns: 1fr;
  }

  .services-cta {
    padding: 5rem 1.5rem;
  }

  .services-cta-h2 {
    font-size: 2rem;
  }

  .services-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .services-cta-btns .main-btn,
  .services-cta-btns .main-btn2 {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

body.contact {
  background: #0f172a;
  padding-top: 0;
}

main.contact-main {
  max-width: none;
  padding: 0;
  margin: 0;
  display: block;
}

/* ── Hero ── */
.contact-hero {
  padding: 14rem 4rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-hero-inner {
  max-width: 560px;
}

.contact-hero-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0d37e;
  margin-bottom: 1.25rem;
}

.contact-hero-h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #e4e1e9;
  margin: 0 0 1.5rem;
}

.contact-hero-p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #cfc6b3;
  margin: 0;
}

/* ── Bento Wrap ── */
.contact-bento-wrap {
  padding: 0 4rem 7.5rem;
}

.contact-bento-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Contact Grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1.5rem;
  align-items: start;
}

/* ── Form Card ── */
.contact-form-card {
  background: #0e0e13;
  border: 1px solid rgba(76, 70, 56, 0.1);
  border-radius: 0.5rem;
  padding: 3rem;
}

.contact-form-h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #e4e1e9;
  margin: 0 0 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #cfc6b3;
}

.contact-input {
  width: 100%;
  background: #1b1b20;
  color: #e4e1e9;
  border: none;
  border-bottom: 1px solid rgba(76, 70, 56, 0.4);
  border-radius: 0;
  padding: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.contact-input::placeholder {
  color: rgba(207, 198, 179, 0.35);
}

.contact-input:focus {
  border-bottom-color: #f0d37e;
}

.contact-select {
  cursor: pointer;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  display: inline-block;
  background: #f0d37e;
  color: #3c2f00;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1rem 3rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  align-self: flex-start;
}

.contact-submit-btn:hover {
  filter: brightness(1.1);
}

.contact-submit-btn:active {
  transform: scale(0.97);
}

/* ── Info Cluster ── */
.contact-info-cluster {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── Contact Details Card ── */
.contact-details-card {
  background: #2a292f;
  border: 1px solid rgba(76, 70, 56, 0.1);
  border-radius: 0.5rem;
  padding: 2.5rem;
}

.contact-details-h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #e4e1e9;
  margin: 0 0 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #e4e1e9;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: color 0.2s;
}

.contact-detail-item:hover {
  color: #f0d37e;
}

.contact-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(240, 211, 126, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.contact-detail-item:hover .contact-detail-icon {
  background: rgba(240, 211, 126, 0.2);
}

.contact-detail-icon i {
  color: #f0d37e;
  font-size: 1rem;
}

/* ── Map Card ── */
.contact-map-card {
  position: relative;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(76, 70, 56, 0.1);
}

.contact-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.4;
  transition: filter 0.7s, opacity 0.7s;
  display: block;
}

.contact-map-card:hover .contact-map-img {
  filter: grayscale(0);
  opacity: 0.6;
}

.contact-map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(14, 14, 19, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(76, 70, 56, 0.2);
  border-radius: 0.25rem;
  padding: 1.5rem;
}

.contact-map-badge-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f0d37e;
  margin: 0 0 0.25rem;
}

.contact-map-city {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #e4e1e9;
  margin: 0 0 0.5rem;
}

.contact-map-district {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #cfc6b3;
  margin: 0;
}

/* ── Partners Section ── */
.contact-partners {
  border-top: 1px solid rgba(76, 70, 56, 0.1);
  padding: 7.5rem 4rem;
}

.contact-partners-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.contact-partners-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cfc6b3;
  margin: 0 0 3rem;
}

.contact-partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.3;
  filter: grayscale(1) invert(1) brightness(0);
  transition: opacity 0.5s, filter 0.5s;
}

.contact-partners-logos:hover {
  opacity: 1;
  filter: none;
}

.contact-partners-logos img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

/* ── Responsive ── */

/* iPad landscape (901px – 1200px) */
@media (min-width: 901px) and (max-width: 1200px) {
  .contact-bento-wrap {
    padding: 0 2.5rem 6rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .contact-form-card {
    padding: 2.5rem 2rem;
  }

  .contact-form-h2 {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .contact-form {
    gap: 1.5rem;
  }

  .contact-submit-btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }

  .contact-partners {
    padding: 5rem 2.5rem;
  }
}

/* iPad portrait & small tablets (601px – 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .contact-hero {
    padding: 12rem 2rem 4rem;
  }

  .contact-bento-wrap {
    padding: 0 2rem 5.5rem;
  }

  .contact-form-card {
    padding: 2.5rem 2rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .contact-submit-btn {
    width: 100%;
    text-align: center;
  }

  .contact-partners {
    padding: 4.5rem 2rem;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .contact-hero {
    padding: 12rem 1.5rem 4rem;
  }

  .contact-bento-wrap {
    padding: 0 1.5rem 5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 2rem 1.5rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-partners {
    padding: 4rem 1.5rem;
  }
}


/* ============================================================
   LEGAL PAGES  (privacy.html & terms.html)
   ============================================================ */

body.legal {
  background: #0f172a;
  padding-top: 0;
  color: #e4e1e9;
}

/* Reset main so it behaves like the other page mains */
body.legal .legal-main {
  max-width: none;
  padding: 0;
  margin: 0;
  display: block;
}

/* ── Hero ── */
.legal-hero {
  padding: 14rem 4rem 5rem;
  background: #0f172a;
  border-bottom: 1px solid #2a292f;
}

.legal-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.legal-hero-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0d37e;
  background: rgba(240, 211, 126, 0.08);
  border: 1px solid rgba(240, 211, 126, 0.22);
  border-radius: 100px;
  padding: 0.35em 1em;
  margin-bottom: 1.6rem;
}

.legal-hero-h1 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #e4e1e9;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}

.legal-hero-p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

/* ── Document body ── */
.legal-doc-wrap {
  padding: 5rem 4rem 8rem;
  background: #0f172a;
}

.legal-doc {
  max-width: 780px;
  margin: 0 auto;
}

.legal-intro {
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #cfc6b3;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2a292f;
}

/* ── Section blocks ── */
.legal-section {
  margin-bottom: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid #1b1b20;
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f0d37e;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

.legal-section p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.8;
  color: #cfc6b3;
  margin: 0 0 0.9rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0.6rem 0 0.9rem 1.4rem;
  padding: 0;
}

.legal-section ul li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #cfc6b3;
  margin-bottom: 0.3rem;
  list-style: disc;
}

.legal-section a {
  color: #f0d37e;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 211, 126, 0.3);
  transition: border-color 0.2s;
}

.legal-section a:hover {
  border-color: #f0d37e;
}

/* ── Back link ── */
.legal-back {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #2a292f;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-back-link:hover {
  color: #f0d37e;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .legal-hero {
    padding: 11rem 1.5rem 3.5rem;
  }

  .legal-doc-wrap {
    padding: 3rem 1.5rem 5rem;
  }

  .legal-hero-h1 {
    font-size: 2rem;
  }
}


/* ============================================================
   PRIVACY POLICY PAGE  (privacy.html)
   body.privacy — Stitch-inspired two-column layout
   ============================================================ */

body.privacy {
  background: #0f172a;
  padding-top: 0;
  color: #e4e1e9;
}

body.privacy .privacy-main {
  max-width: none;
  padding: 0;
  margin: 0;
  display: block;
}

/* ── Hero ── */
.privacy-hero {
  padding: 14rem 4rem 5rem;
  background: #0f172a;
  border-bottom: 1px solid #2a292f;
}

.privacy-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.privacy-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.privacy-hero-eyebrow i {
  font-size: 0.95rem;
  color: #f0d37e;
}

.privacy-hero-eyebrow span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0d37e;
}

.privacy-hero-h1 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #e4e1e9;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}

.privacy-hero-p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

/* ── Doc wrapper ── */
.privacy-doc-wrap {
  padding: 5rem 4rem 2rem;
  background: #0f172a;
}

/* ── Two-column grid ── */
.privacy-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* ── Sticky sidebar ── */
.privacy-sidebar {
  position: sticky;
  top: 7rem;
}

.privacy-toc {
  background: rgba(14, 14, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(76, 70, 56, 0.45);
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.privacy-toc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0d37e;
  margin: 0 0 1.4rem;
}

.privacy-toc-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.privacy-toc-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.privacy-toc-links a:hover {
  color: #f0d37e;
}

/* ── Article column ── */
.privacy-article {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding-bottom: 5rem;
}

/* ── Individual section ── */
.privacy-sec {
  scroll-margin-top: 7rem;
}

.privacy-sec-h2 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #e4e1e9;
  margin: 0 0 1.75rem;
  line-height: 1.3;
}

.privacy-sec-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f0d37e;
  background: rgba(240, 211, 126, 0.1);
  padding: 0.22rem 0.55rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

/* ── Section body text ── */
.privacy-sec-body p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.82;
  color: #cfc6b3;
  margin: 0 0 0.9rem;
}

.privacy-sec-body p:last-child { margin-bottom: 0; }

.privacy-sec-body a {
  color: #f0d37e;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 211, 126, 0.3);
  transition: border-color 0.2s;
}

.privacy-sec-body a:hover { border-color: #f0d37e; }

.privacy-sec-body ul {
  margin: 0.6rem 0 0.9rem 1.4rem;
  padding: 0;
}

.privacy-sec-body ul li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #cfc6b3;
  margin-bottom: 0.3rem;
  list-style: disc;
}

.privacy-sec-body ul li a {
  color: #f0d37e;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 211, 126, 0.3);
}

/* ── Bento glass cards (section 02) ── */
.privacy-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.privacy-glass-card {
  background: rgba(14, 14, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(76, 70, 56, 0.38);
  border-radius: 0.75rem;
  padding: 2rem;
}

.privacy-card-icon {
  font-size: 1.8rem;
  color: #f0d37e;
  display: block;
  margin-bottom: 1rem;
}

.privacy-card-h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4e1e9;
  margin: 0 0 0.55rem;
}

.privacy-card-p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
}

/* ── Bullet list (section 03) ── */
.privacy-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.privacy-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.privacy-bullet-dot {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #f0d37e;
  margin-top: 0.65rem;
}

.privacy-bullet-item p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #cfc6b3;
  margin: 0;
}

.privacy-bullet-item p strong {
  color: #e4e1e9;
  font-weight: 700;
}

/* ── Security callout (section 04) ── */
.privacy-sec-callout {
  background: rgba(240, 211, 126, 0.04);
  border: 1px solid rgba(240, 211, 126, 0.14);
  border-radius: 1rem;
  padding: 2.5rem;
}

.privacy-callout-p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.82;
  color: #cfc6b3;
  margin: 0 0 1.75rem;
}

.privacy-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.privacy-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #f0d37e;
}

.privacy-checklist li i { font-size: 0.85rem; }

.privacy-callout-footnote {
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #4c4638;
  margin: 0;
}

/* ── Border-left cards (section 05) ── */
.privacy-border-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.privacy-border-card {
  padding: 1rem 1.25rem;
  border-left: 2px solid #f0d37e;
  background: #1b1b20;
}

.privacy-border-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #e4e1e9;
  margin: 0;
}

.privacy-border-card strong {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── Rights grid (section 07) ── */
.privacy-rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.privacy-right-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #1b1b20;
  border: 1px solid #2a292f;
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.privacy-right-icon {
  font-size: 1rem;
  color: #f0d37e;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.privacy-right-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e4e1e9;
  margin: 0 0 0.3rem;
}

.privacy-right-item p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.87rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* ── CTA section ── */
.privacy-cta {
  padding: 6rem 4rem;
  border-top: 1px solid rgba(76, 70, 56, 0.35);
  border-bottom: 1px solid rgba(76, 70, 56, 0.35);
  text-align: center;
  background: #0f172a;
}

.privacy-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.privacy-cta-h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e4e1e9;
  margin: 0 0 1rem;
}

.privacy-cta-p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #94a3b8;
  margin: 0 0 2rem;
}

.privacy-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #f0d37e;
  color: #231b00;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.privacy-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    display: none;
  }

  .privacy-bento,
  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }

  .privacy-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .privacy-hero {
    padding: 11rem 1.5rem 3.5rem;
  }

  .privacy-doc-wrap {
    padding: 3rem 1.5rem 1rem;
  }

  .privacy-cta {
    padding: 4rem 1.5rem;
  }

  .privacy-sec-callout {
    padding: 1.75rem;
  }
}


/* ============================================================
   TERMS OF SERVICE PAGE  (terms.html)
   body.terms — Stitch-inspired two-column layout
   ============================================================ */

body.terms {
  background: #0f172a;
  padding-top: 0;
  color: #e4e1e9;
}

body.terms .terms-main {
  max-width: none;
  padding: 0;
  margin: 0;
  display: block;
}

/* ── Hero ── */
.terms-hero {
  padding: 14rem 4rem 5rem;
  background: #0f172a;
  border-bottom: 1px solid #2a292f;
}

.terms-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.terms-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.terms-hero-eyebrow i {
  font-size: 0.95rem;
  color: #f0d37e;
}

.terms-hero-eyebrow span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0d37e;
}

.terms-hero-h1 {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #e4e1e9;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}

.terms-hero-p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

/* ── Doc wrapper ── */
.terms-doc-wrap {
  padding: 5rem 4rem 2rem;
  background: #0f172a;
}

/* ── Two-column grid ── */
.terms-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* ── Sticky sidebar ── */
.terms-sidebar {
  position: sticky;
  top: 7rem;
}

.terms-toc {
  background: rgba(14, 14, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(76, 70, 56, 0.45);
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.terms-toc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0d37e;
  margin: 0 0 1.4rem;
}

.terms-toc-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.terms-toc-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.terms-toc-links a:hover {
  color: #f0d37e;
}

/* ── Article column ── */
.terms-article {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding-bottom: 5rem;
}

/* ── Individual section ── */
.terms-sec {
  scroll-margin-top: 7rem;
}

/* Glass variant */
.terms-sec--glass .terms-sec-inner {
  background: rgba(14, 14, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(76, 70, 56, 0.38);
  border-radius: 0.75rem;
  padding: 2.5rem;
}

/* Liability variant — gold left border */
.terms-sec--liability .terms-sec-inner {
  background: rgba(14, 14, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(76, 70, 56, 0.38);
  border-left: 4px solid #f0d37e;
  border-radius: 0.75rem;
  padding: 2.5rem;
}

.terms-sec-h2 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #e4e1e9;
  margin: 0 0 1.75rem;
  line-height: 1.3;
}

/* Gold badge (used on glass/liability sections) */
.terms-sec-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f0d37e;
  background: rgba(240, 211, 126, 0.1);
  padding: 0.22rem 0.55rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Dimmed badge (used on plain sections) */
.terms-sec-badge--dim {
  color: #4c4638;
  background: #2a292f;
}

/* ── Section body text ── */
.terms-sec-body p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.82;
  color: #cfc6b3;
  margin: 0 0 0.9rem;
  text-align: left;
}

.terms-sec-body p:last-child { margin-bottom: 0; }

.terms-sec-body a {
  color: #f0d37e;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 211, 126, 0.3);
  transition: border-color 0.2s;
}

.terms-sec-body a:hover { border-color: #f0d37e; }

.terms-sec-body ul {
  margin: 0.6rem 0 0.9rem 1.4rem;
  padding: 0;
}

.terms-sec-body ul li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #cfc6b3;
  margin-bottom: 0.3rem;
  list-style: disc;
  text-align: left;
}

.terms-sec-body ul li a {
  color: #f0d37e;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 211, 126, 0.3);
}

/* ── FA check-circle bullet list (section 02) ── */
.terms-check-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terms-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.7;
  color: #cfc6b3;
}

.terms-check-icon {
  color: #f0d37e;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.22rem;
}

/* ── Mini 2-col cards (section 03) ── */
.terms-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.terms-mini-card {
  background: #0e0e13;
  border: 1px solid rgba(76, 70, 56, 0.3);
  border-radius: 0.5rem;
  padding: 1.4rem;
}

.terms-mini-card-h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e4e1e9;
  margin: 0 0 0.55rem;
}

.terms-mini-card-p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
}

/* ── Disc bullet list (section 04) ── */
.terms-disc-list {
  margin: 0.75rem 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-disc-list li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.7;
  color: #cfc6b3;
  list-style: disc;
  text-align: left;
}

/* ── Liability disclaimer (section 05) ── */
.terms-liability-disclaimer {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #e4e1e9;
  font-weight: 600;
  margin-bottom: 1.25rem !important;
  padding: 1.25rem 1.5rem;
  background: rgba(240, 211, 126, 0.05);
  border-radius: 0.375rem;
}

/* ── Governing law info cards (section 06) ── */
.terms-info-cards {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.terms-info-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #1f1f25;
  border: 1px solid rgba(76, 70, 56, 0.28);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
}

.terms-info-icon {
  font-size: 1.2rem;
  color: #f0d37e;
  flex-shrink: 0;
}

.terms-info-card div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.terms-info-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4c4638;
}

.terms-info-value {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e4e1e9;
}

/* ── CTA section ── */
.terms-cta {
  background: #f0d37e;
  padding: 5rem 4rem;
}

.terms-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.terms-cta-h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #231b00;
  margin: 0 0 0.5rem;
}

.terms-cta-p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #574500;
  margin: 0;
}

.terms-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #231b00;
  color: #f0d37e;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.15s;
}

.terms-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-sidebar {
    display: none;
  }

  .terms-mini-grid {
    grid-template-columns: 1fr;
  }

  .terms-info-cards {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .terms-hero {
    padding: 11rem 1.5rem 3.5rem;
  }

  .terms-doc-wrap {
    padding: 3rem 1.5rem 1rem;
  }

  .terms-cta {
    padding: 3.5rem 1.5rem;
  }

  .terms-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .terms-sec--glass .terms-sec-inner,
  .terms-sec--liability .terms-sec-inner {
    padding: 1.75rem;
  }
}


/* =================================================================
   THEME TOGGLE BUTTON
================================================================= */

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.theme-toggle:hover {
  border-color: #f0d37e;
  color: #f0d37e;
}

/* =================================================================
   LIGHT MODE THEME  —  html[data-theme="light"]
================================================================= */

/* ── Logo in light mode ── */
html[data-theme="light"] .logo img {
  filter: invert(1) hue-rotate(180deg);
}

/* ── Global ── */
html[data-theme="light"] body {
  color: #1e293b;
  background: #f4f6f8;
}

/* ── Header & Nav ── */
html[data-theme="light"] header {
  background: rgba(247, 249, 251, 0.97);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
html[data-theme="light"] nav ul li a {
  color: rgba(15, 23, 42, 0.7);
}
html[data-theme="light"] nav ul li a:hover {
  color: #92701a;
}
html[data-theme="light"] nav ul li a:not(.btn-link):not(.nav-cta)::after {
  background: #92701a;
}
html[data-theme="light"] nav ul li a.link.active {
  color: #92701a;
}
html[data-theme="light"] nav ul li a.link.active::after {
  background: #92701a;
}
html[data-theme="light"] .menu-toggle span {
  background-color: rgba(15, 23, 42, 0.8);
}
html[data-theme="light"] nav ul {
  background-color: #f4f6f8;
  border-left-color: rgba(146, 112, 26, 0.25);
}
html[data-theme="light"] .theme-toggle {
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(15, 23, 42, 0.7);
}
html[data-theme="light"] .theme-toggle:hover {
  border-color: #92701a;
  color: #92701a;
}

/* ── Page body backgrounds ── */
html[data-theme="light"] body.home,
html[data-theme="light"] body.services,
html[data-theme="light"] body.about,
html[data-theme="light"] body.thankyou {
  background: #f4f6f8;
}
html[data-theme="light"] body.inquiry {
  background:
    radial-gradient(ellipse at 95% 50%, rgba(201, 168, 76, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 45%, rgba(146, 112, 26, 0.15) 0%, transparent 45%),
    linear-gradient(105deg, #f8f4ec 0%, #faf5e4 50%, #f5f0da 100%);
  background-attachment: fixed;
}
html[data-theme="light"] body.contact {
  background:
    radial-gradient(ellipse at 95% 50%, rgba(0, 150, 140, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 45%, rgba(0, 100, 95, 0.08) 0%, transparent 45%),
    linear-gradient(105deg, #f0f7f7 0%, #e8f4f3 50%, #e0f0ef 100%);
  background-attachment: fixed;
}
html[data-theme="light"] body.inquiry label,
html[data-theme="light"] body.inquiry .hint {
  color: rgba(80, 55, 10, 0.85);
}

/* ── Hero (home page) ── */
html[data-theme="light"] .hero-bg::before {
  background: rgba(15, 23, 42, 0.65);
}

/* ── Buttons ── */
html[data-theme="light"] .main-btn2 {
  color: #92701a;
  border-color: rgba(146, 112, 26, 0.5);
}
html[data-theme="light"] .main-btn2:hover {
  background: rgba(146, 112, 26, 0.08);
  border-color: #92701a;
}
html[data-theme="light"] .main-btn3 {
  color: #92701a;
  border-bottom-color: #92701a;
}
html[data-theme="light"] .main-btn3:hover {
  color: #92701a;
  border-bottom-color: #92701a;
}

/* ── Section label ── */
html[data-theme="light"] .section-label-line {
  background: #c9a84c;
}
html[data-theme="light"] .section-label-text {
  color: #92701a;
}

/* ── Footer ── */
html[data-theme="light"] footer {
  background: #1e293b;
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.08);
}
html[data-theme="light"] .footer-inner {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html[data-theme="light"] .footer-col h4 {
  color: #f0d37e;
}
html[data-theme="light"] .footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
}
html[data-theme="light"] .footer-col ul li a:hover,
html[data-theme="light"] .footer-icons a:hover {
  color: #f0d37e;
}
html[data-theme="light"] .footer-bottom {
  color: rgba(255, 255, 255, 0.3);
}
html[data-theme="light"] .linkedin-link {
  color: #7cb9f4;
}
html[data-theme="light"] .linkedin-link:hover {
  color: #ffffff;
}

/* ── Cards (services page) ── */
html[data-theme="light"] .card {
  background: #ffffff;
  border-color: rgba(146, 112, 26, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .card:hover {
  border-color: rgba(146, 112, 26, 0.55);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
html[data-theme="light"] .card h3 {
  color: #1e293b;
}
html[data-theme="light"] .card p {
  color: #475569;
}

/* ── Stats section ── */
html[data-theme="light"] .stats-section {
  background: #f4f6f8;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
html[data-theme="light"] .stats {
  background: #ffffff;
  border-color: rgba(146, 112, 26, 0.2);
}
html[data-theme="light"] .stats:hover {
  border-color: rgba(146, 112, 26, 0.6);
}
html[data-theme="light"] .stats .counter {
  color: #f0d37e;
}
html[data-theme="light"] .stats p {
  color: #475569;
}

/* ── AI Platform section (home) ── */
html[data-theme="light"] .ai-platform-text h2 {
  color: #1e293b;
}
html[data-theme="light"] .ai-platform-text p {
  color: #475569;
}
html[data-theme="light"] .ai-platform-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

/* ── About page ── */
html[data-theme="light"] .about-mission {
  background: #ffffff;
}
html[data-theme="light"] .about-mission-h2 {
  color: #1e293b;
}
html[data-theme="light"] .about-mission-p {
  color: #475569;
}
html[data-theme="light"] .about-stat-number {
  color: #c9a84c;
}
html[data-theme="light"] .about-stat-label {
  color: #64748b;
}
html[data-theme="light"] .about-mission-img-frame {
  border-color: rgba(0, 0, 0, 0.1);
}
html[data-theme="light"] .about-story {
  background: #f4f6f8;
}
html[data-theme="light"] .about-story-h2 {
  color: #1e293b;
}
html[data-theme="light"] .bento-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
}
html[data-theme="light"] .bento-founding {
  background: #f8f9fa;
}
html[data-theme="light"] .bento-expansion {
  background: #1e293b;
}
html[data-theme="light"] .bento-card-h3 {
  color: #1e293b;
}
html[data-theme="light"] .bento-card-p {
  color: #475569;
}
html[data-theme="light"] .bento-expansion .bento-expansion-title,
html[data-theme="light"] .bento-expansion .bento-expansion-desc {
  color: #f1f5f9;
}
html[data-theme="light"] .bento-platform-title {
  color: #1e293b;
}
html[data-theme="light"] .bento-platform-desc {
  color: #475569;
}
html[data-theme="light"] .about-values {
  background: #f4f6f8;
}
html[data-theme="light"] .value-card {
  border-left-color: rgba(146, 112, 26, 0.25);
}
html[data-theme="light"] .value-card:hover {
  border-left-color: #c9a84c;
}
html[data-theme="light"] .value-card-h3 {
  color: #1e293b;
}
html[data-theme="light"] .value-card-p {
  color: #475569;
}
html[data-theme="light"] .about-cta {
  background: #1e293b;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
html[data-theme="light"] .about-md {
  background: #f4f6f8;
}
html[data-theme="light"] .about-md-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .about-md-h2 {
  color: #1e293b;
}
html[data-theme="light"] .about-md-role {
  color: #64748b;
}
html[data-theme="light"] .about-md-p {
  color: #475569;
}

/* ── Services page ── */
html[data-theme="light"] .services-hero {
  background: #1e293b;
}
html[data-theme="light"] .services-hero-h1 {
  color: #ffffff;
}
html[data-theme="light"] .services-hero-p {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Contact page ── */
html[data-theme="light"] .contact-hero {
  background: transparent;
}
html[data-theme="light"] .contact-hero-h1 {
  color: #1e293b;
}
html[data-theme="light"] .contact-hero-p {
  color: #475569;
}
html[data-theme="light"] .contact-form-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .contact-form-h2 {
  color: #1e293b;
}
html[data-theme="light"] .contact-details-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .contact-details-h3 {
  color: #1e293b;
}
html[data-theme="light"] .contact-detail-item {
  color: #475569;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .contact-detail-item:hover {
  color: #92701a;
  background: rgba(0, 0, 0, 0.03);
}
html[data-theme="light"] .contact-detail-icon {
  background: rgba(146, 112, 26, 0.1);
}
html[data-theme="light"] .contact-detail-icon i {
  color: #c9a84c;
}
html[data-theme="light"] .contact-label {
  color: #64748b;
}
html[data-theme="light"] .contact-input {
  background: #f8fafc;
  color: #1e293b !important;
  border-bottom-color: rgba(0, 0, 0, 0.2);
}
html[data-theme="light"] .contact-input::-webkit-input-placeholder,
html[data-theme="light"] .contact-textarea::-webkit-input-placeholder {
  color: #64748b !important;
}
html[data-theme="light"] .contact-input::-moz-placeholder,
html[data-theme="light"] .contact-textarea::-moz-placeholder {
  color: #64748b !important;
  opacity: 1;
}
html[data-theme="light"] .contact-input::placeholder,
html[data-theme="light"] .contact-textarea::placeholder {
  color: #64748b !important;
}
html[data-theme="light"] .contact-input:focus {
  border-bottom-color: #c9a84c;
  background: #ffffff;
}
html[data-theme="light"] .contact-select {
  background: #f8fafc;
  color: #1e293b;
}

/* ── Contact/Inquiry form inputs ── */
html[data-theme="light"] input,
html[data-theme="light"] textarea,
html[data-theme="light"] select {
  background: #f8fafc;
  color: #1e293b;
  border-color: rgba(0, 0, 0, 0.15);
}
html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
  color: #94a3b8;
}
html[data-theme="light"] input:focus,
html[data-theme="light"] textarea:focus,
html[data-theme="light"] select:focus {
  border-color: #c9a84c;
  background: #ffffff;
}
html[data-theme="light"] label {
  color: #1e293b;
}

/* ── Sub-service pages (architecture, backend, etc.) ── */
html[data-theme="light"] .page-hero,
html[data-theme="light"] .sub-hero,
html[data-theme="light"] .service-page-hero {
  background: #1e293b;
}
html[data-theme="light"] .service-section,
html[data-theme="light"] .content-section {
  background: #ffffff;
}
html[data-theme="light"] .feature-card,
html[data-theme="light"] .tech-card,
html[data-theme="light"] .process-card,
html[data-theme="light"] .info-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .tech-card h3,
html[data-theme="light"] .process-card h3,
html[data-theme="light"] .info-card h3 {
  color: #1e293b;
}
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .tech-card p,
html[data-theme="light"] .process-card p,
html[data-theme="light"] .info-card p {
  color: #475569;
}

/* Scoped to sub-service page content (avoids clobbering hero text on dark overlays) */
html[data-theme="light"] .container h1,
html[data-theme="light"] .container h2,
html[data-theme="light"] .container h3,
html[data-theme="light"] .container h4 {
  color: #1e293b;
}
html[data-theme="light"] .container p {
  color: #475569;
}
/* Restore white text for the home-page hero (dark image overlay) */
html[data-theme="light"] .hero-bg .container h1 {
  color: #f1f5f9;
}
html[data-theme="light"] .hero-bg .container p {
  color: #94a3b8;
}
html[data-theme="light"] .back-btn {
  color: #92701a;
  border-color: rgba(146, 112, 26, 0.3);
}

/* ── Terms & Privacy pages ── */
html[data-theme="light"] .terms-hero,
html[data-theme="light"] .privacy-hero {
  background: #1e293b;
}
html[data-theme="light"] .terms-sec,
html[data-theme="light"] .privacy-sec {
  background: #ffffff;
}
html[data-theme="light"] .terms-sec-inner,
html[data-theme="light"] .privacy-sec-inner {
  background: #f8f9fa;
}
html[data-theme="light"] .terms-cta,
html[data-theme="light"] .privacy-cta {
  background: #1e293b;
}

/* ── Thank you page ── */
html[data-theme="light"] .thankyou-section {
  background: #f4f6f8;
}
html[data-theme="light"] .thankyou-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .thankyou-title {
  color: #1e293b;
}
html[data-theme="light"] .thankyou-text {
  color: #475569;
}
