:root {
  --color-primary: #C29E6A;
  --color-dark: #000000;
  --color-light: #f5f3ef;
  --color-white: #f9fafb;
  --color-text-dark: #000000;
  --color-text-light: #f9fafb;
  --color-text-muted: #666666;
  --font-primary: 'Anta', sans-serif;
  --font-secondary: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-secondary);
  background-color: var(--color-light);
  color: var(--color-text-dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

section {
  width: 100%;
  padding: 40px 0;
  position: relative;
  scroll-margin-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  margin: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-secondary {
  border: 1px solid var(--color-text-muted);
  background-color: transparent;
  color: var(--color-text-light);
  opacity: 0.8;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

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

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 60%);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.btn:active::after {
  animation: btn-ripple 0.5s ease-out;
}

@keyframes btn-ripple {
  from {
    transform: scale(0);
    opacity: 0.4;
  }
  to {
    transform: scale(1.25);
    opacity: 0;
  }
}

.btn img {
  transition: transform 0.18s ease, opacity 0.18s ease;
  transform-origin: center;
}

.btn:hover img,
.btn:focus-visible img {
  transform: translateX(6px) rotate(-3deg);
}

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

  .reveal,
  .reveal.in-view {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-pulse,
  .scroll-cue,
  .btn::after,
  .plan-badge,
  .timeline-line {
    animation: none !important;
  }

  .caret {
    animation: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.25s; }
.reveal-delay-2 { transition-delay: 0.5s; }
.reveal-delay-3 { transition-delay: 0.65s; }
.reveal-delay-4 { transition-delay: 0.8s; }

.typewriter {
  position: relative;
  display: inline-block;
  white-space: pre-wrap;
}

.typewriter-text {
  display: inline;
  line-height: 1.4;
}

.caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--color-text-dark);
  vertical-align: text-bottom;
  animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.highlight {
  color: var(--color-primary);
}

.custom-prestige {
  color: var(--color-primary) !important;
}

.feature-title-custom {
  color: var(--color-text-dark);
}

.feature-success-custom {
  color: var(--color-primary);
}

.text-color {
  color: #000000;
}

.svg-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg)
    brightness(100%) contrast(100%) !important;
}

  .plan-cta .btn img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(24%) saturate(1012%) hue-rotate(7deg)
      brightness(95%) contrast(90%);
  }

/* Header */
.main-header {
  position: relative;
  top: 0;
  z-index: 20;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.main-header.is-sticky {
  position: sticky;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.main-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  min-height: 80px;
}

.logo img {
  width: 224px;
  height: 100px;
}

.main-nav {
  z-index: 5;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 42px;
  color: var(--color-white);
}

.main-nav a {
  font-size: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  position: relative;
}

.main-nav a:hover {
  opacity: 1;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.main-nav a.active {
  opacity: 1;
}

.main-nav a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-toggle {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

body.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::before {
  transform: rotate(90deg);
  top: 0;
}

body.nav-open .nav-toggle span::after {
  opacity: 0;
  transform: translateX(-6px);
}

/* Hero */
.hero-section {
  position: relative;
  background-color: #05403E;
  background-image: url('images/Cover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 0 10px;
}

.hero-content {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding: 0 16px;
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.5;
  letter-spacing: 1px;
  max-width: 1250px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #fdfdfd;
  max-width: 507px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-pulse {
  position: relative;
  animation: hero-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-pulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 158, 106, 0.35); }
  70% { box-shadow: 0 0 0 16px rgba(194, 158, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 158, 106, 0); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  opacity: 0.9;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: cue-bounce 1.8s ease-in-out infinite;
}

.cue-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(194, 158, 106, 0.2);
}

@keyframes cue-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* What we do */
.what-we-do-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  padding-top: 10px;
  padding-bottom: 10px;
}

.what-we-do-header {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.what-we-do-header h2 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 80px;
  font-weight: 400;
  max-width: 702px;
}

.what-we-do-cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 82px;
}

.what-we-do-cards .card {
  background-color: #d9d9d9;
  border-radius: 20px;
  height: 631px;
  position: relative;
  overflow: hidden;
}

/* Features */
.features-section {
  background-color: var(--color-light);
  padding-top: 100px;
  padding-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

  .features-image-placeholder {
    width: 100%;
    background-image: url('images/Digital_Currency.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    aspect-ratio: 4 / 5;
    min-height: 420px;
    max-height: 780px;
}

.features-content {
  padding-left: 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.features-content h2 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 50px;
  font-weight: 400;
}

.features-description {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-muted);
  max-width: 582px;
  margin-top: 20px;
  max-height: 748px;
  overflow-y: auto;
  padding-right: 8px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 61px;
  margin-top: 97px;
  margin-bottom: 49px;
}

.feature-item h4 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 13px;
}

.feature-item p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-muted);
}

/* Workflow */
.workflow-section {
  background-color: var(--color-light);
}

.workflow-header {
  text-align: center;
  margin-bottom: 100px;
}

.workflow-header h2 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.3;
  margin-top: 24px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #cecece;
  opacity: 0.45;
  transform: translateX(-50%);
  transition: opacity 0.6s ease;
}

.timeline-line.line-in-view {
  opacity: 1;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 80px;
}

.timeline-item.item-left .timeline-content {
  text-align: right;
  align-items: flex-end;
}

.timeline-item.item-right {
  grid-template-columns: 1fr 100px 1fr;
}

.timeline-item.item-right .timeline-content {
  grid-column: 3;
  text-align: left;
  align-items: flex-start;
}

.timeline-item.item-right .timeline-milestone {
  grid-column: 2;
}

.timeline-item.item-right .timeline-image-placeholder {
  grid-column: 1;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-content h3 {
  font-size: 24px;
}

.timeline-content p {
  color: var(--color-text-muted);
  max-width: 440px;
}

.timeline-milestone {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.milestone-circle,
.milestone-circle-after {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Anta', sans-serif;
  font-size: 60px;
}

.milestone-circle {
  background-color: rgb(0, 0, 0);
  color: #c29e6a;
}

.milestone-circle-after {
  background-color: #c29e6a;
  color: #000000;
}

.timeline-image-placeholder {
  height: 500px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.placeholder-1{
  background-image: url('images/01.jpg');
}

.placeholder-2{
  background-image: url('images/02.jpg');
}

.placeholder-3{
  background-image: url('images/03.jpg');
}

.placeholder-4{
  background-image: url('images/04.jpg');
}

.timeline-image-placeholder::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 30px;
  border: 1px solid rgba(102, 102, 102, 0.1);
  z-index: -1;
}

/* Services */
.services-section {
  background-color: #000000;
  color: #ffffff;
}

.services-section * {
  color: #ffffff;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.services-title-area {
  max-width: 550px;
}

.services-title-area h2 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 50px;
  background-color: rgba(102, 102, 102, 0.6);
  border: 1px solid rgba(102, 102, 102, 0.6);
}

.teleprompter{
    background-image: url('images/Tele.png'), url('images/Tele.png');
    background-size: cover;
    background-position: center;
    padding: 200px;
}

.service-card {
  background-color: #000000;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.service-card p {
  color: var(--color-white);
  font-size: 16px;
  margin: 0;
}

/* Projects */
.projects-section {
  background-color: #000000;
  color: #ffffff;
}

.projects-section * {
  color: #ffffff;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.projects-title-area {
  max-width: 1050px;
}

.projects-title-area h2 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.3;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.projects-card {
  background-color: var(--color-white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 1px solid rgba(0, 0, 0, 0.18);
}

.projects-card:first-child {
  border-left: none;
}

.projects-icon {
  width: 80px;
  height: 80px;
}

.projects-card h3 {
  font-size: 24px;
  color: #000000;
}

.projects-card p {
  color: #000000;
  font-size: 16px;
  flex-grow: 1;
}

.projects-card.active {
  position: relative;
}

.projects-card.active .btn {
  padding: 15px 25px;
}

.projects-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Pricing */
.pricing-section {
  padding-top: 10px;
  padding-bottom: 50px;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 45px;
}

.pricing-title-area h2 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 80px;
  font-weight: 400;
  margin-top: 10px;
}

.pricing-plans {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.plan-card {
  background-color: rgba(102, 102, 102, 0.1);
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.plan-card.highlighted-plan {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.plan-card.highlighted-plan p,
.plan-card.highlighted-plan .plan-features {
  color: black;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.plan-details h3 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 29px;
}

.plan-details p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text-light);
  opacity: 0.8;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

  .plan-features svg {
    fill: #000 !important;
    stroke: #000 !important;
  }
  
.plan-features img {
  filter: brightness(0) saturate(100%) !important;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 16px;
    text-align: left;
  }

.plan-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}


.premium-plan-price {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: 34px;
  font-weight: 400;
  align-self: stretch;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.premium-plan-prefix {
font-family: var(--font-primary);
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 400;
  align-self: stretch;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 35px;
}

.premium-plan-amount {
  font: inherit;
  color: inherit;
}

.premiumPricing-section svg {
  fill: #c29e6a !important;
  stroke: #c29e6a !important;
}

.premiumPricing-section .plan-features img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(28%) saturate(629%) hue-rotate(7deg) brightness(90%) contrast(88%) !important;
}
.plan-price {
  font-family: var(--font-primary);
  color: white;
  font-size: 34px;
  font-weight: 400;
}

/* Footer */
.footer-section {
  background-color: var(--color-white);
  color: var(--color-dark);
  padding-top: 100px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 20px;
}

.cta-text h2 {
  font-size: clamp(42px, 8vw, 96px);
  line-height: 1.2;
  font-weight: 400;
}

.cta-text p {
  font-size: 16px;
  line-height: 26px;
  max-width: 448px;
  margin-top: 20px;
  margin-bottom: 0;
  color: black;
}

.cta-text .cta-text-right {
  text-align: right;
  margin-top: -40px;
}

.footer-quick-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-cta-btn {
  min-width: 160px;
  color: black;
}

.footer-top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(194, 158, 106, 0.6), rgba(194, 158, 106, 0), rgba(194, 158, 106, 0.6));
}

.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  margin-top: 129px;
}

.cta-image-placeholder {
  width: 460px;
  height: 500px;
  background-color: #d9d9d9;
  border-radius: 20px;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--color-text-muted);
  opacity: 0.7;
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  padding: 75px 0;
  flex-wrap: wrap;
  gap: 40px;
}

.link-column h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.link-column h4:first-letter {
  color: var(--color-primary);
}

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

.link-column li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
  transition: opacity 0.3s ease;
}

.link-column li a:first-letter {
  text-transform: capitalize;
}

.link-column li:first-child a {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
}

.footer-bottom p {
  font-size: 16px;
  line-height: 26px;
}

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

.footer-socials a img {
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-header,
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-header-container {
    flex-wrap: wrap;
    gap: 14px;
  }

  .main-header-container {
    padding: 16px 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  body.nav-open .main-nav {
    display: block;
  }

  .hero-content {
    min-height: 250px;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .what-we-do-header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
  }

  .what-we-do-cards {
    grid-template-columns: 1fr;
  }

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

  .features-content {
    padding-left: 0;
    margin-top: 40px;
    height: auto;
  }

  .timeline-line {
    left: 20px;
    width: 3px;
    background-color: transparent;
    background-image: radial-gradient(#c29e6a 1.2px, transparent 1.5px);
    background-size: 6px 10px;
    opacity: 0.5;
  }

  .timeline-item,
  .timeline-item.item-right {
    grid-template-columns: 80px 1fr;
    gap: 30px;
  }

  .timeline-milestone {
    grid-column: 1;
    justify-content: flex-start;
    order: 0;
  }

  .timeline-content {
    grid-column: 2;
    align-items: flex-start !important;
    text-align: left !important;
    order: 1;
  }

  .timeline-item .timeline-image-placeholder {
    display: block;
    grid-column: 1 / -1 !important;
    width: 100%;
    height: 220px;
    margin-top: 16px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    order: 2;
  }

  .timeline-item.item-right .timeline-content,
  .timeline-item.item-right .timeline-milestone {
    grid-column: auto;
  }

  .milestone-circle,
  .milestone-circle-after {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .plan-card {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .plan-features {
    align-items: flex-start;
  }

  .teleprompter {
    padding: 120px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.3;
  }

  h3 {
    font-size: clamp(20px, 7vw, 26px);
    line-height: 1.35;
  }

  /* Ensure section-specific headings respect mobile sizing */
  .features-content h2,
  .services-title-area h2,
  .projects-title-area h2,
  .pricing-title-area h2,
  .premiumPricing-title-area h2,
  .team-title-area h2,
  .workflow-header h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.3;
  }

  .hero-section {
    background-image: url('images/Cover_Mobile.jpg'), url('images/Cover.jpg');
    background-size: cover;
    background-position: center;
  }

  .hero-content {
    margin-top: 20px;
    min-height: 180px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .scroll-cue {
    bottom: 16px;
  }

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

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

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

  .services-grid {
    padding: 32px;
  }

  .teleprompter {
    padding: 110px;
  }

  .cta-text h2 {
    font-size: 14vw;
  }

  .cta-image-placeholder {
    width: 100%;
    height: 300px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
  }

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

  .footer-quick-actions {
    width: 100%;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .projects-card,
  .plan-card {
    padding: 32px 24px;
  }

  .projects-grid {
    gap: 2px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 12px;
  }

  .btn {
    width: 100%;
  }

  .hero-content {
    gap: 16px;
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
}
/* Team / Pricing */
.team-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  margin-top: -80px;
  padding-top: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.team-member-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  border: 2px solid rgba(194, 158, 106, 0.4);
  position: relative;
}

.member-photo {
  height: 600px;
  border: 1px solid #c29e6a;
  background-color: rgba(194, 158, 106, 0.8);
  border-bottom: 0 !important;
  border-radius: 20px 20px 0 0;
}

.member-info {
  padding: 30px;
  background: #000000;
  text-align: center;
}

.member-info h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.member-info p {
  font-size: 16px;
}

.pricing-title {
  color: white;
}

.plan-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(194, 158, 106, 0.95), rgba(194, 158, 106, 0.75));
  color: #000;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  max-width: calc(100% - 20px);
  text-align: center;
}

.team-member-card:hover,
.team-member-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border-color: rgba(194, 158, 106, 0.6);
}

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

  .team-section {
    border-radius: 40px 40px 0 0;
  }
}

@media (max-width: 768px) {
  .team-section {
    margin-top: -40px;
    padding-top: 60px;
  }

  .member-photo {
    height: auto;
    padding: 18px;
  }

  .member-info {
    padding: 18px;
  }

  .plan-badge {
    top: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
  }
}

/* Premium Pricing */
.premiumPricing-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  margin-top: -80px;
  padding-top: 40px;
}

.premiumPricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 30px;
}

.premiumPricing-card {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.premiumPricing-card h3 {
  font-size: 24px;
  margin: 30px 0;
}

.premiumPricing-card p {
  color: var(--color-text-light);
  opacity: 0.6;
}

.premiumPricing-link-icon-wrapper {
  position: relative;
  width: 24px;
  height: 24px;
}

.premiumPricing-link-icon-bg,
.premiumPricing-link-icon-fg {
  position: absolute;
}

.card-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  min-height: 500px;
  background-image: url(images/Premium_Plan.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.card-2 {
  background-color: rgba(249, 250, 251, 0.15);
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.card-3 {
  background-color: rgba(249, 250, 251, 0.15);
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.card-5 {
  background-color: rgba(249, 250, 251, 0.15);
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.card-7 {
  background-color: rgba(249, 250, 251, 0.15);
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

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

  .card-1,
  .card-4,
  .card-6,
  .card-8 {
    grid-column: span 2;
  }

  .card-2,
  .card-3,
  .card-5,
  .card-7 {
    grid-column: span 1;
  }

  .premiumPricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

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

  .premiumPricing-card {
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 24px;
  }

  .premiumPricing-section {
    margin-top: -40px;
    padding-top: 30px;
  }
}
