:root {
  --ink: #10233d;
  --muted: #60708a;
  --line: #dbe3ee;
  --paper: #f7f8f5;
  --white: #ffffff;
  --blue: #0f4779;
  --orange: #f26a2e;
  --gold: #f6a623;
  --green: #177a55;
  --shadow: 0 18px 45px rgba(16, 35, 61, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(15, 71, 121, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 71, 121, 0.055) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  animation: gridDrift 18s linear infinite;
}

.ambient-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.95;
  filter: blur(100px);
  transform: translate3d(var(--mouse-x, 0px), var(--mouse-y, 0px), 0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.glow-orange {
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(253, 110, 56, 0.32) 0%, rgba(246, 166, 35, 0.12) 45%, rgba(253, 110, 56, 0) 75%);
  top: -15%;
  left: -15%;
  animation: floatOrange 26s ease-in-out infinite alternate;
}

.glow-blue {
  width: 65vw;
  height: 65vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(16, 90, 180, 0.26) 0%, rgba(80, 160, 255, 0.10) 50%, rgba(16, 71, 121, 0) 75%);
  bottom: -20%;
  right: -15%;
  animation: floatBlue 30s ease-in-out infinite alternate;
}

.glow-gold {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(246, 166, 35, 0.28) 0%, rgba(253, 110, 56, 0.10) 40%, rgba(246, 166, 35, 0) 70%);
  top: 30%;
  left: 25%;
  animation: floatGold 22s ease-in-out infinite alternate;
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 64px 64px, 64px 64px;
  }
}

@keyframes floatOrange {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate3d(10vw, 8vh, 0) scale(1.15) rotate(120deg);
  }
  100% {
    transform: translate3d(5vw, 20vh, 0) scale(0.9) rotate(240deg);
  }
}

@keyframes floatBlue {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate3d(-8vw, -12vh, 0) scale(0.85) rotate(-90deg);
  }
  100% {
    transform: translate3d(-18vw, -5vh, 0) scale(1.1) rotate(-180deg);
  }
}

@keyframes floatGold {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    transform: translate3d(-5vw, 10vh, 0) scale(1.1);
  }
  100% {
    transform: translate3d(8vw, -5vh, 0) scale(0.95);
  }
}

@keyframes videoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotateX(1.6deg) rotateY(-1.8deg);
  }
}

@keyframes depthPulse {
  0%,
  100% {
    transform: translate3d(0, 0, -42px) rotate(0deg) scale(1);
    opacity: 0.65;
  }

  50% {
    transform: translate3d(16px, -12px, -18px) rotate(2deg) scale(1.03);
    opacity: 1;
  }
}


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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover .brand-logo {
  transform: scale(1.04);
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: #243b5b;
}

.main-nav .nav-link {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.main-nav .nav-link:hover {
  color: var(--orange);
}

.main-nav .nav-link:hover::after {
  width: 100%;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(242, 106, 46, 0.24);
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(242, 106, 46, 0.35);
  background: #d5531d;
}

.header-cta-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.icon-link {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(23, 122, 85, 0.24);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  min-height: min(760px, calc(100vh - 82px));
  padding: clamp(28px, 5vw, 72px);
  gap: clamp(28px, 5vw, 72px);
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  max-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  overflow: hidden;
  background: #0f1724;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: videoFloat 7s ease-in-out infinite;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 26%, transparent 72%, rgba(246, 166, 35, 0.18)),
    linear-gradient(180deg, transparent, rgba(16, 35, 61, 0.28));
  mix-blend-mode: screen;
}

.media-depth {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  pointer-events: none;
  transform-style: preserve-3d;
}

.media-depth-one {
  background: linear-gradient(135deg, rgba(15, 71, 121, 0.42), rgba(242, 106, 46, 0.28));
  animation: depthPulse 6s ease-in-out infinite;
}

.media-depth-two {
  inset: 30px;
  border-color: rgba(246, 166, 35, 0.35);
  animation: depthPulse 8s ease-in-out infinite reverse;
}

.hero-video {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(36px);
}

.hero-content {
  max-width: 660px;
  animation: pageRise 700ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(24px, 5.8vw, 82px);
  white-space: nowrap;
}

.details-page h1 {
  font-size: clamp(17px, 3.8vw, 54px);
  white-space: nowrap;
}

.projects-page h1 {
  font-size: clamp(13px, 2.9vw, 44px);
  white-space: nowrap;
}

.hero-copy,
.form-intro p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}


.primary-button,
.secondary-button,
.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 6px;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  transform-style: preserve-3d;
}

.primary-button {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(242, 106, 46, 0.24);
}

.primary-button:hover,
.secondary-button:hover,
.call-button:hover,
.icon-link:hover {
  transform: translateY(-3px) translateZ(18px);
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
}

.call-button {
  border: 1px solid var(--line);
  color: var(--green);
  background: var(--white);
}

.call-button svg {
  width: 20px;
  height: 20px;
}

.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover,
.form-shell:hover {
  transform: translateY(-6px) rotateX(1.5deg) rotateY(-1deg);
  box-shadow: 0 24px 55px rgba(16, 35, 61, 0.16);
}

/* Our Clients Section Styles */
.clients-section {
  padding: 60px clamp(18px, 4vw, 56px) 80px;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.clients-header {
  margin-bottom: 40px;
}

.clients-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  margin-top: 5px;
}

.clients-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.clients-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
}

.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-align: center;
}

.client-logo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-item:hover .client-logo-circle {
  transform: translateY(-6px) scale(1.05);
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(242, 106, 46, 0.2);
}

.client-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.3s ease;
}

.client-item:hover .client-name {
  color: var(--orange);
}

/* Scroll horizontally automatically continuously ONLY on phones/tablets */
@media (max-width: 768px) {
  .clients-slider-container::before,
  .clients-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .clients-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
  }
  .clients-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
  }

  .clients-track {
    justify-content: flex-start;
    gap: 40px;
    width: max-content;
    animation: infiniteMarquee 18s linear infinite;
  }

  /* Duplicate items are only needed/visible for the marquee scroll on mobile. 
     On desktop, we display only the first 3 items and hide duplicates. */
  .clients-track .client-item:nth-child(n+4) {
    display: flex; /* make them visible on mobile */
  }

  .client-logo-circle {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }

  .client-name {
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  /* On desktop, we hide the duplicate items since there's no loop needed */
  .clients-track .client-item:nth-child(n+4) {
    display: none;
  }
}

@keyframes infiniteMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Since we have 9 items total (3 sets of 3 identical items), 
       translating by 3 items + their gaps (-33.3333%) creates a seamless loop. */
    transform: translateX(-33.3333%);
  }
}

.details-page,
.projects-page {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0;
}

.form-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.form-shell {
  padding: clamp(18px, 3vw, 34px);
}

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

label {
  display: grid;
  gap: 8px;
  color: #233a58;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfe;
}

textarea {
  resize: vertical;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 106, 46, 0.18);
  border-color: var(--orange);
}

.full-width {
  grid-column: 1 / -1;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
  perspective: 1000px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card h2 {
  margin: 22px 22px 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.project-preview {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fbfcfe;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.project-preview img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-preview img {
  transform: scale(1.06);
}

.project-link-wrap {
  margin: 0 22px 14px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-link:hover {
  color: var(--blue);
}

.project-link .link-arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.project-link:hover .link-arrow {
  transform: translateX(4px);
}

.project-desc {
  margin: 0 22px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer {
  background: #0c1524;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px clamp(18px, 4vw, 56px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-col .footer-logo {
  height: 44px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.footer-nav-links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact-info li a {
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s ease;
  font-weight: 600;
}

.footer-contact-info li a:hover {
  color: var(--orange);
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer-bottom .copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* Floating Contact Dock */
.floating-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.dock-item {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(16, 35, 61, 0.22);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.dock-item svg {
  width: 24px;
  height: 24px;
  stroke: none;
  fill: currentColor;
}

.dock-call {
  background: var(--green);
}

.dock-call svg {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  width: 22px;
  height: 22px;
}

.dock-whatsapp {
  background: #25D366;
}

.dock-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.dock-youtube {
  background: #FF0000;
}

.dock-item:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 10px 22px rgba(16, 35, 61, 0.3);
}

.dock-tooltip {
  position: absolute;
  right: 68px;
  background: var(--ink);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dock-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--ink);
}

.dock-item:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pricing Section Styles */
.pricing-section {
  padding: 56px clamp(16px, 4vw, 56px) 76px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(15, 71, 121, 0.02) 60%, transparent);
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px;
}

.section-header .eyebrow {
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--ink);
}

.section-desc {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 18px);
  margin: 0;
  line-height: 1.5;
}

.pricing-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 64px;
  padding: 24px 12px 32px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
  -webkit-overflow-scrolling: touch;
}

.pricing-grid::-webkit-scrollbar {
  height: 8px;
}
.pricing-grid::-webkit-scrollbar-track {
  background: transparent;
}
.pricing-grid::-webkit-scrollbar-thumb {
  background-color: rgba(242, 106, 46, 0.35);
  border-radius: 20px;
}
.pricing-grid::-webkit-scrollbar-thumb:hover {
  background-color: var(--orange);
}

@media (min-width: 1400px) {
  .pricing-grid {
    justify-content: center;
    overflow-x: visible;
  }
}

.pricing-card {
  flex: 0 0 330px;
  min-width: 330px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px) rotateX(1deg);
  box-shadow: 0 30px 60px rgba(16, 35, 61, 0.14);
  border-color: rgba(15, 71, 121, 0.25);
}

/* Light / Dark themes for cards */
.pricing-card.light {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.pricing-card.dark {
  background: #111622;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.pricing-card.dark .card-header h3 {
  color: var(--orange);
}

.pricing-card.dark .price {
  color: var(--white);
}

.pricing-card.dark .features-list li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-card.dark .features-list .check-icon {
  color: var(--orange);
}

.pricing-card.dark .footer-note {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 13px;
  margin-top: 16px;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  line-height: 1.4;
}

.pricing-card.light .footer-note {
  color: var(--muted);
  font-style: italic;
  font-size: 13px;
  margin-top: 16px;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  line-height: 1.4;
}

/* Custom plan buttons */
.pricing-card .plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-card .plan-btn.btn-outline-orange {
  border: 1px solid var(--orange);
  background: transparent;
  color: var(--orange);
}

.pricing-card .plan-btn.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 106, 46, 0.25);
}

.pricing-card .plan-btn.btn-outline-blue {
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
}

.pricing-card .plan-btn.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 71, 121, 0.25);
}

.pricing-card .plan-btn.btn-solid-orange {
  border: none;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(242, 106, 46, 0.2);
}

.pricing-card .plan-btn.btn-solid-orange:hover {
  background: #d5531d;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(242, 106, 46, 0.35);
}

.pricing-card.featured {
  border: 2px solid var(--orange);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 30px 60px rgba(242, 106, 46, 0.16);
}

.pricing-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(242, 106, 46, 0.3);
}

.card-header h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
  color: #243b5b;
}

.price {
  display: flex;
  align-items: baseline;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.price .currency {
  font-size: 24px;
  margin-right: 2px;
}

.price .amount {
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1;
}

.price .plus {
  font-size: 28px;
  color: var(--orange);
  margin-left: 2px;
}

.price-subtitle {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
  color: #344865;
}

.features-list li.premium-feature {
  color: var(--orange);
  font-weight: 600;
}

.features-list .check-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.card-action {
  margin-top: auto;
}

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

/* Cost Estimator Section */
.estimator-container {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 42px;
  margin-top: 48px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.estimator-container h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
}

.estimator-sub {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
  margin: 0 0 36px;
}

.estimator-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 16px 8px 24px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
  -webkit-overflow-scrolling: touch;
}

.estimator-grid::-webkit-scrollbar {
  height: 8px;
}
.estimator-grid::-webkit-scrollbar-track {
  background: transparent;
}
.estimator-grid::-webkit-scrollbar-thumb {
  background-color: rgba(242, 106, 46, 0.35);
  border-radius: 20px;
}
.estimator-grid::-webkit-scrollbar-thumb:hover {
  background-color: var(--orange);
}

.estimator-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  flex: 0 0 285px;
  min-width: 285px;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
  gap: 16px;
}

.estimator-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(16, 35, 61, 0.1);
  border-color: rgba(15, 71, 121, 0.2);
}

.est-card-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.est-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(15, 71, 121, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.est-title {
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}

.est-price {
  font-weight: 800;
  color: var(--green);
  background: rgba(23, 122, 85, 0.08);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  margin-top: auto;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 16 / 11;
    min-height: 240px;
    order: -1;
  }

  .project-grid,
  .customer-form {
    grid-template-columns: 1fr;
  }



  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .brand-col .footer-logo {
    align-self: center;
  }

  .footer-nav-links {
    align-items: center;
  }

  .footer-contact-info li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Responsive Pricing Overrides */
  .pricing-grid {
    gap: 20px;
  }

  .pricing-card {
    flex: 0 0 310px;
    min-width: 310px;
    padding: 32px 22px;
  }

  .estimator-grid {
    gap: 16px;
  }

  .estimator-item {
    flex: 0 0 260px;
    min-width: 260px;
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    height: 40px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 8px 14px;
    line-height: 1.2;
  }

  .main-nav a:not(.icon-link) {
    font-size: 13px;
  }

  .icon-link {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 22px 16px 36px;
    gap: 22px;
  }

  .hero-media {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .hero-copy,
  .form-intro p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }


  .primary-button,
  .secondary-button,
  .call-button {
    width: 100%;
    padding: 13px 16px;
  }

  .clients-section {
    padding: 40px 16px 50px;
  }

  .details-page,
  .projects-page {
    width: calc(100% - 32px);
    padding: 30px 0 42px;
  }

  .form-shell {
    padding: 16px;
  }

  .project-preview {
    min-height: 140px;
    padding: 16px;
  }

  .project-preview img {
    max-height: 108px;
  }

  .site-footer {
    padding: 36px 16px 18px;
  }

  .floating-dock {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .dock-item {
    width: 46px;
    height: 46px;
  }

  .dock-item svg {
    width: 20px;
    height: 20px;
  }

  .dock-call svg {
    width: 18px;
    height: 18px;
  }

  .dock-tooltip {
    display: none;
  }

  /* Mobile Pricing Overrides - Keep horizontal scroll but adapt card sizes */
  .pricing-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 16px 8px 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    scroll-behavior: smooth !important;
  }

  .pricing-card {
    flex: 0 0 290px !important;
    min-width: 290px !important;
    padding: 24px 20px !important;
    scroll-snap-align: start !important;
    font-size: 14px !important;
  }

  .card-header h3 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  .price .amount {
    font-size: 32px !important;
  }

  .price .currency {
    font-size: 18px !important;
  }

  .price-subtitle {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }

  .features-list {
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .features-list li {
    font-size: 13px !important;
    gap: 8px !important;
  }

  .features-list .check-icon {
    width: 14px !important;
    height: 14px !important;
  }

  .pricing-card.featured {
    transform: scale(1.01) !important;
    border-width: 2px !important;
  }

  .pricing-card.featured:hover {
    transform: scale(1.01) translateY(-4px) !important;
  }

  .pricing-card:hover {
    transform: translateY(-4px) !important;
  }

  .pricing-card .badge {
    font-size: 9px !important;
    padding: 4px 8px !important;
    top: -10px !important;
  }

  .plan-btn {
    padding: 10px 14px !important;
    font-size: 13px !important;
  }

  .estimator-container {
    padding: 24px 16px;
  }

  .estimator-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding: 12px 4px 16px !important;
    scroll-behavior: smooth !important;
  }

  .estimator-item {
    flex: 0 0 240px !important;
    min-width: 240px !important;
    padding: 16px !important;
    scroll-snap-align: start !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .est-price {
    align-self: flex-start !important;
    margin-top: auto !important;
  }
}

@media (min-width: 1200px) {
  .hero,
  .clients-section {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

/* ==========================================================================
   Angara Web Makers - Premium Redesign Enhancements
   ========================================================================== */

/* 1. Projects Page Enhancements */
.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 42px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(16, 35, 61, 0.03);
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(15, 71, 121, 0.24);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 22px 14px;
}

.tech-tag {
  background: rgba(15, 71, 121, 0.06);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Custom categories for cards */
.project-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, opacity 0.3s ease;
}

.project-card.hidden {
  display: none !important;
}

/* Process Section */
.process-section {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  margin-top: 56px;
}

.process-section h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--ink);
}

.process-section .section-desc {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(16, 35, 61, 0.14);
}

.process-number {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(242, 106, 46, 0.08);
  line-height: 1;
  user-select: none;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #243b5b;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--ink);
}

.faq-section .section-desc {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 42px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(15, 71, 121, 0.2);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 71, 121, 0.05);
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.faq-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover .faq-icon-wrapper {
  background: var(--blue);
  color: var(--white);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 28px 22px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.faq-item.active {
  border-color: rgba(15, 71, 121, 0.3);
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Premium CTA Banner */
.premium-cta {
  background: linear-gradient(135deg, #0d2644 0%, #153b66 100%);
  border-radius: 16px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(13, 38, 68, 0.28);
  margin: 64px 0 24px;
  color: var(--white);
}

.premium-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(242, 106, 46, 0.15), transparent 45%);
  pointer-events: none;
}

.premium-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--white);
}

.premium-cta p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 32px;
  opacity: 0.85;
}

.premium-cta .primary-button {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(242, 106, 46, 0.35);
  font-size: 15px;
}

.premium-cta .primary-button:hover {
  background: #f47e4a;
}

/* 2. Customer Details Split Layout */
.details-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}

/* Left Sidebar - Estimate & Badges */
.details-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.active-plan-panel {
  background: var(--white);
  border: 1.5px solid var(--orange);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(242, 106, 46, 0.08);
  display: none;
  animation: pageRise 0.5s ease both;
}

.active-plan-panel.active {
  display: block;
}

.active-plan-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.active-plan-icon {
  font-size: 24px;
}

.active-plan-title {
  font-weight: 800;
  font-size: 18px;
  color: var(--orange);
  margin: 0;
}

.active-plan-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.dynamic-estimate-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.dynamic-estimate-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.estimate-price-display {
  display: flex;
  align-items: baseline;
  margin: 20px 0 12px;
  color: var(--green);
}

.estimate-price-display .curr {
  font-size: 20px;
  font-weight: 800;
  margin-right: 2px;
}

.estimate-price-display .val {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}

.estimate-price-display .lbl {
  font-size: 14px;
  color: var(--muted);
  margin-left: 8px;
  font-weight: 500;
}

.estimate-features-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.estimate-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #344865;
}

.estimate-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.trust-badge {
  background: rgba(15, 71, 121, 0.03);
  border: 1px solid rgba(15, 71, 121, 0.05);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background-color 0.25s ease;
}

.trust-badge:hover {
  background: rgba(15, 71, 121, 0.05);
}

.trust-badge-icon {
  font-size: 22px;
}

.trust-badge-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

/* Visual Option Cards Grid */
.requirement-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.req-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  user-select: none;
  box-shadow: 0 2px 8px rgba(16, 35, 61, 0.02);
}

.req-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 106, 46, 0.4);
  box-shadow: 0 8px 20px rgba(16, 35, 61, 0.08);
}

.req-card-icon {
  font-size: 32px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.req-card:hover .req-card-icon {
  transform: scale(1.15) rotate(5deg);
}

.req-card-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.req-card-price {
  font-size: 12px;
  color: var(--green);
  font-weight: 800;
  background: rgba(23, 122, 85, 0.08);
  padding: 4px 10px;
  border-radius: 12px;
}

.req-card.selected {
  border: 2px solid var(--orange);
  background: rgba(242, 106, 46, 0.04);
  box-shadow: 0 12px 24px rgba(242, 106, 46, 0.12);
  padding: 19px 13px; /* Prevent layout shifts */
}

.req-card.selected .req-card-title {
  color: var(--orange);
}

.req-card.selected .req-card-icon {
  transform: scale(1.1) translateY(-2px);
}

/* Form Shell and Elements Enhancement */
.form-shell {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  animation: pageRise 0.5s ease both;
}

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

.customer-form label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customer-form input,
.customer-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(15, 71, 121, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.customer-form input:hover,
.customer-form textarea:hover {
  border-color: rgba(242, 106, 46, 0.4);
}

.customer-form input:focus,
.customer-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 106, 46, 0.15);
  transform: translateY(-1px);
}

.customer-form .primary-button {
  margin-top: 12px;
  box-shadow: 0 8px 20px rgba(242, 106, 46, 0.25);
  transition: all 0.25s ease;
}

.customer-form .primary-button:hover {
  background: #d5531d;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(242, 106, 46, 0.35);
}

.customer-form .secondary-button {
  margin-top: 4px;
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  box-shadow: none;
  transition: all 0.25s ease;
}

.customer-form .secondary-button:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 71, 121, 0.15);
}

/* Responsive Overrides */
@media (max-width: 890px) {
  .details-split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .details-sidebar {
    position: static;
  }
  
  .requirement-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-shell {
    padding: 28px;
  }
}

@media (max-width: 820px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .project-filters {
    gap: 8px;
    margin-bottom: 28px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .process-card {
    padding: 24px;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }
  
  .faq-answer-content {
    padding: 0 20px 18px;
    font-size: 14px;
  }
  
  .premium-cta {
    padding: 32px 20px;
    margin-top: 42px;
  }
  
  .requirement-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .req-card {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 20px;
    gap: 16px;
    text-align: left;
  }
  
  .req-card.selected {
    padding: 13px 19px;
  }
  
  .req-card-price {
    margin-left: auto;
  }

  .form-shell {
    padding: 20px 16px;
  }
}

/* ==========================================================================
   Website Maintenance Styles
   ========================================================================== */
.maintenance-container {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 42px;
  margin-top: 48px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}

.maintenance-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(16, 35, 61, 0.15);
  border-color: rgba(242, 106, 46, 0.3);
}

.maintenance-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242, 106, 46, 0.04) 0%, transparent 60%);
  pointer-events: none;
  animation: floatGlow 12s infinite alternate ease-in-out;
  z-index: -1;
}

@keyframes floatGlow {
  0% { transform: translate(-8%, -8%) scale(1); }
  100% { transform: translate(8%, 8%) scale(1.15); }
}

.maintenance-content {
  position: relative;
  z-index: 1;
}

.maintenance-header-block {
  margin-bottom: 28px;
}

.maintenance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 106, 46, 0.08);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(242, 106, 46, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(242, 106, 46, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(242, 106, 46, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(242, 106, 46, 0);
  }
}

.maintenance-container h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--ink);
}

.maintenance-tagline {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.45;
}

.maintenance-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.m-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.m-feature-icon {
  font-size: 18px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(16, 35, 61, 0.05);
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, background-color 0.3s ease;
}

.m-feature-item:hover .m-feature-icon {
  transform: scale(1.15) rotate(8deg);
  border-color: var(--orange);
  background: rgba(242, 106, 46, 0.02);
}

.m-feature-text h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.m-feature-text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* Pricing Card Right Column */
.maintenance-pricing-card {
  position: relative;
  background: #111622;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 45px rgba(16, 35, 61, 0.25);
  z-index: 1;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.maintenance-pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242, 106, 46, 0.15) 0%, transparent 65%);
  pointer-events: none;
  animation: rotateCardBg 12s linear infinite;
  z-index: -1;
}

@keyframes rotateCardBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.maintenance-pricing-card:hover {
  border-color: rgba(242, 106, 46, 0.4);
  transform: scale(1.02);
}

.m-price-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.m-price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 6px;
}

.m-currency {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 2px;
  position: relative;
  top: -6px;
}

.m-amount-start,
.m-amount-end {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

.m-separator {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}

.m-price-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  font-style: italic;
}

.m-pricing-cta {
  width: 100%;
}

.m-pricing-cta .plan-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .maintenance-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
  }
  .maintenance-pricing-card {
    padding: 36px 24px;
  }
}

/* App Development & Publishing Section Styles */
.app-dev-section {
  padding: 80px clamp(16px, 4vw, 56px) 100px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 71, 121, 0.03) 0%, transparent 100%);
  position: relative;
}

.app-features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 52px;
}

.app-store-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 42px 36px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.app-store-card.play-store {
  background: linear-gradient(145deg, var(--white) 60%, rgba(76, 175, 80, 0.03) 100%);
}

.app-store-card.apple-store {
  background: linear-gradient(145deg, var(--white) 60%, rgba(15, 71, 121, 0.03) 100%);
}

.app-store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(16, 35, 61, 0.15);
}

.app-store-card.play-store:hover {
  border-color: rgba(76, 175, 80, 0.3);
}

.app-store-card.apple-store:hover {
  border-color: rgba(15, 71, 121, 0.3);
}

.store-badge-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.store-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.store-logo.play-logo,
.store-logo.play-logo path {
  stroke: none !important;
  stroke-width: 0 !important;
}

.app-store-card:hover .store-logo {
  transform: scale(1.18) rotate(4deg);
}

.store-badge-header h3 {
  margin: 0;
  font-size: clamp(20px, 3.5vw, 24px);
  font-weight: 800;
  color: var(--ink);
}

.store-intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 32px;
}

.store-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.store-features li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(242, 106, 46, 0.08);
  border: 1px solid rgba(242, 106, 46, 0.15);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.store-features h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.store-features p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
}

.app-dev-cta {
  text-align: center;
}

.app-dev-cta .plan-btn {
  display: inline-block;
  width: auto;
  min-width: 220px;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(242, 106, 46, 0.25);
  transition: all 0.3s ease;
}

.app-dev-cta .plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(242, 106, 46, 0.38);
}

/* Responsive Overrides for App Section */
@media (max-width: 820px) {
  .app-features-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .app-store-card {
    padding: 32px 24px;
  }
}

.app-dev-cta .plan-btn.btn-solid-orange {
  border: none;
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(242, 106, 46, 0.2);
}

.app-dev-cta .plan-btn.btn-solid-orange:hover {
  background: #d5531d;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(242, 106, 46, 0.35);
}

.app-dev-cta .plan-btn.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(242, 106, 46, 0.25);
}

/* ==========================================================================
   AI Video Creations Page Styles
   ========================================================================== */
.ai-videos-page {
  background: var(--paper);
}

/* AI Hero */
.ai-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(36px, 6vw, 72px) clamp(20px, 4vw, 56px);
  max-width: 1320px;
  margin: 0 auto;
}

.ai-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(242, 106, 46, 0.12);
  border: 1px solid rgba(242, 106, 46, 0.3);
  color: var(--orange);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ai-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.ai-hero-features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px 0;
}

.ai-hero-features-chips .chip {
  background: rgba(16, 35, 61, 0.05);
  border: 1px solid rgba(16, 35, 61, 0.12);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ai-hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(16, 35, 61, 0.16);
  border: 1px solid var(--line);
  background: #0f1724;
  aspect-ratio: 1402 / 1122;
}

.ai-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ai-hero-media:hover .ai-hero-img {
  transform: scale(1.03);
}

.hero-media-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(16, 35, 61, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.media-badge-icon {
  font-size: 26px;
}

.media-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.media-badge-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* AI Pricing Grid & Video Cards Layout Fitting */
.ai-pricing-grid, .monthly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .ai-pricing-grid, .monthly-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .ai-pricing-grid, .monthly-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.video-card, .package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(16, 35, 61, 0.06);
}

.video-card:hover, .package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(16, 35, 61, 0.14);
  border-color: rgba(242, 106, 46, 0.45);
}

.glow-card {
  border: 2px solid var(--orange) !important;
  box-shadow: 0 14px 40px rgba(242, 106, 46, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, rgba(242, 106, 46, 0.03) 100%);
}

.glow-card:hover {
  box-shadow: 0 28px 60px rgba(242, 106, 46, 0.32);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  right: 22px;
  background: linear-gradient(135deg, var(--orange), #d5531d);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(242, 106, 46, 0.35);
  text-transform: uppercase;
}

.package-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(242, 106, 46, 0.08);
  border: 1px solid rgba(242, 106, 46, 0.22);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.package-tag.tag-featured {
  color: #d5531d;
  background: rgba(242, 106, 46, 0.15);
  border-color: rgba(242, 106, 46, 0.4);
}

.pricing-card-header {
  margin-bottom: 12px;
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(242, 106, 46, 0.18);
  box-shadow: 0 8px 20px rgba(16, 35, 61, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.premium-3d-icon {
  width: 34px;
  height: 34px;
  display: block;
}

.video-card:hover .card-icon-wrapper, .package-card:hover .card-icon-wrapper {
  transform: translateY(-3px) scale(1.08) rotate(3deg);
  box-shadow: 0 12px 26px rgba(16, 35, 61, 0.14);
}

.card-icon-wrapper.icon-reel {
  background: linear-gradient(135deg, #FFF0EB 0%, #F3E5F5 100%);
  border-color: rgba(124, 77, 255, 0.25);
}

.card-icon-wrapper.icon-brand {
  background: linear-gradient(135deg, #EDF7FF 0%, #E0F7FA 100%);
  border-color: rgba(0, 180, 219, 0.25);
}

.card-icon-wrapper.icon-ad {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFE0B2 100%);
  border-color: rgba(247, 151, 30, 0.35);
  box-shadow: 0 8px 22px rgba(247, 151, 30, 0.22);
}

.card-icon-wrapper.icon-product {
  background: linear-gradient(135deg, #E6FFFA 0%, #E8F5E9 100%);
  border-color: rgba(17, 153, 142, 0.25);
}

.card-icon-wrapper.icon-m5 {
  background: linear-gradient(135deg, #FFF0ED 0%, #FFE0B2 100%);
  border-color: rgba(255, 94, 98, 0.25);
}

.card-icon-wrapper.icon-m8 {
  background: linear-gradient(135deg, #FFFBE6 0%, #FFF59D 100%);
  border-color: rgba(253, 203, 110, 0.4);
}

.card-icon-wrapper.icon-m12 {
  background: linear-gradient(135deg, #FFF0F0 0%, #FFE0B2 100%);
  border-color: rgba(255, 78, 80, 0.35);
  box-shadow: 0 8px 22px rgba(255, 78, 80, 0.22);
}

.card-icon-wrapper.icon-m20 {
  background: linear-gradient(135deg, #F3E5F5 0%, #FFE0B2 100%);
  border-color: rgba(233, 64, 87, 0.3);
}

.pricing-card-header h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}

.card-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.45;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 0 4px 0;
}

.price-box .currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
}

.price-box .amount {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-box .price-separator {
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 2px;
}

.price-box .unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 4px;
}

.price-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #243b5b;
  line-height: 1.45;
  font-weight: 500;
}

.feat-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(23, 122, 85, 0.12);
  color: #177a55;
  flex-shrink: 0;
  margin-top: 1px;
}

.glow-card .feat-check {
  background: rgba(242, 106, 46, 0.15);
  color: var(--orange);
}

.feat-check .check-icon {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 3;
}

.card-action-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.plan-btn .arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.25s ease;
}

.plan-btn:hover .arrow {
  transform: translateX(4px);
}

.btn-solid-orange {
  background: linear-gradient(135deg, var(--orange), #d5531d);
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(242, 106, 46, 0.26);
  border: none;
}

.btn-solid-orange:hover {
  background: linear-gradient(135deg, #e55c20, #b94212);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 106, 46, 0.38);
}

.btn-outline-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #0d7366 !important;
  gap: 8px;
}

.btn-outline-whatsapp .btn-wa-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-outline-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
}

/* Monthly Section Styling */
.monthly-video-section {
  background: linear-gradient(180deg, rgba(15, 71, 121, 0.02) 0%, rgba(242, 106, 46, 0.04) 50%, rgba(15, 71, 121, 0.02) 100%);
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 60px 0;
}

/* Benefits Grid */
.ai-benefits-section {
  padding: 60px clamp(20px, 4vw, 56px);
  max-width: 1320px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

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

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(16, 35, 61, 0.09);
  border-color: rgba(242, 106, 46, 0.35);
}

.benefit-icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Process Steps Grid */
.ai-process-section {
  padding: 60px clamp(20px, 4vw, 56px);
  max-width: 1320px;
  margin: 0 auto;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 1100px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  transition: transform 0.25s ease;
}

.process-step:hover {
  transform: translateY(-3px);
}

.step-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(242, 106, 46, 0.12);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Overrides for AI Video Creations */
@media (max-width: 992px) {
  .ai-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ai-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ai-hero-features-chips {
    justify-content: center;
  }

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

@media (max-width: 600px) {
  .video-card, .package-card {
    padding: 26px 20px;
  }
}




