:root {
  --primary: #0866ff;
  --primary-dark: #0052cc;
  --navy: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --light: #f8fafc;
  --border: #e2e8f0;
  --white: #fff;
  --shadow: 0 12px 35px rgba(15, 23, 42, .1);
  --radius: 16px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Manrope", Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: .25s ease; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { margin-top: 0; color: var(--navy); line-height: 1.25; }
p { margin-top: 0; }
.container { width: min(var(--container), 92%); margin-inline: auto; }
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.text-center { text-align: center; }

.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 99999; }
.skip-link:focus { left: 10px; padding: 10px 15px; border-radius: 8px; background: var(--primary); color: #fff; }

.topbar { background: var(--navy); color: #fff; font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.topbar-contact, .header-social { display: flex; align-items: center; gap: 17px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #fff; }
.topbar a:hover { color: #bfdbfe; }
.topbar svg { width: 17px; height: 17px; fill: currentColor; }
.header-social { gap: 8px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.25); }
.header-social a { width: 29px; height: 29px; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); }
.header-social a:hover { color: #fff; background: var(--primary); transform: translateY(-1px); }
.header-social svg { width: 14px; height: 14px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--border); box-shadow: 0 3px 15px rgba(15,23,42,.04); }
.header-wrapper { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.site-brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; color: var(--navy); }
.site-brand img { width: 70px; height: 70px; object-fit: contain; flex: 0 0 70px; }
.brand-text { display: flex; flex-direction: column; gap: 7px; line-height: 1; }
.brand-text strong { color: var(--primary); font-size: 24px; font-weight: 800; letter-spacing: .5px; white-space: nowrap; }
.brand-text small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .85px; white-space: nowrap; }

.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 19px; }
.main-nav > a:not(.btn) { position: relative; padding: 34px 0; color: var(--navy); font-size: 13px; font-weight: 700; white-space: nowrap; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 50%; bottom: 23px; width: 0; height: 2px; background: var(--primary); transform: translateX(-50%); transition: .25s ease; }
.main-nav > a:not(.btn):hover, .main-nav > a.active { color: var(--primary); }
.main-nav > a:not(.btn):hover::after, .main-nav > a.active::after { width: 100%; }

.menu-toggle { display: none; width: 46px; height: 42px; padding: 9px; border: 0; border-radius: 9px; background: var(--primary); cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 4px auto; background: #fff; transition: .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 22px; border: 2px solid var(--primary); border-radius: 999px; background: var(--primary); color: #fff !important; font-weight: 800; line-height: 1.2; box-shadow: 0 7px 18px rgba(8,102,255,.18); }
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.btn-small { padding: 10px 16px; font-size: 13px; }

.hero { padding: 90px 0; background: radial-gradient(circle at 85% 20%, rgba(8,102,255,.1), transparent 35%), linear-gradient(#fff, #f8fbff); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
.hero h1 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 64px); }
.hero p { max-width: 650px; color: var(--muted); font-size: 18px; }
.hero img { border-radius: 24px; box-shadow: var(--shadow); }

.section-heading { max-width: 760px; margin: 0 auto 45px; text-align: center; }
.section-heading h2 { margin-bottom: 12px; font-size: clamp(29px, 4vw, 43px); }
.section-heading p { color: var(--muted); }
.services-grid, .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card, .portfolio-card, .content-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: 0 5px 18px rgba(15,23,42,.05); }
.service-card:hover, .portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card p, .content-card p { color: var(--muted); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: var(--navy); font-weight: 700; }
input, textarea, select { width: 100%; padding: 13px 14px; border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--text); }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(8,102,255,.12); border-color: var(--primary); }
textarea { min-height: 140px; resize: vertical; }

.site-footer { padding-top: 58px; background: var(--navy); color: #cbd5e1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr; gap: 35px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { width: 62px; height: 62px; object-fit: contain; }
.footer-logo span { display: flex; flex-direction: column; gap: 5px; }
.footer-logo strong { color: #fff; font-size: 20px; }
.footer-logo small { color: #94a3b8; font-size: 7px; font-weight: 800; letter-spacing: .5px; }
.footer-brand p { max-width: 360px; }
.footer-column h3 { margin-bottom: 18px; color: #fff; font-size: 17px; }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li { margin-bottom: 9px; }
.footer-column a, .footer-social a { color: #cbd5e1; }
.footer-column a:hover, .footer-social a:hover { color: #fff; }
.footer-social { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-social a { padding: 7px 10px; border-radius: 7px; background: rgba(255,255,255,.07); font-size: 12px; }
.footer-contact p { margin-bottom: 14px; }
.footer-bottom { margin-top: 45px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 15px; }
.footer-bottom p { margin: 0; font-size: 13px; }
.floating-whatsapp { position: fixed; left: 18px; bottom: 22px; z-index: 1200; padding: 12px 17px; border-radius: 999px; background: #25d366; color: #fff; font-weight: 800; box-shadow: var(--shadow); }

@media (max-width: 1100px) {
  .site-brand img { width: 58px; height: 58px; flex-basis: 58px; }
  .brand-text strong { font-size: 20px; }
  .brand-text small { font-size: 7.5px; letter-spacing: .5px; }
  .main-nav { gap: 13px; }
  .main-nav > a:not(.btn) { font-size: 12px; }
}

@media (max-width: 992px) {
  .header-wrapper { min-height: 76px; position: relative; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { display: none; position: absolute; top: 100%; left: -4%; width: 108%; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 4% 18px; background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow); }
  .main-nav.show { display: flex; }
  .main-nav > a:not(.btn) { padding: 12px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
  .main-nav > a:not(.btn)::after { display: none; }
  .main-nav .btn { margin-top: 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar-inner { justify-content: space-between; }
  .topbar-contact a span { display: none; }
  .header-social { margin-left: auto; padding-left: 12px; }
  .site-brand { gap: 9px; }
  .site-brand img { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { max-width: 130px; white-space: normal; font-size: 6.5px; line-height: 1.25; }
  .section, .hero { padding: 60px 0; }
  .services-grid, .portfolio-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-grid { text-align: center; }
  .footer-logo, .footer-social { justify-content: center; }
  .footer-brand p { margin-inline: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  background:
    radial-gradient(circle at 85% 25%, rgba(8, 102, 255, .12), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  border-bottom: 1px solid #dbeafe;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(8, 102, 255, .05);
  border-radius: 50%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -1.2px;
}

.page-hero p {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.founder-section {
  padding: 88px 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(45px, 6vw, 78px);
}

.founder-media {
  display: flex;
  justify-content: center;
}

.founder-card {
  position: sticky;
  top: 125px;
  width: 100%;
  max-width: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .11);
}

.founder-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eaf2ff;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-fallback {
  width: 100%;
  height: 100%;
  min-height: 405px;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.founder-fallback:not([hidden]) {
  display: flex;
}

.founder-fallback span {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.founder-fallback small {
  font-size: 11px;
}

.founder-card figcaption {
  padding: 20px 22px 22px;
  text-align: center;
}

.founder-card figcaption strong,
.founder-card figcaption span {
  display: block;
}

.founder-card figcaption strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 19px;
}

.founder-card figcaption span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.founder-content {
  max-width: 720px;
}

.founder-content h2 {
  margin-bottom: 24px;
  font-size: clamp(29px, 3.4vw, 42px);
  letter-spacing: -.7px;
}

.founder-content > p {
  margin-bottom: 17px;
  color: #475569;
}

.founder-quote {
  position: relative;
  margin: 30px 0 24px;
  padding: 24px 26px 23px 29px;
  border: 0;
  border-left: 4px solid var(--primary);
  border-radius: 0 14px 14px 0;
  background: #f8fbff;
}

.founder-quote p {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
}

.founder-quote cite {
  color: var(--primary);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.takeaway {
  padding: 20px 22px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
}

.takeaway > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-dark);
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.takeaway p {
  margin: 0;
  color: #334155;
}

.values-section {
  padding: 82px 0 90px;
  background: var(--light);
  border-top: 1px solid #f1f5f9;
}

.values-heading {
  margin-bottom: 38px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .09);
}

.value-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: #eaf2ff;
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
}

.value-card h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 38px;
  }

  .founder-card {
    position: static;
  }

  .values-grid {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 58px 0 54px;
  }

  .founder-section,
  .values-section {
    padding: 62px 0;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .founder-card {
    max-width: 285px;
  }

  .founder-content {
    max-width: 100%;
  }

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

@media (max-width: 420px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .founder-card {
    max-width: 260px;
  }

  .founder-quote {
    padding: 21px 20px;
  }

  .takeaway,
  .value-card {
    padding: 20px;
  }
}

/* =========================================================
   HOMEPAGE SLIDER AND SECTIONS
   ========================================================= */

.home-slider {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #0b1830;
}

.slider-track {
  position: relative;
  min-height: 590px;
}

.home-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .65s ease, transform .65s ease, visibility .65s;
}

.home-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.slide-it { background: radial-gradient(circle at 78% 38%, rgba(61, 146, 255, .38), transparent 28%), linear-gradient(120deg, #071a3a 0%, #0a4ca6 100%); }
.slide-security { background: radial-gradient(circle at 80% 40%, rgba(69, 230, 190, .28), transparent 28%), linear-gradient(120deg, #062a34 0%, #087f76 100%); }
.slide-design { background: radial-gradient(circle at 82% 35%, rgba(255, 181, 109, .3), transparent 30%), linear-gradient(120deg, #301052 0%, #843ab8 100%); }
.slide-vision { background: radial-gradient(circle at 80% 40%, rgba(74, 222, 128, .25), transparent 29%), linear-gradient(120deg, #10203d 0%, #17554b 100%); }

.slide-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  padding-top: 62px;
  padding-bottom: 82px;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 665px;
  color: rgba(255,255,255,.86);
}

.slide-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.slide-content h1,
.slide-content h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(38px, 4.7vw, 62px);
  letter-spacing: -1.6px;
}

.slide-content p {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.8);
  font-size: 17px;
}

.slide-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-light {
  border-color: rgba(255,255,255,.68);
  background: transparent;
  color: #fff !important;
  box-shadow: none;
}

.btn-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy) !important;
}

.slide-visual {
  position: relative;
  min-height: 355px;
}

.device-illustration,
.security-illustration,
.design-illustration,
.vision-illustration {
  position: relative;
  width: min(100%, 440px);
  height: 355px;
  margin: 0 auto;
}

.device-screen {
  position: absolute;
  inset: 30px 20px 65px;
  padding: 32px;
  border: 8px solid #dbeafe;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #eaf2ff);
  box-shadow: 0 32px 60px rgba(0,0,0,.28);
}

.device-screen strong { display: block; margin: 35px 0 20px; color: #0f3d82; font-size: 23px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; color: #3972be; font-size: 12px; font-weight: 700; }
.status-pill i { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 5px rgba(34,197,94,.14); }
.health-bars { display: grid; gap: 9px; }
.health-bars span { display: block; height: 8px; border-radius: 8px; background: #dbeafe; overflow: hidden; }
.health-bars span::before { content: ""; display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #0866ff, #38bdf8); }
.health-bars span:nth-child(1)::before { width: 92%; }
.health-bars span:nth-child(2)::before { width: 78%; }
.health-bars span:nth-child(3)::before { width: 86%; }
.device-base { position: absolute; left: 50%; bottom: 38px; width: 300px; height: 23px; border-radius: 5px 5px 20px 20px; background: #dbeafe; transform: translateX(-50%); }
.floating-chip { position: absolute; padding: 10px 14px; border-radius: 10px; background: #fff; color: #0f3d82; font-size: 12px; font-weight: 800; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.chip-one { top: 12px; right: -5px; }
.chip-two { left: 0; bottom: 45px; }

.shield-shape { position: absolute; left: 50%; top: 30px; display: grid; width: 210px; height: 245px; place-items: center; border: 8px solid rgba(255,255,255,.8); border-radius: 48% 48% 55% 55% / 30% 30% 68% 68%; background: linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.06)); color: #fff; font-size: 78px; font-weight: 800; transform: translateX(-50%); box-shadow: 0 28px 60px rgba(0,0,0,.22); }
.security-card { position: absolute; min-width: 145px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; background: rgba(255,255,255,.93); box-shadow: 0 15px 35px rgba(0,0,0,.2); }
.security-card span, .security-card strong { display: block; }
.security-card span { color: #64748b; font-size: 10px; }
.security-card strong { color: #087f76; font-size: 15px; }
.security-card-one { top: 30px; right: 0; }
.security-card-two { left: 0; bottom: 42px; }

.browser-mockup { position: absolute; inset: 35px 10px 45px; overflow: hidden; border: 7px solid rgba(255,255,255,.8); border-radius: 18px; background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,.25); transform: rotate(1.5deg); }
.browser-top { display: flex; gap: 6px; padding: 12px 14px; background: #f1f5f9; }
.browser-top i { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.browser-body { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 20px; padding: 35px 28px; }
.mock-copy { display: grid; gap: 12px; }
.mock-copy span { height: 10px; border-radius: 8px; background: #e9d5ff; }
.mock-copy span:first-child { width: 72%; height: 19px; background: #843ab8; }
.mock-copy span:last-child { width: 55%; }
.mock-art { height: 150px; border-radius: 18px 55px 18px 55px; background: linear-gradient(145deg, #843ab8, #f59e0b); }
.design-tag { position: absolute; padding: 9px 14px; border-radius: 999px; background: #fff; color: #6b21a8; font-size: 12px; font-weight: 800; box-shadow: 0 12px 25px rgba(0,0,0,.2); }
.tag-logo { top: 10px; right: 25px; }
.tag-web { left: 0; bottom: 40px; }
.tag-social { right: 5px; bottom: 12px; }

.vision-core { position: absolute; left: 50%; top: 50%; display: flex; width: 205px; height: 205px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.25), rgba(255,255,255,.08)); color: #fff; font-size: 35px; font-weight: 800; line-height: 1; transform: translate(-50%, -50%); box-shadow: 0 0 70px rgba(74,222,128,.25); }
.vision-core span { margin-top: 7px; color: #86efac; font-size: 18px; letter-spacing: 2px; }
.vision-illustration::before, .vision-illustration::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transform: translate(-50%, -50%); }
.vision-illustration::before { width: 305px; height: 305px; }
.vision-illustration::after { width: 385px; height: 385px; }
.vision-orbit { position: absolute; z-index: 2; padding: 9px 14px; border-radius: 999px; background: #fff; color: #17554b; font-size: 12px; font-weight: 800; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.orbit-one { top: 22px; left: 45px; }
.orbit-two { top: 105px; right: 0; }
.orbit-three { left: 10px; bottom: 28px; }

.slider-arrow { position: absolute; top: 50%; z-index: 5; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(4,15,35,.35); color: #fff; font-size: 19px; cursor: pointer; transform: translateY(-50%); transition: .25s ease; }
.slider-arrow:hover { background: #fff; color: var(--navy); }
.slider-prev { left: max(14px, calc((100vw - 1320px) / 2)); }
.slider-next { right: max(14px, calc((100vw - 1320px) / 2)); }
.slider-dots { position: absolute; left: 50%; bottom: 29px; z-index: 5; display: flex; gap: 8px; transform: translateX(-50%); }
.slider-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.45); cursor: pointer; transition: .25s ease; }
.slider-dots button.is-active { width: 28px; background: #fff; }

.home-trust-strip { border-bottom: 1px solid var(--border); background: #fff; }
.trust-items { min-height: 72px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-items span { padding: 8px 20px; border-right: 1px solid var(--border); color: #475569; text-align: center; font-size: 13px; font-weight: 700; }
.trust-items span:first-child { border-left: 1px solid var(--border); }
.trust-items i { display: inline-grid; width: 22px; height: 22px; margin-right: 6px; place-items: center; border-radius: 50%; background: #eaf2ff; color: var(--primary); font-style: normal; }

.home-services { padding: 88px 0; }
.home-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-service-card { padding: 30px 28px; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: 0 7px 22px rgba(15,23,42,.055); transition: .25s ease; }
.home-service-card:hover { transform: translateY(-5px); border-color: #bfdbfe; box-shadow: var(--shadow); }
.home-service-icon { display: grid; width: 56px; height: 56px; margin-bottom: 20px; place-items: center; border-radius: 15px; background: #eaf2ff; font-size: 25px; }
.home-service-card h3 { margin-bottom: 10px; font-size: 20px; }
.home-service-card p { margin-bottom: 17px; color: var(--muted); font-size: 14px; }
.home-service-card > a { font-size: 13px; font-weight: 800; }
.home-service-card > a span { display: inline-block; margin-left: 3px; transition: transform .25s ease; }
.home-service-card > a:hover span { transform: translateX(4px); }
.home-takeaway { max-width: 920px; margin: 32px auto 0; text-align: center; }

.home-why-section { background: var(--light); }
.home-split { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(45px, 7vw, 80px); }
.home-copy h2 { margin-bottom: 18px; font-size: clamp(30px, 3.8vw, 45px); }
.home-copy > p { color: var(--muted); }
.home-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.home-stat { padding: 18px 15px; border: 1px solid var(--border); border-radius: 13px; background: #fff; }
.home-stat strong, .home-stat span { display: block; }
.home-stat strong { margin-bottom: 4px; color: var(--primary); font-size: 21px; }
.home-stat span { color: var(--muted); font-size: 11px; }
.support-card { padding: 35px; border: 1px solid #bfdbfe; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.support-icon { display: grid; width: 54px; height: 54px; margin-bottom: 21px; place-items: center; border-radius: 50%; background: var(--primary); color: #fff; font-size: 23px; font-weight: 800; }
.support-card h3 { margin-bottom: 12px; font-size: 24px; }
.support-card p { margin-bottom: 22px; color: var(--muted); }

.process-section { padding: 88px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: steps; }
.process-grid article { position: relative; padding: 28px 24px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.process-grid article:not(:last-child)::after { content: ""; position: absolute; top: 48px; right: -21px; z-index: 2; width: 21px; height: 1px; background: #bfdbfe; }
.process-grid article > span { display: grid; width: 42px; height: 42px; margin-bottom: 19px; place-items: center; border-radius: 12px; background: #eaf2ff; color: var(--primary); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin-bottom: 9px; font-size: 17px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.home-audience-section { background: var(--light); }
.check-list { margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin-bottom: 11px; padding-left: 29px; color: #475569; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: #dcfce7; color: #16a34a; font-size: 11px; font-weight: 900; }
.cta-panel { padding: 40px; border-radius: 22px; background: linear-gradient(145deg, #0f172a, #123c75); color: #cbd5e1; box-shadow: var(--shadow); }
.cta-panel h2 { color: #fff; font-size: clamp(28px, 3vw, 38px); }
.cta-panel a:not(.btn) { color: #93c5fd; }
.cta-panel .btn-outline { border-color: rgba(255,255,255,.7); color: #fff !important; }
.cta-panel .btn-outline:hover { border-color: #fff; background: #fff; color: var(--navy) !important; }

@media (max-width: 1050px) {
  .slider-arrow { top: auto; bottom: 20px; transform: none; }
  .slider-prev { left: 4%; }
  .slider-next { right: 4%; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article::after { display: none; }
}

@media (max-width: 820px) {
  .home-slider, .slider-track, .slide-grid { min-height: 650px; }
  .slide-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 55px; padding-bottom: 75px; }
  .slide-content { max-width: 700px; text-align: center; }
  .slide-content p { margin-inline: auto; }
  .slide-actions { justify-content: center; }
  .slide-visual { display: none; }
  .trust-items { grid-template-columns: repeat(2, 1fr); padding: 10px 0; }
  .trust-items span { border: 0; }
  .home-service-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .home-split { grid-template-columns: 1fr; }
  .support-card, .cta-panel { max-width: 650px; }
}

@media (max-width: 560px) {
  .home-slider, .slider-track, .slide-grid { min-height: 620px; }
  .slide-grid { padding-top: 48px; padding-bottom: 78px; }
  .slide-content h1, .slide-content h2 { font-size: 36px; letter-spacing: -.8px; }
  .slide-content p { font-size: 15px; }
  .slide-actions { flex-direction: column; align-items: stretch; }
  .slide-actions .btn { width: 100%; }
  .slider-dots { bottom: 31px; }
  .trust-items { grid-template-columns: 1fr; padding: 12px 0; }
  .trust-items span { padding: 7px; }
  .home-services, .process-section { padding: 62px 0; }
  .home-stats, .process-grid { grid-template-columns: 1fr; }
  .home-stat { text-align: center; }
  .support-card, .cta-panel { padding: 27px 23px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-slide, .home-service-card, .slider-dots button { transition: none; }
}

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

.services-hero {
  padding-bottom: 82px;
}

.service-overview {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(15, 23, 42, .1);
}

.service-overview-grid > div {
  position: relative;
  min-height: 100px;
  padding: 24px 24px 22px 67px;
}

.service-overview-grid > div:not(:last-child) {
  border-right: 1px solid var(--border);
}

.service-overview-grid > div > span {
  position: absolute;
  left: 25px;
  top: 28px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
  font-weight: 900;
}

.service-overview-grid strong,
.service-overview-grid small {
  display: block;
}

.service-overview-grid strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 14px;
}

.service-overview-grid small {
  color: var(--muted);
  font-size: 11px;
}

.service-category-section {
  padding: 88px 0 94px;
}

.creative-service-section {
  background: var(--light);
  border-top: 1px solid #f1f5f9;
}

.service-category-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 40px;
}

.service-category-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -.8px;
}

.service-category-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 15px;
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-detail-card {
  position: relative;
  display: flex;
  min-height: 310px;
  padding: 26px 24px 24px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .1);
}

.service-detail-card:hover::before {
  transform: scaleX(1);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-detail-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  background: #eaf2ff;
  font-size: 24px;
}

.service-index {
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.service-detail-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-detail-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-detail-card > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.service-detail-card > a span {
  transition: transform .25s ease;
}

.service-detail-card > a:hover span {
  transform: translateX(4px);
}

.creative-service-card::before {
  background: linear-gradient(90deg, #7c3aed, #ec4899);
}

.creative-service-card .service-detail-icon {
  background: #f3e8ff;
  color: #7c3aed;
}

.creative-service-card > a {
  color: #7c3aed;
}

.service-takeaway {
  max-width: 900px;
  margin: 34px auto 0;
  text-align: center;
}

.service-cta-section {
  padding: 74px 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(56, 189, 248, .18), transparent 28%),
    linear-gradient(120deg, #071a3a, #0a4ca6);
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.service-cta > div:first-child {
  max-width: 750px;
}

.service-cta .eyebrow {
  color: #93c5fd;
}

.service-cta h2 {
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(29px, 3.7vw, 43px);
}

.service-cta p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.service-cta-actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1050px) {
  .service-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-card {
    min-height: 280px;
  }
}

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

.contact-hero {
  padding-bottom: 82px;
  background:
    radial-gradient(circle at 82% 24%, rgba(14, 165, 233, .13), transparent 31%),
    linear-gradient(135deg, #f8fcff 0%, #edf8ff 100%);
}

.contact-quick-section {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(15, 23, 42, .1);
}

.contact-quick-card {
  display: flex;
  min-width: 0;
  min-height: 105px;
  padding: 22px 24px;
  align-items: center;
  gap: 15px;
  color: var(--navy);
}

.contact-quick-card:not(:last-child) {
  border-right: 1px solid var(--border);
}

.contact-quick-card:hover {
  background: #f8fbff;
  color: var(--navy);
}

.contact-quick-icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 13px;
  background: #eaf2ff;
  color: var(--primary);
}

.contact-quick-icon.whatsapp-icon {
  background: #dcfce7;
  color: #16a34a;
}

.contact-quick-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-quick-card > span:last-child {
  min-width: 0;
}

.contact-quick-card small,
.contact-quick-card strong {
  display: block;
}

.contact-quick-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .65px;
  text-transform: uppercase;
}

.contact-quick-card strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-main-section {
  padding: 86px 0 96px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(42px, 6vw, 78px);
}

.contact-info-panel {
  padding-top: 12px;
}

.contact-info-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.7vw, 43px);
  letter-spacing: -.8px;
}

.contact-intro {
  margin-bottom: 30px;
  color: var(--muted);
}

.contact-detail-list {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail-item:first-child {
  border-top: 1px solid var(--border);
}

.contact-detail-item > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #eaf2ff;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}

.contact-detail-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 14px;
}

.contact-detail-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-response-tip {
  padding: 20px 21px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
}

.contact-response-tip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.contact-response-tip p {
  margin: 0;
  color: #475569;
  font-size: 12px;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .1);
}

.contact-form-heading {
  margin-bottom: 27px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--border);
}

.contact-form-heading h2 {
  margin-bottom: 7px;
  font-size: 27px;
}

.contact-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-alert {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  padding: 14px 16px;
  border: 1px solid #fecaca;
  border-radius: 11px;
  background: #fef2f2;
  color: #991b1b;
}

.form-alert.success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.form-alert > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.form-alert p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.professional-contact-form {
  position: relative;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-field {
  min-width: 0;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.contact-field label > span {
  color: #dc2626;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field input,
.contact-field select {
  height: 48px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 145px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #94a3b8;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(8, 102, 255, .11);
}

.contact-field > small {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
  font-size: 9px;
  text-align: right;
}

.captcha-field {
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--light);
}

.captcha-input-wrap {
  position: relative;
  max-width: 240px;
}

.captcha-input-wrap > span {
  position: absolute;
  left: 12px;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  transform: translateY(-50%);
}

.captcha-input-wrap input {
  padding-left: 44px;
}

.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 2px;
}

.contact-submit {
  min-width: 175px;
}

.contact-submit > span {
  transition: transform .25s ease;
}

.contact-submit:hover > span {
  transform: translateX(3px);
}

.contact-submit-row > p {
  max-width: 310px;
  margin: 0;
  color: #94a3b8;
  font-size: 9px;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    max-width: 720px;
    padding-top: 0;
  }

  .contact-detail-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .contact-detail-item,
  .contact-detail-item:first-child {
    display: block;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  .contact-detail-item > span {
    margin-bottom: 13px;
  }
}

@media (max-width: 740px) {
  .contact-quick-grid {
    grid-template-columns: 1fr;
  }

  .contact-quick-card {
    min-height: 86px;
  }

  .contact-quick-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

@media (max-width: 560px) {
  .contact-main-section {
    padding: 62px 0;
  }

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

  .contact-field-full {
    grid-column: auto;
  }

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-submit-row > p {
    max-width: none;
    text-align: center;
  }
}

/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */

.portfolio-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(124, 58, 237, .13), transparent 31%),
    linear-gradient(135deg, #fbfaff 0%, #f3f0ff 100%);
  border-bottom-color: #ede9fe;
}

.portfolio-intro-section {
  padding: 62px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(350px, .8fr);
  align-items: end;
  gap: 70px;
}

.portfolio-intro h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(29px, 3.6vw, 42px);
  letter-spacing: -.7px;
}

.portfolio-intro > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
}

.portfolio-work-section {
  padding: 84px 0 94px;
  background: var(--light);
}

.portfolio-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 38px;
}

.portfolio-toolbar h2 {
  margin: 0;
  font-size: clamp(29px, 3.6vw, 42px);
}

.portfolio-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(15, 23, 42, .04);
}

.portfolio-filters button {
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.portfolio-filters button:hover,
.portfolio-filters button.is-active {
  background: var(--navy);
  color: #fff;
}

.professional-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.professional-project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(15, 23, 42, .06);
  transition: transform .28s ease, box-shadow .28s ease;
}

.professional-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, .12);
}

.professional-project-card[hidden] {
  display: none;
}

.project-visual {
  position: relative;
  display: grid;
  height: 245px;
  overflow: hidden;
  place-items: center;
  color: #fff;
}

.portfolio-blue { background: linear-gradient(145deg, #0756ba, #38bdf8); }
.portfolio-purple { background: linear-gradient(145deg, #5b21b6, #c084fc); }
.portfolio-orange { background: linear-gradient(145deg, #c2410c, #fbbf24); }
.portfolio-cyan { background: linear-gradient(145deg, #155e75, #22d3ee); }
.portfolio-green { background: linear-gradient(145deg, #166534, #4ade80); }
.portfolio-pink { background: linear-gradient(145deg, #9d174d, #f472b6); }

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}

.project-visual::before {
  right: -45px;
  top: -70px;
  width: 205px;
  height: 205px;
}

.project-visual::after {
  left: -55px;
  bottom: -85px;
  width: 225px;
  height: 225px;
}

.project-number {
  position: absolute;
  left: 20px;
  top: 17px;
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.project-main-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 26px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 43px;
  font-weight: 700;
  box-shadow: 0 20px 42px rgba(0,0,0,.16);
  backdrop-filter: blur(6px);
  transform: rotate(-3deg);
}

.professional-project-card:hover .project-main-icon {
  transform: rotate(0) scale(1.04);
}

.project-decoration {
  position: absolute;
  right: 18px;
  bottom: 20px;
  display: flex;
  gap: 5px;
}

.project-decoration i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
}

.project-category-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(15,23,42,.18);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.project-content {
  padding: 25px 24px 27px;
}

.project-type {
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .65px;
  text-transform: uppercase;
}

.project-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.project-description {
  min-height: 68px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-tags li {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--light);
  color: #64748b;
  font-size: 9px;
  font-weight: 700;
}

.portfolio-notice {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  max-width: 960px;
  margin: 36px auto 0;
  padding: 20px 22px;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffbeb;
}

.portfolio-notice-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f59e0b;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.portfolio-notice strong {
  display: block;
  margin-bottom: 3px;
  color: #92400e;
  font-size: 13px;
}

.portfolio-notice p {
  margin: 0;
  color: #78350f;
  font-size: 12px;
}

.portfolio-cta-section {
  padding: 75px 0;
  background:
    radial-gradient(circle at 82% 35%, rgba(192,132,252,.28), transparent 28%),
    linear-gradient(120deg, #1e0b3a, #6b21a8);
}

.portfolio-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 55px;
}

.portfolio-cta > div:first-child {
  max-width: 760px;
}

.portfolio-cta .eyebrow {
  color: #d8b4fe;
}

.portfolio-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 3.6vw, 43px);
}

.portfolio-cta-actions {
  display: flex;
  min-width: 225px;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 950px) {
  .professional-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-intro {
    gap: 40px;
  }
}

@media (max-width: 740px) {
  .portfolio-intro {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .portfolio-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-cta {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .portfolio-cta-actions {
    width: min(100%, 420px);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .portfolio-intro-section {
    padding: 50px 0;
  }

  .portfolio-work-section {
    padding: 62px 0;
  }

  .professional-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    width: 100%;
    border-radius: 13px;
  }

  .portfolio-filters button {
    flex: 1 1 auto;
  }

  .project-description {
    min-height: 0;
  }

  .portfolio-notice {
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .portfolio-cta-section {
    padding: 60px 0;
  }

  .portfolio-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .service-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-overview-grid > div {
    min-height: 88px;
  }

  .service-overview-grid > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-category-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-cta {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .service-cta-actions {
    width: min(100%, 420px);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .service-category-section {
    padding: 62px 0;
  }

  .service-category-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    min-height: 0;
    padding: 23px 21px;
  }

  .service-cta-section {
    padding: 60px 0;
  }

  .service-cta-actions .btn {
    width: 100%;
  }
}
