:root {
  --bg: #050b1f;
  --bg-soft: #0c1534;
  --surface: #ffffff;
  --surface-soft: #f4f8ff;
  --text: #0b1533;
  --text-muted: #546183;
  --line: #d9e3ff;
  --accent: #2a6bff;
  --accent-2: #10b8ff;
  --success: #18c787;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 24px rgba(8, 24, 62, 0.08);
  --shadow-md: 0 18px 42px rgba(8, 24, 62, 0.14);
  --shadow-lg: 0 26px 60px rgba(8, 24, 62, 0.24);
  --container: 1200px;
  --header-height: 80px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

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

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: var(--surface-soft);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-head.left {
  margin: 0 0 2rem;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(38, 110, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 18px 32px rgba(38, 110, 255, 0.36);
}

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

.btn-outline.dark {
  border-color: var(--line);
  color: var(--text);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline.dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(42, 107, 255, 0.06);
}

.btn-block {
  width: 100%;
}

.top-gradient {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, #1f46a7 0%, #0e1a42 44%, #050b1f 100%);
}

.gradient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.6;
  pointer-events: none;
}

.gradient-shape.one {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -50px;
  background: rgba(16, 184, 255, 0.6);
}

.gradient-shape.two {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -100px;
  background: rgba(43, 107, 255, 0.62);
}

.pattern-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 90%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 31, 0.85);
}

.site-header.light {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(8, 24, 62, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  position: relative;
}

.brand {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-header.light .brand {
  color: var(--text);
}

.nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}

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

.menu {
  display: flex;
  flex-direction: column;
}

.menu > li > a,
.menu > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 1rem;
  font-weight: 600;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.menu > li > a.active,
.menu > li > button.active {
  color: var(--accent);
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a::after,
.has-dropdown > button::after {
  content: "\25BE";
  margin-left: 0.45rem;
  font-size: 0.75rem;
}

.dropdown-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.35rem 0;
  background: var(--surface-soft);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.dropdown-menu a:hover {
  color: var(--accent);
}

.dropdown-menu a.active {
  color: var(--accent);
  font-weight: 700;
}

.has-dropdown.open .dropdown-menu {
  display: block;
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
  cursor: pointer;
}

.site-header.light .mobile-toggle {
  border-color: rgba(8, 24, 62, 0.2);
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 10px;
}

.site-header.light .mobile-toggle span {
  background: var(--text);
}

.nav-cta {
  display: none;
}

.hero {
  padding: 110px 0 86px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 5vw, 3.45rem);
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(234, 241, 255, 0.92);
  font-size: 1.05rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.panel-list li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(239, 244, 255, 0.96);
  font-weight: 600;
}

.panel-list li:last-child {
  border-bottom: 0;
}

.page-hero {
  padding: 108px 0 70px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
}

.breadcrumb {
  display: inline-flex;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: rgba(231, 239, 255, 0.9);
}

.breadcrumb a {
  color: rgba(231, 239, 255, 0.95);
}

.stats-grid,
.services-grid,
.pricing-grid,
.portfolio-grid,
.blog-grid,
.contact-grid,
.footer-grid,
.template-grid {
  display: grid;
  gap: 1rem;
}

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

.stat-card {
  padding: 1.3rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--accent);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(42, 107, 255, 0.35);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(42, 107, 255, 0.12), rgba(16, 184, 255, 0.2));
  color: var(--accent);
  font-weight: 800;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card ul {
  margin-top: 0.95rem;
}

.card ul li {
  margin-bottom: 0.45rem;
  padding-left: 1rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 10px;
}

.split {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.founder-card {
  background: linear-gradient(160deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.image-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.55rem;
  background: #fff;
}

.portfolio-thumb,
.blog-thumb {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: rgba(42, 107, 255, 0.08);
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 420ms ease;
}

.slide {
  min-width: 100%;
}

.testimonial-card {
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #afc2f5;
  cursor: pointer;
}

.slider-dots button.active {
  width: 26px;
  border-radius: 999px;
  background: var(--accent);
}

.cta-strip {
  background: linear-gradient(135deg, #0f1f4e, #123580 55%, #1368ad);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cta-strip h2,
.cta-strip p {
  color: #fff;
}

.pricing-card {
  position: relative;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.price small {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card.highlight {
  border-color: rgba(42, 107, 255, 0.45);
  box-shadow: var(--shadow-md);
}

.pricing-card .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 0.36rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.mini-pricing-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.mini-price-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f7faff, #eef5ff);
  border-radius: 12px;
  padding: 0.9rem;
}

.mini-price-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.mini-price-card ul {
  margin: 0 0 0.8rem;
}

.mini-price-card ul li {
  font-size: 0.88rem;
  margin-bottom: 0.36rem;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

label {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdaf7;
  border-radius: 12px;
  padding: 0.72rem 0.86rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(42, 107, 255, 0.28);
  border-color: var(--accent);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.notice {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem;
  display: none;
}

.notice.success {
  background: rgba(24, 199, 135, 0.1);
  color: #0a7950;
  border: 1px solid rgba(24, 199, 135, 0.25);
}

.notice.error {
  background: rgba(245, 66, 66, 0.1);
  color: #931f1f;
  border: 1px solid rgba(245, 66, 66, 0.2);
}

.notice.show {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1200;
  background: rgba(7, 14, 36, 0.68);
}

.modal.show {
  display: flex;
}

.modal-dialog {
  width: min(680px, 100%);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.modal-body {
  padding: 1rem 1.1rem 1.2rem;
}

.close-btn {
  border: 1px solid var(--line);
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.rich-text h2,
.rich-text h3 {
  margin-top: 1.8rem;
}

.rich-text ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.rich-text ul li {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.rich-text ul li::before {
  display: none;
}

.inline-cta {
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #edf3ff, #e0ebff);
  border: 1px solid var(--line);
}

.contact-list li {
  display: flex;
  gap: 0.6rem;
  padding-left: 0;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.contact-list li::before {
  display: none;
}

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

.social-links a {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(42, 107, 255, 0.06);
}

.social-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(233, 239, 255, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(233, 239, 255, 0.92);
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}

.footer-social-icons a:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-icons svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.member-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.member-role {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-footer {
  background: #050b1f;
  color: rgba(233, 239, 255, 0.88);
  padding: 60px 0 20px;
}

.site-footer .brand,
.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer a {
  color: rgba(233, 239, 255, 0.88);
}

.site-footer a:hover {
  color: #fff;
}

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

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  margin-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
  font-size: 0.9rem;
  color: rgba(233, 239, 255, 0.72);
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14c55f, #0cb251);
  box-shadow: 0 14px 28px rgba(12, 178, 81, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 32px rgba(12, 178, 81, 0.45);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  border-radius: 0;
}

.reveal {
  animation: rise 600ms ease both;
}

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

@media (max-width: 719.98px) {
  .site-footer {
    padding: 46px 0 26px;
  }

  .site-footer .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .footer-grid {
    gap: 1.35rem;
  }

  .footer-grid > div {
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-social-icons {
    margin-top: 0.95rem;
    gap: 0.65rem;
  }

  .footer-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex: 0 0 44px;
  }

  .footer-social-icons svg {
    width: 20px;
    height: 20px;
    display: block;
    overflow: visible;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.1rem;
  }
}
@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    padding: 140px 0 102px;
  }

  .hero-grid {
    grid-template-columns: 1.18fr 0.82fr;
  }

  .page-hero {
    padding: 128px 0 86px;
  }

  .mobile-toggle {
    display: none;
  }

  .nav {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    border: 0;
    background: transparent;
  }

  .menu {
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
  }

  .menu > li > a,
  .menu > li > button {
    color: rgba(236, 242, 255, 0.9);
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
  }

  .site-header.light .menu > li > a,
  .site-header.light .menu > li > button {
    color: var(--text);
  }

  .menu > li > a:hover,
  .menu > li > button:hover,
  .menu > li > a.active,
  .menu > li > button.active {
    color: #fff;
  }

  .site-header.light .menu > li > a:hover,
  .site-header.light .menu > li > button:hover,
  .site-header.light .menu > li > a.active,
  .site-header.light .menu > li > button.active {
    color: var(--accent);
  }

  .has-dropdown {
    position: relative;
  }

  .has-dropdown > a::after,
.has-dropdown > button::after {
    font-size: 0.72rem;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 290px;
    border-radius: 14px;
    border: 1px solid rgba(11, 21, 51, 0.15);
    box-shadow: var(--shadow-md);
    background: #fff;
    padding: 0.45rem 0;
    z-index: 12;
  }

  .dropdown-menu a {
    padding: 0.6rem 0.9rem;
  }


  .nav-cta {
    display: inline-flex;
  }

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

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

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

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2.1rem;
  }

  

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}



