/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --background: #f3f4f5;
  --foreground: #08080b;
  --card: #ffffff;
  --primary: #469cec;
  --primary-foreground: #fff;
  --muted-foreground: #52525b;
  --muted-foreground-enhanced: #3f3f46;
  --border: #e4e4e7;
  --radius-card: 16px;
  --liquid-gradient-1: linear-gradient(135deg, #0088cc4d 0%, #6875e94d 100%);
  --liquid-gradient-2: linear-gradient(135deg, #10b8534d 0%, #0088cc4d 100%);
  --liquid-gradient-3: linear-gradient(135deg, #f35b5b4d 0%, #ff99004d 100%);
  --card-bg: linear-gradient(145deg, #00000014, #0000000a);
  --card-border: #0000001a;
  --surface-bg: #00000010;
  --surface-border: #00000018;
}

html.dark {
  --background: #08080b;
  --foreground: #fafafa;
  --card: #0f0f13;
  --primary: #469cec;
  --primary-foreground: #fff;
  --muted-foreground: #b4b9be;
  --muted-foreground-enhanced: #c8cdd2;
  --border: #27272a;
  --card-bg: linear-gradient(145deg, #ffffff1a, #ffffff0d);
  --card-border: #ffffff1f;
  --surface-bg: #ffffff1f;
  --surface-border: #ffffff1f;
}

body {
  font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

.fixed-layer { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }

/* ===== Floating orbs ===== */
.floating-orb {
  filter: blur(1px);
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, #ffffff4d, #0088cc1a);
  border-radius: 50%;
  animation: orbit 30s linear infinite;
  position: absolute;
}
.orb-a { width: 2rem; height: 2rem; top: 5rem; left: 2.5rem; }
.orb-b { width: 1.5rem; height: 1.5rem; top: 10rem; right: 4rem; }
.orb-c { width: 2.5rem; height: 2.5rem; bottom: 10rem; left: 5rem; }
.orb-d { width: 1rem; height: 1rem; top: 15rem; left: 50%; }
.orb-e { width: 1.75rem; height: 1.75rem; bottom: 5rem; right: 2.5rem; }
@media (min-width: 768px) {
  .orb-a { width: 4rem; height: 4rem; left: 5rem; }
  .orb-b { width: 3rem; height: 3rem; right: 8rem; }
  .orb-c { width: 5rem; height: 5rem; left: 10rem; }
  .orb-d { width: 2rem; height: 2rem; }
  .orb-e { width: 3.5rem; height: 3.5rem; right: 5rem; }
}
@keyframes orbit { 0% { transform: rotate(0) translate(100px) rotate(0); } 100% { transform: rotate(360deg) translate(100px) rotate(-360deg); } }

/* ===== Glass / liquid surfaces ===== */
.ios-surface {
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  background: var(--surface-bg);
  border: .5px solid var(--surface-border);
  border-radius: 20px;
  box-shadow: 0 1px 3px #00000014, 0 8px 32px #0000001f, inset 0 1px #ffffff2e;
}

.liquid-card {
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: var(--radius-card);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px #0000001f, inset 0 1px #ffffff40;
  transition: all .5s cubic-bezier(.4,0,.2,1);
}

.liquid-button {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(145deg, #469ceccc, #6875e9cc);
  border: 1px solid #fff3;
  box-shadow: 0 4px 20px #469cec4d, inset 0 1px #fff3;
  color: #fff;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.liquid-button:hover { transform: translateY(-2px); box-shadow: 0 8px 28px #469cec66, inset 0 1px #fff3; }

/* ===== liquid blobs (hero background) ===== */
.liquid-blob { filter: blur(60px); pointer-events: none; border-radius: 50%; animation: float 20s ease-in-out infinite; position: absolute; }
.liquid-blob-1 { background: var(--liquid-gradient-1); width: 400px; height: 400px; top: -200px; left: -200px; }
.liquid-blob-2 { background: var(--liquid-gradient-2); width: 300px; height: 300px; top: 50%; right: -150px; animation-delay: -10s; }
.liquid-blob-3 { background: var(--liquid-gradient-3); width: 500px; height: 500px; bottom: -250px; left: 50%; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(20px) rotate(240deg); }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all .5s;
  background: transparent;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
@media (min-width: 768px) { .header-row { padding: 1.25rem 0; } }

.brand { display: flex; align-items: center; gap: .75rem; transition: transform .3s; }
.brand:hover { transform: scale(1.05); }
.brand-logo { width: 2.5rem; height: 2.5rem; border-radius: .5rem; display: flex; align-items: center; justify-content: center; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-size: 1.25rem; font-weight: 700; }
.brand-tag { font-size: .75rem; color: var(--muted-foreground); display: none; }
@media (min-width: 768px) { .brand-logo { width: 3rem; height: 3rem; } .brand-name { font-size: 1.5rem; } }
@media (min-width: 640px) { .brand-tag { display: block; } }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link { font-weight: 500; position: relative; color: var(--foreground); transition: color .3s; }
.nav-link.active { color: var(--primary); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--primary); border-radius: 999px; transition: width .3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-dropdown-wrap { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: .35rem;
  font: inherit; background: none; border: none; cursor: pointer;
}
.nav-chevron { width: 1rem; height: 1rem; transition: transform .3s; }
.nav-dropdown-wrap.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 1rem); left: 50%; transform: translateX(-50%);
  min-width: 15rem; padding: .5rem; flex-direction: column; gap: .125rem;
  border-radius: 1rem;
  background: var(--card); border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px #0000001f, inset 0 1px #ffffff40;
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  z-index: 60;
}
.nav-dropdown-wrap.open .nav-dropdown { display: flex; }
.nav-dropdown-link {
  display: block; padding: .6rem .85rem; border-radius: .6rem;
  font-weight: 500; font-size: .9rem; color: var(--foreground);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-dropdown-link:hover, .nav-dropdown-link.active { background: var(--surface-bg); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.hide-mobile { display: none !important; }
@media (min-width: 640px) { .hide-mobile { display: inline-flex !important; } }
.show-mobile { display: flex !important; }
@media (min-width: 768px) { .show-mobile { display: none !important; } }

.icon-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.icon-btn:hover { transform: scale(1.1); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--card);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: .5rem 0; }
.mobile-nav .btn { margin-top: .5rem; align-self: flex-start; }

.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; font: inherit; background: none; border: none; cursor: pointer;
}
.mobile-nav-group.open .nav-chevron { transform: rotate(180deg); }
.mobile-nav-submenu {
  display: none; flex-direction: column; gap: .25rem;
  padding: .25rem 0 .5rem 1rem;
  border-left: 1px solid var(--border);
  margin-left: .25rem;
}
.mobile-nav-group.open .mobile-nav-submenu { display: flex; }
.mobile-nav-submenu .nav-link { font-size: .9rem; padding: .4rem 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: .75rem; font-weight: 600; white-space: nowrap;
  transition: all .3s;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: #3a86ce; }
.btn-sm { height: 2rem; padding: 0 .75rem; font-size: .875rem; border-radius: .5rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; border-radius: 1rem; }
@media (min-width: 768px) { .btn-lg { padding: 1.25rem 3.5rem; font-size: 1.25rem; border-radius: 1.25rem; } }
.btn-lg span { display: flex; align-items: center; gap: 1rem; }
.btn:hover { transform: scale(1.05); }

/* ===== Layout helpers ===== */
main { padding-top: 6rem; }
@media (min-width: 768px) { main { padding-top: 7rem; } }
.section { padding: 5rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 6.5rem 0; } }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.section-head p { font-size: 1.15rem; color: var(--muted-foreground-enhanced); max-width: 46rem; margin: 0 auto; line-height: 1.6; }
@media (min-width: 768px) { .section-head h2 { font-size: 2.5rem; } .section-head p { font-size: 1.4rem; } }

.grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid { gap: 2rem; } }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
.mb-lg { margin-bottom: 3rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 0 8rem;
  overflow: hidden;
}
.hero-inner { text-align: center; max-width: 64rem; margin: 0 auto; position: relative; z-index: 1; }
.hero-title { font-size: 2.25rem; font-weight: 700; margin-bottom: .75rem; line-height: 1.15; }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }

.iridescent-text {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(45deg,#08c,#00bcd4,#26a69a,#1976d2,#2196f3,#3f51b5,#673ab7,#8e24aa,#673ab7,#3f51b5,#2196f3,#1976d2,#26a69a,#00bcd4,#08c);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: iridescent 8s ease-in-out infinite;
  line-height: 1.1;
}
@keyframes iridescent {
  0% { background-position: 0%; }
  50% { background-position: 100%; }
  100% { background-position: 0%; }
}

.hero-sub { font-size: 1.25rem; color: var(--muted-foreground-enhanced); max-width: 48rem; margin: 2.5rem auto; line-height: 1.6; }
.hero-sub p { margin-bottom: 1rem; }
@media (min-width: 768px) { .hero-sub { font-size: 1.5rem; } }

.hero-buttons { display: flex; flex-direction: column; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.hero-feature { padding: 1rem; text-align: center; }
@media (min-width: 768px) { .hero-feature { padding: 2rem; } }
.hero-feature:hover { transform: scale(1.03); }
.hero-feature h5 { font-size: .8rem; margin-bottom: .5rem; }
.hero-feature p { font-size: .8rem; color: var(--muted-foreground-enhanced); }
@media (min-width: 768px) { .hero-feature h5 { font-size: 1rem; } .hero-feature p { font-size: 1rem; } }

.feature-icon {
  width: 3rem; height: 3rem; margin: 0 auto .75rem; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px #0000001a;
  transition: transform .3s;
}
@media (min-width: 768px) { .feature-icon { width: 5rem; height: 5rem; border-radius: 1rem; margin-bottom: 1.5rem; } }
.hero-feature:hover .feature-icon { transform: scale(1.1); }

.pastel-blue-bg { background: linear-gradient(135deg,#3b82f666,#2563eb4d,#1d4ed840 70%,#3b82f633); border: 1px solid #3b82f64d; color: #3b82f6; }
.pastel-green-bg { background: linear-gradient(135deg,#22c55e66,#16a34a4d,#15803d40 70%,#22c55e33); border: 1px solid #22c55e4d; color: #22c55e; }
.pastel-purple-bg { background: linear-gradient(135deg,#9333ea66,#7e22ce4d,#6b21a840 70%,#9333ea33); border: 1px solid #9333ea4d; color: #9333ea; }
.pastel-red-bg { background: linear-gradient(135deg,#ef444466,#dc26264d,#b91c1c40 70%,#ef444433); border: 1px solid #ef44444d; color: #ef4444; }

/* ===== Service cards ===== */
.service-card { padding: 1.5rem; }
@media (min-width: 768px) { .service-card { padding: 2rem; } }
.service-card:hover { transform: scale(1.05); }
.service-card h3, .solution-card h3, .tech-card h3, .training-card h3 { font-size: 1.25rem; font-weight: 700; margin: 1rem 0 .75rem; }
.service-card p, .solution-card p, .training-card > div > p { color: var(--muted-foreground-enhanced); line-height: 1.6; }

.service-icon, .training-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform .3s;
}
@media (min-width: 768px) { .service-icon { width: 4rem; height: 4rem; } }
.service-card:hover .service-icon { transform: scale(1.1); }

.blue-gradient { background: linear-gradient(135deg,#3b82f6e6,#2563ebcc,#1d4ed8b3 70%,#1e40af99); box-shadow: 0 4px 20px #3b82f666, inset 0 1px #fff3; }
.green-gradient { background: linear-gradient(135deg,#22c55ee6,#16a34acc,#15803db3 70%,#14532d99); box-shadow: 0 4px 20px #22c55e66, inset 0 1px #fff3; }
.purple-gradient { background: linear-gradient(135deg,#9333eae6,#7e22cecc,#6b21a8b3 70%,#581c8799); box-shadow: 0 4px 20px #9333ea66, inset 0 1px #fff3; }
.red-gradient { background: linear-gradient(135deg,#ef4444e6,#dc2626cc,#b91c1cb3 70%,#991b1b99); box-shadow: 0 4px 20px #ef444466, inset 0 1px #fff3; }

/* ===== Solutions ===== */
.solution-card { padding: 1.5rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .solution-card { padding: 2rem; } }
.solution-card:hover { transform: scale(1.05); }
.flex-grow { flex-grow: 1; margin-bottom: 1.25rem; }

.solution-icon {
  width: 3.5rem; height: 3.5rem; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: transform .3s;
}
@media (min-width: 768px) { .solution-icon { width: 4rem; height: 4rem; } }
.solution-card:hover .solution-icon, .tech-card:hover .solution-icon { transform: scale(1.1); }
.icon-blue { color: #2563eb; background: #dbeafe; }
.icon-purple { color: #9333ea; background: #f3e8ff; }
.icon-green { color: #16a34a; background: #dcfce7; }
.icon-orange { color: #ea580c; background: #ffedd5; }
.icon-pink { color: #db2777; background: #fce7f3; }
.icon-indigo { color: #4f46e5; background: #e0e7ff; }
html.dark .icon-blue { background: #1d4ed822; }
html.dark .icon-purple { background: #7e22ce22; }
html.dark .icon-green { background: #16a34a22; }
html.dark .icon-orange { background: #ea580c22; }
html.dark .icon-pink { background: #db277722; }
html.dark .icon-indigo { background: #4f46e522; }

.feature-list { display: flex; flex-direction: column; gap: .5rem; }
.feature-list li { display: flex; align-items: center; gap: .5rem; font-size: .95rem; }
.feature-list .icon { width: 1rem; height: 1rem; color: var(--primary); }

.showcase-card { padding: 1rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .showcase-card { padding: 1.5rem; } }
.showcase-narrow { max-width: 56rem; }
.showcase-img { width: 100%; height: 16rem; object-fit: cover; border-radius: .75rem; }
@media (min-width: 768px) { .showcase-img { height: 20rem; } }
.showcase-img-tall { height: 16rem; }
@media (min-width: 768px) { .showcase-img-tall { height: 24rem; } }
.showcase-caption { text-align: center; margin-top: 1.5rem; }
.showcase-caption h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.showcase-caption p { color: var(--muted-foreground-enhanced); }

/* ===== Technologies ===== */
.tech-card { padding: 1.5rem; }
@media (min-width: 768px) { .tech-card { padding: 2rem; } }
.tech-card:hover { transform: scale(1.05); }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.tag {
  padding: .375rem .75rem; font-size: .85rem; border-radius: .5rem;
  backdrop-filter: blur(30px) saturate(180%); -webkit-backdrop-filter: blur(30px) saturate(180%);
  background: var(--surface-bg); border: .5px solid var(--surface-border);
}
.tag-icon { display: inline-flex; align-items: center; gap: .4rem; }
.tag-icon .icon { width: 1rem; height: 1rem; }

/* ===== Training ===== */
.training-card { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1.25rem; }
@media (min-width: 768px) { .training-card { padding: 2rem; gap: 1.5rem; } }
.training-card:hover { transform: scale(1.05); }
.training-icon { width: 3rem; height: 3rem; border-radius: .75rem; flex-shrink: 0; }
@media (min-width: 768px) { .training-icon { width: 3.5rem; height: 3.5rem; } }
.training-card h3 { margin-top: 0; }
.training-card > div > p { margin-bottom: 1rem; }

/* ===== Contact ===== */
.contact-grid { max-width: 64rem; margin: 0 auto 3rem; }
.contact-card { padding: 1.5rem; text-align: center; }
@media (min-width: 768px) { .contact-card { padding: 2rem; } }
.contact-card:hover { transform: scale(1.05); }
.contact-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.contact-card p { color: var(--muted-foreground-enhanced); margin-bottom: 1rem; }
.contact-icon.round { border-radius: 999px; width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: transform .3s; }
@media (min-width: 768px) { .contact-icon.round { width: 4rem; height: 4rem; } }
.contact-card:hover .contact-icon { transform: scale(1.1); }
.link { color: var(--primary); }
.link:hover { color: #3a86ce; }

.contact-details { padding: 2rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .contact-details { padding: 3rem; } }
.contact-info-grid { margin-bottom: 2rem; }
.contact-info-grid-single { margin-bottom: 2rem; max-width: 24rem; }
.info-row { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { width: 3rem; height: 3rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon .icon { color: var(--primary); }
.info-row h4 { margin-bottom: .5rem; }
.info-row p { color: var(--muted-foreground-enhanced); }

.contact-cta { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); }
.muted-small { font-size: .875rem; color: var(--muted-foreground-enhanced); margin-top: 1.5rem; }

/* ===== Footer ===== */
.site-footer { padding: 4rem 0 5rem; margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2.5rem; } }
.footer-brand { margin-bottom: 1rem; }
.footer-logo { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; }
.footer-grid h4 { font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; font-size: .9rem; color: var(--muted-foreground-enhanced); }
.footer-links a { color: var(--muted-foreground-enhanced); transition: color .3s; }
.footer-links a:hover { color: var(--primary); }

.footer-location { display: flex; align-items: flex-start; gap: .5rem; margin-top: .75rem; }
.footer-location .icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: .15rem; color: var(--primary); }

.footer-sep { height: 1px; background: var(--border); margin-bottom: 2rem; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.social-row { display: flex; align-items: center; gap: 1.5rem; }

/* ===== Inner page hero (About / Services / Contact) ===== */
.page-hero { position: relative; padding: 8rem 0 5rem; overflow: hidden; }
@media (min-width: 768px) { .page-hero { padding: 10rem 0 8rem; } }
.page-hero-narrow { padding: 3rem 0 2.5rem; }
.page-hero-inner { text-align: center; max-width: 48rem; margin: 0 auto; position: relative; z-index: 1; }
.partner-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.1rem; margin-bottom: 1.5rem; border-radius: 999px;
  background: #22c55e26; border: 1px solid #22c55e4d; color: #22c55e;
  font-size: .9rem; font-weight: 700;
}
html.dark .partner-badge { color: #4ade80; }
.partner-badge .icon { width: 1.1rem; height: 1.1rem; }
.page-hero-inner h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .page-hero-inner h1 { font-size: 3.25rem; } }
.page-hero-inner p { font-size: 1.25rem; color: var(--muted-foreground-enhanced); line-height: 1.6; }
@media (min-width: 768px) { .page-hero-inner p { font-size: 1.5rem; } }

/* ===== Stats (About) ===== */
.stats-grid { max-width: 64rem; margin: 3rem auto 0; }
.stat-card { padding: 1.5rem; text-align: center; }
@media (min-width: 768px) { .stat-card { padding: 2rem; } }
.stat-card:hover { transform: scale(1.05); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: .5rem; }
@media (min-width: 768px) { .stat-number { font-size: 3rem; } }
.stat-label { color: var(--muted-foreground-enhanced); }

/* ===== Mission / Vision (About) ===== */
.mission-grid { align-items: center; }
.mission-card { padding: 2rem; }
@media (min-width: 768px) { .mission-card { padding: 3rem; } }
.mission-icon { width: 4rem; height: 4rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.mission-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.mission-card p { color: var(--muted-foreground-enhanced); line-height: 1.6; font-size: 1.1rem; margin-bottom: 1rem; }

/* ===== Values (About) ===== */
.value-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { padding: 1.5rem; }
@media (min-width: 768px) { .value-card { padding: 2rem; } }
.value-card:hover { transform: scale(1.05); }
.value-card h3 { margin-bottom: .75rem; }
.value-card p { color: var(--muted-foreground-enhanced); line-height: 1.6; }

/* ===== Team CTA (About) ===== */
.team-cta { padding: 1rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .team-cta { padding: 1.5rem; } }
.team-cta img { width: 100%; height: 22rem; object-fit: cover; border-radius: .75rem; }
@media (min-width: 768px) { .team-cta img { height: 32rem; } }
.team-cta-caption { text-align: center; margin-top: 1.5rem; }
.team-cta-caption h3 { margin-bottom: .5rem; }
.team-cta-caption p { color: var(--muted-foreground-enhanced); margin-bottom: 1.5rem; }

/* ===== Service detail cards (Services page) ===== */
.services-detail-grid { gap: 2rem; }
.service-detail-card { padding: 2rem; }
@media (min-width: 768px) { .service-detail-card { padding: 2.5rem; } }
.service-detail-card:hover { transform: scale(1.03); }
.service-detail-icon { width: 4rem; height: 4rem; border-radius: 1.25rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: #fff; }
@media (min-width: 768px) { .service-detail-icon { width: 5rem; height: 5rem; } }
.service-detail-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 1rem; }
.service-detail-card > p { color: var(--muted-foreground-enhanced); line-height: 1.6; margin-bottom: 1.5rem; }
.service-detail-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: .75rem; }
.check-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: .5rem; color: var(--muted-foreground-enhanced); }
.check-list .icon { width: 1.15rem; height: 1.15rem; color: var(--primary); flex-shrink: 0; margin-top: .15rem; }

/* ===== Process steps (Services page) ===== */
.process-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.process-card { padding: 1.5rem; position: relative; }
@media (min-width: 768px) { .process-card { padding: 2rem; } }
.process-card:hover { transform: scale(1.05); }
.process-number { font-size: 3.5rem; font-weight: 800; color: var(--primary); opacity: .2; margin-bottom: 1rem; }
.process-icon { width: 3.5rem; height: 3.5rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: #fff; }
.process-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.process-card p { color: var(--muted-foreground-enhanced); font-size: .9rem; line-height: 1.6; }

/* ===== CTA card (Services page) ===== */
.cta-card { padding: 3rem 1.5rem; max-width: 56rem; margin: 0 auto; text-align: center; }
@media (min-width: 768px) { .cta-card { padding: 4rem; } }
.cta-card h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; }
.cta-card > p { font-size: 1.25rem; color: var(--muted-foreground-enhanced); margin-bottom: 2.5rem; line-height: 1.6; }
@media (min-width: 768px) { .cta-card > p { font-size: 1.4rem; } }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ===== Contact page ===== */
.contact-info-grid-page { grid-template-columns: 1fr; margin-bottom: 4rem; max-width: 56rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .contact-info-grid-page { grid-template-columns: repeat(3, 1fr); } }
.contact-info-card { padding: 1.5rem; text-align: center; }
@media (min-width: 768px) { .contact-info-card { padding: 2rem; } }
.contact-info-card:hover { transform: scale(1.05); }
.contact-info-card .solution-icon { margin: 0 auto 1.25rem; }
.contact-info-card h3 { margin-bottom: .75rem; }
.contact-info-card p { color: var(--muted-foreground-enhanced); }

.contact-main-grid { grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-main-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-form-card { padding: 2rem; }
@media (min-width: 768px) { .contact-form-card { padding: 2.5rem; } }
.contact-form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.form-field label { font-size: .9rem; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; color: var(--foreground);
  background: var(--surface-bg); border: .5px solid var(--surface-border);
  border-radius: .5rem; padding: .6rem .75rem; outline: none;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.form-field textarea { resize: vertical; min-height: 8rem; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--primary); }
.contact-form-card .btn { width: 100%; }

.form-alert {
  padding: 1rem 1.25rem; border-radius: .75rem; margin-bottom: 1.5rem;
  font-size: .95rem; line-height: 1.5;
}
.form-alert-success { background: #22c55e26; border: 1px solid #22c55e4d; color: #4ade80; }
.form-alert-error { background: #ef444426; border: 1px solid #ef44444d; color: #f87171; }

/* ===== Hire / Quote modal ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative; width: 100%; max-width: 34rem; max-height: 90vh; overflow-y: auto;
  padding: 2rem; background: var(--card);
}
@media (min-width: 768px) { .modal-box { padding: 2.5rem; } }
.modal-box h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; padding-right: 2rem; }
.modal-subtitle { margin-bottom: 1.5rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; }
.modal-box .form-field:last-of-type { margin-bottom: 1.5rem; }

.offices-card, .connect-card { padding: 2rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .offices-card, .connect-card { padding: 2.5rem; } }
.offices-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.office-item { padding: 1.5rem; border-radius: .75rem; }
.office-item h3 { margin-bottom: .75rem; }
.office-item p { display: flex; align-items: flex-start; gap: .5rem; color: var(--muted-foreground-enhanced); margin-bottom: .5rem; }
.office-item .icon { color: var(--primary); flex-shrink: 0; }
.connect-card h3 { margin-bottom: .75rem; }
.connect-card > p { color: var(--muted-foreground-enhanced); margin-bottom: 1.5rem; }

.faq-grid { max-width: 56rem; margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-card { padding: 1.5rem; }
.faq-card h4 { margin-bottom: .5rem; }
.faq-card p { color: var(--muted-foreground-enhanced); line-height: 1.5; }
