:root {
  --color-primary: #2563eb;
  --color-secondary: #22c55e;
  --color-accent: #ff6f00;
  --color-dark: #0b1220;
  --color-dark-alt: #111827;
  --color-light: #ffffff;
  --text-dark: #1e1e1e;
  --text-muted: #5b6472;
  --border-glow: 0 0 22px rgba(37, 99, 235, 0.35);
  --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.16);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
}

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

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

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section.dark {
  background: var(--color-dark);
  color: #f8fafc;
}

.section.dark .section-title,
.section.dark .section-subtitle {
  color: #f8fafc;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title.spaced {
  margin-top: 2.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 720px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
}

.section.dark .badge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 1.5rem 0 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand span {
  color: var(--color-primary);
}

.brand-logo {
  height: 76px;
  width: auto;
  display: block;
}

header .brand-logo {
  height: 64px;
}

.footer .brand-logo,
.pro-footer .brand-logo {
  height: 64px;
}

@media (max-width: 1100px) {
  .brand-logo {
    height: 52px;
  }

  header .brand-logo {
    height: 48px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 64px;
  }

  header .brand-logo {
    height: 56px;
  }

  .footer .brand-logo,
  .pro-footer .brand-logo {
    height: 56px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a,
.nav-links button {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-links button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
}

.nav-links a::after,
.nav-links button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links button:hover::after,
.nav-links button:focus::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.dropdown-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: min(560px, 85vw);
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.dropdown-item {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.dropdown-item span {
  font-weight: 600;
}

.dropdown-item small {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(37, 99, 235, 0.08);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item.open .dropdown-caret {
  transform: rotate(-135deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pro-services-page {
  background: #070709;
  color: #f8fafc;
}

.pro-nav header {
  background: rgba(5, 5, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-nav header.scrolled {
  background: rgba(3, 3, 5, 0.98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.pro-nav .nav-links a,
.pro-nav .nav-links button {
  color: #f8fafc;
}

.pro-nav .nav-links a::after,
.pro-nav .nav-links button::after {
  background: var(--color-secondary);
}

.pro-nav .nav-toggle span {
  background: #f8fafc;
}

.pro-nav .nav-dropdown {
  background: #0d1016;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-nav .dropdown-item {
  color: #f8fafc;
}

.pro-nav .dropdown-item:hover,
.pro-nav .dropdown-item:focus {
  background: rgba(37, 99, 235, 0.2);
}

.pro-nav .dropdown-item small {
  color: #cbd5f5;
}

.pro-nav .btn-glow {
  background: #1d4ed8;
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(29, 78, 216, 0.45);
}

.pro-services-page header {
  background: rgba(5, 5, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-services-page header.scrolled {
  background: rgba(3, 3, 5, 0.98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.pro-services-page .nav-links a,
.pro-services-page .nav-links button {
  color: #f8fafc;
}

.pro-services-page .nav-links a::after,
.pro-services-page .nav-links button::after {
  background: var(--color-secondary);
}

.pro-services-page .nav-toggle span {
  background: #f8fafc;
}

.pro-services-page .nav-dropdown {
  background: #0d1016;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-services-page .dropdown-item {
  color: #f8fafc;
}

.pro-services-page .dropdown-item:hover,
.pro-services-page .dropdown-item:focus {
  background: rgba(37, 99, 235, 0.2);
}

.pro-services-page .dropdown-item small {
  color: #cbd5f5;
}

.pro-services-page .btn-glow {
  background: #1d4ed8;
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(29, 78, 216, 0.45);
}

.pro-services-page .btn-outline {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.35);
}

.pro-services-page .btn-outline:hover {
  background: #1d4ed8;
  color: #fff;
  border-color: transparent;
}

.pro-hero {
  padding: 6.5rem 0 5.5rem;
  background: #050507;
}

.pro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.pro-hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.pro-hero-text p {
  color: #cbd5f5;
  max-width: 460px;
}

.pro-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7dd3fc;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.feature-divider {
  width: 6px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #a855f7 0%, #2563eb 50%, #22c55e 100%);
}

.pro-hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.feature-item p {
  color: #cbd5f5;
  font-size: 0.95rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon.blue {
  color: #38bdf8;
}

.feature-icon.green {
  color: #22c55e;
}

.feature-icon.purple {
  color: #a855f7;
}

.feature-icon.orange {
  color: #f97316;
}

.pro-tabs {
  background: #0c0c10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0;
}

.pro-tabs.light {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.08);
}

.pro-tabs.light .tab {
  color: #0f172a;
}

.pro-tabs.light .tab.active {
  border-bottom-color: #7c3aed;
  color: #0f172a;
}

.tabs-row {
  display: flex;
  gap: 2.5rem;
  font-weight: 600;
  color: #e2e8f0;
  flex-wrap: wrap;
}

.tab {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid transparent;
}

.tab.active {
  border-bottom-color: #38bdf8;
  color: #ffffff;
}

.pro-showcase {
  padding: 5rem 0;
  background: linear-gradient(120deg, #0b0717 0%, #2b1456 45%, #123a7a 100%);
}

.pro-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.pro-showcase-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.pro-showcase-text p {
  color: #e2e8f0;
  max-width: 440px;
}

.showcase-media {
  position: relative;
  min-height: 360px;
}

.media-card {
  position: absolute;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(5, 5, 12, 0.4);
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card.large {
  width: 70%;
  height: 240px;
  top: 10px;
  left: 0;
}

.media-card.tall {
  width: 38%;
  height: 300px;
  top: 0;
  right: 0;
}

.media-card.small {
  width: 40%;
  height: 180px;
  bottom: 0;
  left: 20%;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(15, 23, 42, 0.2));
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pro-highlight {
  background: #050507;
}

.highlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  background: #111217;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.highlight-media {
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  background: #0f1118;
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlight-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin: 1rem 0 0.8rem;
}

.price-line {
  color: #22c55e;
  font-size: 1.1rem;
}

.pro-articles {
  background: #f8fafc;
  color: #0f172a;
}

.pro-articles .badge {
  color: #2563eb;
}

.pro-articles .section-title,
.pro-articles h3 {
  color: #0f172a;
}

.pro-articles .image-placeholder {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(15, 23, 42, 0.06));
  color: rgba(15, 23, 42, 0.7);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.article-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

a.article-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-top: 1.1rem;
}

.article-image {
  border-radius: 18px;
  height: 180px;
  overflow: hidden;
}

.article-image img,
.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pro-chat {
  background: #07070b;
}

.pro-chat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.chat-media {
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: #10121a;
  aspect-ratio: 4 / 3;
}

.chat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chat-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.chat-content p {
  color: #cbd5f5;
  max-width: 520px;
}

.chat-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pro-blog {
  background: #050507;
}

.pro-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.blog-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.blog-content p {
  color: #cbd5f5;
  max-width: 520px;
}

.blog-media {
  border-radius: 24px;
  overflow: hidden;
  min-height: 300px;
  background: #10121a;
}

.pro-footer {
  background: #050507;
  color: #f8fafc;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.pro-footer-social p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  color: #f8fafc;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(59, 130, 246, 0.4);
}

.webapp-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.webapp-hero {
  background: #050507;
  padding: 5.5rem 0 6rem;
}

.webapp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.webapp-hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  margin-bottom: 1rem;
}

.webapp-hero-text p {
  color: #cbd5f5;
  max-width: 520px;
}

.webapp-hero-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background: #111217;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.webapp-intro {
  background: #050507;
}

.webapp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.webapp-intro h2 {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  margin-bottom: 1rem;
}

.webapp-intro p {
  color: #cbd5f5;
}

.webapp-intro-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: #111217;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.webapp-services {
  background: #070709;
}

.webapp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.webapp-card {
  background: #111217;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.webapp-card h3 {
  font-size: 1.05rem;
  margin-top: 1.4rem;
}

.webapp-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.webapp-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.webapp-cta {
  background: #0b67f1;
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
}

.webapp-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.webapp-cta p {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.webapp-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.webapp-cta .btn-outline:hover {
  background: #ffffff;
  color: #0b67f1;
}

.webapp-plans {
  background: #f8fafc;
  color: #0f172a;
  text-align: center;
}

.webapp-plans .section-subtitle {
  margin: 0 auto 2.5rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.plan-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.plan-card.featured {
  border: 2px solid rgba(34, 197, 94, 0.25);
}

.plan-card ul {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.plan-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.3);
  margin: 1.5rem 0;
}

.plan-note {
  margin-top: 2rem;
  color: #64748b;
}

.webapp-testimonials {
  background: #f8fafc;
  color: #0f172a;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-block {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 1.5rem;
}

.testimonial-block span {
  font-weight: 600;
  color: #2563eb;
}

.webapp-expert {
  background: #f8fafc;
  color: #0f172a;
}

.webapp-expert-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.webapp-expert-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 4 / 3;
}

.webapp-hero-image img,
.webapp-intro-image img,
.webapp-expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.webapp-expert-content p {
  color: #475569;
}

.webapp-expert .btn-outline {
  border-color: #0f172a;
  color: #0f172a;
}

.webapp-expert .btn-outline:hover {
  background: #0f172a;
  color: #fff;
}

.webapp-faq {
  background: #050507;
  color: #f8fafc;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.faq-plus {
  font-size: 1.4rem;
  color: #e2e8f0;
}

.marketing-page {
  background: #f8fafc;
  color: #0f172a;
}

.marketing-page header {
  background: rgba(255, 255, 255, 0.96);
}

.marketing-page .nav-links a,
.marketing-page .nav-links button {
  color: #0f172a;
}

.marketing-page .nav-toggle span {
  background: #0f172a;
}

.marketing-page .nav-dropdown {
  background: #0f172a;
}

.marketing-page .dropdown-item {
  color: #f8fafc;
}

.marketing-page .dropdown-item small {
  color: #cbd5f5;
}

.marketing-page .btn-glow {
  background: #1d4ed8;
  color: #fff;
}

.portfolio-page {
  background: #f8fafc;
  color: #0f172a;
}

.projects-hero {
  background: #050507;
}

.projects-hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.projects-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 5, 12, 0.78), rgba(10, 18, 38, 0.6));
  z-index: 1;
}

.projects-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-hero-image.secondary {
  clip-path: inset(50% 50% 50% 50%);
  opacity: 0;
  animation: projectsOpen 10s ease-in-out infinite;
}

.projects-hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f8fafc;
  padding: 6rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.projects-hero-overlay h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.1;
}

.projects-hero-overlay p {
  color: rgba(226, 232, 240, 0.9);
}

.projects-breadcrumb {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.7);
}

.projects-grid-section {
  background: linear-gradient(120deg, #fdf1f4 0%, #f7f1ff 55%, #edf6ff 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.project-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card h3 {
  margin-top: 1.2rem;
  font-size: 1.35rem;
  color: #0f172a;
}

.project-card span {
  color: #64748b;
  font-weight: 600;
}

.project-card-media {
  border-radius: 18px;
  overflow: hidden;
  background: #f1f5f9;
  min-height: 180px;
  display: grid;
  place-items: center;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-page {
  background: #f8fafc;
  color: #0f172a;
}

.blog-hero {
  background: #050507;
  color: #f8fafc;
}

.blog-hero-media {
  position: relative;
  min-height: 70vh;
  display: grid;
}

.blog-hero-image {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.blog-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.75), rgba(5, 5, 7, 0.65));
  z-index: 1;
}

.blog-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.35), transparent 55%);
  z-index: 2;
}

.blog-hero-image span {
  display: none;
}

.blog-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 6.5rem 0;
}

.blog-hero-overlay h1 {
  font-size: clamp(2.7rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}

.blog-hero-overlay p {
  max-width: 640px;
  color: rgba(226, 232, 240, 0.9);
}

.blog-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 1.2rem;
}

.blog-archive {
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  gap: 1.1rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

a.blog-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.blog-card-media {
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.25));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.blog-card-media span {
  display: none;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6366f1;
}

.blog-card h3 {
  font-size: 1.3rem;
  line-height: 1.4;
}

.blog-card p {
  color: #475569;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #1d4ed8;
  margin-top: 0.4rem;
}

.blog-article-visual {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(236, 72, 153, 0.25));
  display: grid;
  place-items: center;
  margin: 1.5rem 0;
  overflow: hidden;
}

.blog-article-visual span {
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-article-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-featured {
  background: #ffffff;
}

.blog-post-hero {
  background: #050507;
  color: #f8fafc;
}

.blog-post-hero-media {
  position: relative;
  min-height: 60vh;
  display: grid;
}

.blog-post-hero-image {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.blog-post-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.75), rgba(5, 5, 7, 0.65));
  z-index: 1;
}

.blog-post-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.35), transparent 55%);
  z-index: 2;
}

.blog-post-hero-image span {
  display: none;
}

.blog-post-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}

.blog-post-breadcrumb {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 1rem;
}

.blog-post-hero-overlay h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

.blog-post-hero-overlay p {
  max-width: 640px;
  color: rgba(226, 232, 240, 0.9);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.8);
  margin: 1.5rem 0;
}

.blog-post-body {
  background: #f8fafc;
}

.blog-post-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.blog-post-content.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.blog-post-content p {
  color: #475569;
  margin-bottom: 1rem;
}

.blog-post-content h2 {
  margin: 1.6rem 0 1rem;
}

.article-heading,
.article-subheading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.article-subheading {
  margin-top: 1.2rem;
}

.section-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  flex: 0 0 18px;
}

.icon-blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.icon-teal {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}

.icon-orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.icon-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.icon-pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.blog-hashtags {
  color: #64748b;
  font-weight: 600;
  margin-top: 1.2rem;
}

.blog-audit-list {
  margin: 1rem 0 1.8rem;
  padding-left: 1.2rem;
  color: #475569;
}

.blog-audit-list li {
  margin-bottom: 0.6rem;
}

.blog-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: start;
}

.blog-feature-media {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  background: #0b0f1f;
  display: grid;
}

.blog-feature-image {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(37, 99, 235, 0.55), rgba(236, 72, 153, 0.45));
}

.blog-feature-image span {
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-feature-content {
  background: #f8fafc;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.blog-feature-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 1rem 0 1.2rem;
}

.blog-feature-content p {
  color: #475569;
  margin-bottom: 1rem;
}

.blog-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.2rem;
}

.blog-steps li {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1rem 1.2rem;
}

.blog-steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.blog-article-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(236, 72, 153, 0.12));
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.blog-article-note h3 {
  margin-bottom: 0.5rem;
}

.blog-article-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: #0f172a;
  color: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.blog-article-cta p {
  color: rgba(226, 232, 240, 0.85);
  margin: 0;
}

.blog-article-cta h3 {
  margin: 0 0 0.4rem;
}

.blog-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0 2rem;
  font-size: 0.98rem;
}

.blog-compare-table th,
.blog-compare-table td {
  border: 1px solid #e2e8f0;
  padding: 0.85rem 1rem;
  text-align: left;
}

.blog-compare-table th {
  background: #0f172a;
  color: #f8fafc;
  font-weight: 600;
}

.blog-compare-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.social-diagram {
  margin: 1.8rem 0 2.5rem;
  padding: 1.8rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(236, 72, 153, 0.12));
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.social-diagram-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.social-diagram-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.diagram-branch {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
}

.diagram-node {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  width: 100%;
}

.diagram-arrow {
  color: #2563eb;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.diagram-note {
  font-size: 0.88rem;
  color: #475569;
}

.node-main {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
  border-color: transparent;
}

.node-commerce {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #ffffff;
  border-color: transparent;
}

.node-awareness {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #ffffff;
  border-color: transparent;
}

.node-lead {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #ffffff;
  border-color: transparent;
}

.node-community {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #ffffff;
  border-color: transparent;
}

.node-local {
  background: linear-gradient(135deg, #3b82f6, #38bdf8);
  color: #ffffff;
  border-color: transparent;
}

.node-platforms {
  background: #f8fafc;
}

.flow-diagram {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}

.flow-diagram.vertical {
  flex-direction: column;
}

.flow-diagram.vertical .flow-arrow {
  letter-spacing: 0;
}

.flow-node {
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.flow-arrow {
  color: #2563eb;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.flow-blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.flow-amber {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.flow-red {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.flow-green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.flow-purple {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.flow-orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.flow-cyan {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.flow-lime {
  background: linear-gradient(135deg, #84cc16, #a3e635);
}

.flow-sky {
  background: linear-gradient(135deg, #3b82f6, #38bdf8);
}

.flow-emerald {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.blog-code-block {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1.2rem;
  border-radius: 16px;
  overflow: auto;
  font-size: 0.85rem;
  margin: 1.5rem 0;
}

.blog-code-block code {
  font-family: \"Courier New\", monospace;
  white-space: pre;
}

.blog-suggestions {
  width: 100vw;
  margin: 2.5rem calc(50% - 50vw) 2rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 6vw, 5rem);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(236, 72, 153, 0.12));
  border: 1px solid rgba(99, 102, 241, 0.18);
}

.blog-suggestions h3 {
  margin-bottom: 1.2rem;
}

.blog-suggestions .blog-grid {
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-page {
  background: #f8fafc;
  color: #0f172a;
}

.admin-header {
  padding: 3rem 0 1rem;
}

.admin-header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.admin-brand img {
  height: 64px;
  width: auto;
  display: block;
}

.admin-header-text h1 {
  font-family: 'Poppins', sans-serif;
}

.admin-title-accent {
  color: #8b5cf6;
}

.admin-header-text p {
  color: #64748b;
  margin: 0;
}

.admin-header .container {
  padding: 0 1.5rem;
}

.admin-header h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.admin-main {
  padding-bottom: 4rem;
}

.admin-panel .container {
  display: grid;
  gap: 1.5rem;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.admin-status {
  color: #64748b;
  font-weight: 500;
}

.admin-status.success {
  color: #15803d;
}

.admin-status.error {
  color: #b91c1c;
}

.admin-table-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #0f172a;
  color: #f8fafc;
  font-weight: 600;
}

.admin-table td {
  color: #475569;
}

.admin-cards {
  display: none;
  gap: 1rem;
}

.admin-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 0.6rem;
}

.admin-delete {
  align-self: flex-start;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 600;
  cursor: pointer;
}

.admin-delete:hover,
.admin-delete:focus {
  background: #fecaca;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #0f172a;
  font-weight: 600;
}

.admin-card-message {
  color: #475569;
}

.admin-empty {
  color: #64748b;
}

.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
  padding: 1.5rem;
}

.admin-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 2rem;
  width: min(520px, 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  display: grid;
  gap: 1rem;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes projectsOpen {
  0%,
  35% {
    opacity: 0;
    clip-path: inset(50% 50% 50% 50%);
    transform: scale(1.06);
  }
  55%,
  85% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    clip-path: inset(50% 50% 50% 50%);
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .projects-hero-overlay {
    padding: 5rem 1.5rem;
  }

  .blog-hero-overlay {
    padding: 5rem 0;
  }

  .blog-feature-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post-hero-overlay {
    padding: 5rem 0;
  }

  .blog-suggestions .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .projects-hero-overlay {
    padding: 4rem 1.25rem;
  }

  .blog-hero-overlay {
    padding: 4rem 0;
  }

  .blog-hero-image span {
    letter-spacing: 0.2em;
  }

  .blog-card {
    padding: 1.2rem;
  }

  .pro-articles .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-post-hero-overlay {
    padding: 4rem 0;
  }

  .blog-post-content {
    padding: 1.6rem;
  }

  .blog-post-content.reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .blog-suggestions .blog-grid {
    grid-template-columns: 1fr;
  }

  .admin-table-wrapper {
    display: none;
  }

  .admin-cards {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects-hero-image.secondary {
    animation: none;
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transform: none;
  }
}

.marketing-hero {
  padding: 5.5rem 0 5rem;
  background: #ffffff;
}

.marketing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.marketing-tag {
  display: inline-flex;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.marketing-hero-text h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.marketing-hero-text h1 span {
  color: #7c3aed;
}

.marketing-hero-text p {
  color: #475569;
  max-width: 520px;
}

.marketing-hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.marketing-swap {
  position: relative;
  width: 100%;
  height: 100%;
}

.marketing-swap-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketing-swap-image.secondary {
  clip-path: inset(50% 50% 50% 50%);
  opacity: 0;
  animation: marketingOpen 10s ease-in-out infinite;
}

.marketing-articles {
  background: #ffffff;
}

.marketing-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.marketing-articles .article-card {
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.marketing-chat {
  background: #f8fafc;
  padding: 5rem 0;
}

.marketing-chat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.marketing-chat-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.marketing-chat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marketing-chat-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.marketing-chat-content p {
  color: #475569;
}

.marketing-position {
  background: #070709;
  color: #f8fafc;
  padding: 5rem 0;
}

.marketing-position h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.position-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.position-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
  background: #111217;
}

.position-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
}

.marketing-offers {
  background: #070709;
  padding: 5rem 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.offer-card {
  background: #111217;
  border-radius: 26px;
  overflow: hidden;
  color: #f8fafc;
}

.offer-media {
  min-height: 240px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-content {
  padding: 2rem;
}

.offer-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.offer-content p {
  color: #cbd5f5;
}

.offer-content a {
  display: inline-flex;
  margin-top: 1.5rem;
  color: #38bdf8;
  font-weight: 600;
}

@keyframes marketingOpen {
  0%,
  35% {
    opacity: 0;
    clip-path: inset(50% 50% 50% 50%);
    transform: scale(1.06);
  }
  55%,
  85% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    clip-path: inset(50% 50% 50% 50%);
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-swap-image.secondary {
    animation: none;
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transform: none;
  }
}

.home-pro {
  background: #050507;
  color: #f8fafc;
}

.home-pro header {
  background: rgba(5, 5, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-pro header.scrolled {
  background: rgba(3, 3, 5, 0.98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.home-pro .nav-links a,
.home-pro .nav-links button {
  color: #f8fafc;
}

.home-pro .nav-toggle span {
  background: #f8fafc;
}

.home-pro .nav-dropdown {
  background: #0d1016;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-pro .dropdown-item {
  color: #f8fafc;
}

.home-pro .dropdown-item small {
  color: #cbd5f5;
}

.home-pro .btn-outline {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.4);
}

.home-pro .btn-outline:hover {
  background: #1d4ed8;
  color: #fff;
  border-color: transparent;
}

.home-hero {
  padding: 4.5rem 0 4rem;
  background: linear-gradient(135deg, #050507 0%, #0a1226 40%, #12193a 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.home-tag {
  display: inline-flex;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.home-hero-text h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

.home-hero-text p {
  color: #cbd5f5;
  max-width: 540px;
  font-size: 1rem;
}

.home-hero-media {
  display: grid;
  gap: 1.2rem;
}

.home-hero-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: homeHeroCycle 12s ease-in-out infinite;
}

.home-hero-slide.slide-1 {
  animation-delay: 0s;
}

.home-hero-slide.slide-2 {
  animation-delay: 4s;
}

.home-hero-slide.slide-3 {
  animation-delay: 8s;
}

@keyframes homeHeroCycle {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  12% {
    opacity: 1;
    transform: scale(1);
  }
  32% {
    opacity: 1;
    transform: scale(1);
  }
  44% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-slide {
    animation: none;
    opacity: 0;
  }

  .home-hero-slide.slide-1 {
    opacity: 1;
  }
}

.home-hero-card {
  background: #111217;
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.home-hero-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.home-hero-card p {
  color: #cbd5f5;
  margin-bottom: 1.2rem;
}

.home-hero-list {
  display: grid;
  gap: 0.8rem;
}

.home-hero-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.home-hero-list span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  font-size: 0.85rem;
}

.home-offer {
  background: #f8fafc;
  color: #0f172a;
}

.home-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

.home-offer-content h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.home-offer-content p {
  color: #475569;
}

.home-offer-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.home-offer-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-offer-price {
  margin-top: 1.6rem;
  color: #2563eb;
  font-size: 1.2rem;
}

.home-offer-media {
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  aspect-ratio: 1 / 1;
  background: #0f1118;
  display: grid;
  place-items: center;
}

.home-link {
  display: inline-flex;
  margin-top: 1.2rem;
  font-weight: 600;
  color: #2563eb;
}

.home-cards {
  background: #f8fafc;
  color: #0f172a;
  padding-top: 0;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.home-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 2.2rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.home-card h3 {
  font-size: 1.6rem;
  margin: 1rem 0 0.6rem;
}

.home-card p {
  color: #475569;
}

.home-card-price {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  color: #2563eb;
}

.home-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.home-card-icon.blue {
  color: #2563eb;
}

.home-card-icon.orange {
  color: #f97316;
  background: rgba(249, 115, 22, 0.15);
}

.home-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-blog {
  background: #050507;
  color: #f8fafc;
}

.home-blog-tag {
  display: inline-flex;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #93c5fd;
}

.home-blog .section-title {
  color: #f8fafc;
  margin-bottom: 2rem;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.home-blog-card {
  background: #0b0f1f;
  border-radius: 24px;
  padding: 1.5rem;
  color: #f8fafc;
  display: grid;
  gap: 1.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.home-blog-card h3 {
  font-size: 1.3rem;
  line-height: 1.4;
}

.home-blog-image {
  border-radius: 18px;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(15, 23, 42, 0.35));
}

.home-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-proof {
  background: #fdf1f4;
  color: #15154a;
  padding: 4.5rem 0;
}

.home-proof-inner {
  text-align: center;
}

.home-proof-kicker {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #7c3aed;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.home-proof h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 2.5rem;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
}

.home-proof-card {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.proof-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.proof-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon.proof-orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.proof-icon.proof-pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.proof-icon.proof-blue {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.proof-count {
  font-size: 2rem;
  font-weight: 700;
  color: #ef4444;
}

.home-services-add {
  background: #fef5f6;
  color: #15154a;
  padding: 5rem 0;
}

.home-services-add h2 {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 2.5rem;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.home-service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 0.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
}

.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.16);
}

.home-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.home-service-icon.purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.home-service-icon.blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.home-service-icon.green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.home-service-icon.teal {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}

.home-service-icon.pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.home-service-icon.orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.home-services-cta {
  margin-top: 2.5rem;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
  padding: 1.8rem 2rem;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.home-services-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.home-testimonials {
  background: #fdf1f4;
  color: #15154a;
  padding: 5rem 0;
}

.home-testimonial-kicker {
  color: #a855f7;
  font-weight: 600;
  margin-bottom: 1rem;
}

.home-testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.home-testimonial-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.home-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.rating-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: grid;
  place-items: center;
}

.rating-stars span {
  color: #f59e0b;
  font-size: 1rem;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.home-testimonial-card {
  background: #fff7f9;
  border-radius: 26px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  animation: testimonialPop 6s ease-in-out infinite;
}

.home-testimonial-card:nth-child(2) {
  animation-delay: 2s;
}

.home-testimonial-card:nth-child(3) {
  animation-delay: 4s;
}

.quote-mark {
  font-size: 2.4rem;
  color: #a855f7;
  line-height: 1;
}

.home-projects {
  background: linear-gradient(135deg, #fdf1f4 0%, #f8fafc 55%, #f3e8ff 100%);
  color: #15154a;
  padding: 5rem 0 6rem;
  text-align: center;
}

.home-projects h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 0.6rem;
}

.home-projects p {
  color: #475569;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.home-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.home-project-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.home-project-link {
  display: block;
}

.home-project-card h3 {
  margin-top: 1.2rem;
  font-size: 1.3rem;
}

.home-project-card span {
  color: #64748b;
  font-weight: 600;
}

.home-project-cta {
  margin-top: 2.5rem;
}

.image-duo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
}

.home-dashboard-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.image-layer {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.image-layer.secondary {
  opacity: 0;
  transform: translate(10px, 10px) scale(0.98);
}

.image-duo:hover .image-layer.secondary {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.image-duo:hover .image-layer.primary {
  opacity: 0.2;
}

.image-layer.primary {
  animation: duoPrimary 6s ease-in-out infinite;
}

.image-layer.secondary {
  animation: duoSecondary 6s ease-in-out infinite;
}

@keyframes testimonialPop {
  0%,
  30% {
    opacity: 0.4;
    transform: translateY(12px) scale(0.96);
  }
  45%,
  70% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0.4;
    transform: translateY(12px) scale(0.96);
  }
}

@keyframes duoPrimary {
  0%,
  45% {
    opacity: 1;
  }
  60%,
  100% {
    opacity: 0.2;
  }
}

@keyframes duoSecondary {
  0%,
  45% {
    opacity: 0;
    transform: translate(10px, 10px) scale(0.98);
  }
  60%,
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: transform 0.3s ease;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: var(--border-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.btn-pulse {
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(37, 99, 235, 0.45);
}

.btn-outline:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.85), rgba(34, 197, 94, 0.85));
  box-shadow: var(--border-glow);
}

.btn-glow {
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(34, 197, 94, 0.2));
  border: 1px solid rgba(37, 99, 235, 0.4);
  color: var(--color-primary);
}

.btn-glow:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(34, 197, 94, 0.7));
  color: #fff;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.2);
  }
  70% {
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.45);
  }
  100% {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.2);
  }
}

.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  min-height: 88vh;
  background: linear-gradient(120deg, #f5f9ff 0%, #ffffff 45%, #fef3e7 100%);
  background-size: 200% 200%;
  animation: gradientShift 16s ease infinite;
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 1.2rem 0 1rem;
}

.hero-content {
  max-width: 560px;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-card ul {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.hero-card li span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-orb.orb-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
  top: -100px;
  right: -60px;
}

.hero-orb.orb-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent 70%);
  bottom: -80px;
  left: -40px;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.about-page {
  background: #f5f1fb;
}

.about-hero {
  background: #050507;
}

.about-hero-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.about-hero-media .image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(236, 72, 153, 0.45), rgba(34, 197, 94, 0.45));
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 0;
}

.about-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.about-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 5, 12, 0.7), rgba(15, 23, 42, 0.55));
  z-index: 1;
}

.about-hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
  color: #f8fafc;
  display: grid;
  gap: 1rem;
}

.about-hero-overlay h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.about-hero-overlay p {
  color: rgba(226, 232, 240, 0.9);
}

.about-breadcrumb {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.7);
}

.about-hero .hero-actions {
  justify-content: center;
}

.about-story {
  background: #ffffff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.about-story-media {
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.about-story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-media .image-placeholder {
  min-height: 320px;
  color: rgba(15, 23, 42, 0.7);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(250, 204, 21, 0.2), rgba(34, 197, 94, 0.2));
}

.about-story-content h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.about-story-content p {
  color: #4b5563;
}

.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #2563eb, #22c55e, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.about-values {
  background: linear-gradient(120deg, #f5f0ff, #eef7ff);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.about-value-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.6rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.about-value-card h3 {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #0f172a;
}

.about-value-card p {
  color: #4b5563;
}

.about-value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.about-value-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.mission-icon {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.vision-icon {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
}

.about-founder {
  background: #ffffff;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.about-founder-photo {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.about-founder-photo img {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}

.about-founder-social {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-founder-social .social-link {
  --social-bg: #ffffff;
  --social-color: #0f172a;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--social-bg);
  color: var(--social-color);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.about-founder-social .social-link:nth-child(1) {
  --social-bg: #3b82f6;
  --social-color: #ffffff;
  border-color: transparent;
}

.about-founder-social .social-link:nth-child(2) {
  --social-bg: #f97316;
  --social-color: #ffffff;
  border-color: transparent;
}

.about-founder-social .social-link:nth-child(3) {
  --social-bg: #22c55e;
  --social-color: #ffffff;
  border-color: transparent;
}

.about-founder-social .social-link:nth-child(4) {
  --social-bg: #ec4899;
  --social-color: #ffffff;
  border-color: transparent;
}

.about-founder-social .social-link:hover {
  background: var(--social-bg);
  color: var(--social-color);
  filter: brightness(1.05);
}

.about-founder-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.about-founder-title {
  font-weight: 600;
  color: #f97316;
  margin-bottom: 1.2rem;
}

.about-founder-content p {
  color: #4b5563;
}

.about-founder-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

@media (max-width: 980px) {
  .about-story-grid,
  .about-founder-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-overlay {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .about-hero-overlay {
    padding: 4.2rem 1.25rem;
  }

  .about-story-media .image-placeholder {
    min-height: 240px;
  }

  .about-founder-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: 20px;
  background: linear-gradient(var(--color-dark), var(--color-dark)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(255, 111, 0, 0.7)) border-box;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.service-card.light {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.service-card.light p {
  color: var(--text-muted);
}

.service-card.light .service-icon {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
}

.service-card:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.2rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: rgba(248, 250, 252, 0.8);
  font-size: 0.95rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transform: scale(0.98);
  transition: transform 0.4s ease;
}

.testimonial-card.active {
  transform: scale(1);
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.testimonial-card h4 {
  font-family: 'Poppins', sans-serif;
}

.testimonial-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonial-controls button {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  background: var(--color-primary);
  color: #fff;
}

.cta {
  background: linear-gradient(120deg, #1e3a8a, #2563eb);
  color: #fff;
  text-align: center;
  border-radius: 32px;
  padding: 4rem 2rem;
  box-shadow: var(--shadow-soft);
}

.cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 2rem;
}

.footer {
  background: #fff;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-weight: 500;
}

.footer small {
  color: var(--text-muted);
}

.contact-page {
  background: #f8fafc;
}

.contact-hero {
  background: #050507;
  padding: 3.5rem 0 4.5rem;
}

.contact-hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 35px 90px rgba(5, 5, 12, 0.45);
}

.contact-hero-media .image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.6)),
    url('/img/contact_hero.JPG') center/cover no-repeat;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  letter-spacing: 0.08em;
  z-index: 0;
}

.contact-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 5, 12, 0.75), rgba(15, 23, 42, 0.5));
  z-index: 1;
}

.contact-hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5.5rem 1.5rem;
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
  color: #f8fafc;
}

.contact-breadcrumb {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.7);
}

.contact-hero-overlay h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.contact-hero-overlay p {
  color: rgba(226, 232, 240, 0.9);
}

.contact-hero .hero-actions {
  justify-content: center;
}

.contact-main {
  padding: 4.5rem 0 5.5rem;
  background: #f8fafc;
}

.contact-card-layout {
  background: #fff;
  border-radius: 28px;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  box-shadow: var(--shadow-soft);
}

.contact-info h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.contact-info p {
  color: var(--text-muted);
}

.contact-list {
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 500;
  color: #0f172a;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.contact-social p {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.contact-social .social-link {
  background: rgba(37, 99, 235, 0.12);
  color: #0f172a;
}

.contact-social .social-link:hover {
  background: var(--color-primary);
  color: #fff;
}

.contact-form {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1f2937;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 1.1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.contact-form button {
  width: 100%;
  justify-content: center;
}

.contact-faq {
  background: #f8fafc;
}

.contact-faq .section-title {
  text-align: center;
}

.contact-faq .faq-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-faq .faq-item {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.contact-faq .faq-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-faq .faq-item p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 980px) {
  .contact-card-layout {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .contact-hero-overlay {
    padding: 4.5rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .contact-card-layout {
    padding: 2.2rem 1.6rem;
  }

  .contact-hero-media {
    border-radius: 24px;
  }

  .contact-map iframe {
    height: 320px;
  }
}

.form-status {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-status.success {
  color: var(--color-secondary);
}

.form-status.error {
  color: var(--color-accent);
}

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.88);
  filter: blur(14px);
  will-change: transform, opacity;
}

.reveal.is-visible {
  animation: revealPop 1.35s cubic-bezier(0.16, 0.84, 0.2, 1) var(--reveal-delay, 0s) both;
}

@keyframes revealPop {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.88);
    filter: blur(14px);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.blog-post-content.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.cursor-glow {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), rgba(37, 99, 235, 0));
  mix-blend-mode: screen;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

@media (max-width: 980px) {
  .nav-actions {
    display: none;
  }

  .navbar nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .pro-nav .nav-links,
  .pro-services-page .nav-links,
  .home-pro .nav-links {
    background: #0d1016;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item,
  .nav-links a,
  .nav-links button {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    padding: 0.75rem 0 0;
    box-shadow: none;
    background: transparent;
    grid-template-columns: 1fr;
    opacity: 0;
    pointer-events: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
  }

  .nav-item.open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    max-height: 1000px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-card {
    order: 2;
  }

  .pro-hero-grid,
  .pro-showcase-grid,
  .highlight-card,
  .pro-chat-grid,
  .pro-blog-grid,
  .webapp-hero-grid,
  .webapp-intro-grid,
  .webapp-expert-grid,
  .marketing-hero-grid,
  .marketing-chat-grid,
  .home-hero-grid,
  .home-offer-card {
    grid-template-columns: 1fr;
  }

  .home-services-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-testimonial-header {
    align-items: flex-start;
  }

  .feature-divider {
    display: none;
  }

  .pro-hero-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-card {
    margin-right: 0;
  }

  .cta {
    border-radius: 24px;
  }

  .tabs-row {
    gap: 1.2rem;
  }

  .showcase-media {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .media-card {
    position: static;
    width: 100%;
    height: 200px;
  }

  .highlight-card {
    padding: 2rem;
  }

  .chat-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .webapp-hero-image,
  .webapp-intro-image,
  .webapp-expert-image,
  .marketing-hero-image,
  .marketing-chat-image,
  .home-hero-image,
  .home-offer-media {
    min-height: 220px;
  }

  .home-offer-card {
    padding: 2rem;
  }

  .home-hero {
    padding: 5rem 0;
  }

  .home-proof,
  .home-services-add,
  .home-testimonials,
  .home-projects {
    padding: 3.5rem 0;
  }

  .home-proof-card,
  .home-service-card,
  .home-testimonial-card {
    padding: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .cursor-glow {
    display: none;
  }
}
