@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@600&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500&family=Space+Grotesk:wght@700&display=swap');

:root {
    --color-primary-dark: #0A0A0A;
    --color-primary-light: #1A1A1A;
    --color-accent: #D4C5A5;
    --color-accent-light: #EAE2D1;
    --color-support: #1F3B73;
    --color-success: #10B981;
    --font-headline: 'Clash Display', sans-serif;
    --font-headline-alt: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

body {
    background-color: var(--color-primary-dark);
}

#three-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    outline: none;
}

#scroll-fx-layer {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: transparent;
    transition: backdrop-filter 1.5s cubic-bezier(0.25, 1, 0.5, 1), background 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.font-headline { font-family: var(--font-headline); }
.font-headline-alt { font-family: var(--font-headline-alt); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: var(--font-mono); }

.bg-primary { background-color: var(--color-primary-dark); }
.bg-gradient-primary { background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.85) 100%); }
.text-accent { color: var(--color-accent); }
.border-accent { border-color: var(--color-accent); }

#spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 197, 165, 0.06), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: 999;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../assets/noise.svg');
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

#main-header {
    background: transparent;
    border-bottom: 1px solid transparent;
}
#main-header.scrolled {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(2px);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-link {
    position: relative;
    color: #a0aec0;
    transition: color 0.3s;
}
.nav-link:hover {
    color: white;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lang-btn {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    font-weight: 600;
}
.lang-btn:hover {
    opacity: 1;
}
.lang-btn.active {
    opacity: 1;
    color: var(--color-accent);
}

#mobile-menu {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.320, 1), transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}
#mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-nav-link {
    font-family: var(--font-headline);
    font-size: 2.25rem;
    color: #4a5568;
    transition: color 0.3s ease;
    font-weight: 600;
}
.mobile-nav-link:hover {
    color: #1a202c;
}
.mobile-nav-link.active {
    color: var(--color-support);
}


.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(74, 85, 104, 0.3), transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(212, 197, 165, 0.2), transparent 40%);
    animation: gradient-morph 20s ease infinite;
    z-index: 0;
}

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

@keyframes pulse-cta {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(212, 197, 165, 0.2), 0 0 60px rgba(212, 197, 165, 0.1);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 197, 165, 0.35), 0 0 80px rgba(212, 197, 165, 0.15);
  }
}

.hero-cta {
  position: relative;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  border: none;
  border-radius: 50px;
  color: var(--color-primary-dark);
  overflow: hidden;
  transition: all 0.4s ease-out;
  cursor: pointer;
  animation: pulse-cta 2.5s infinite ease-in-out;
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}
.hero-cta:hover::before {
  transform: translate(-50%, -50%) scale(2);
}
.hero-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 40px rgba(212, 197, 165, 0.35), 0 0 80px rgba(212, 197, 165, 0.15);
  animation: none;
}

.ghost-cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 38px;
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
}
.ghost-cta:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 197, 165, 0.2);
}

.trust-indicator {
    border-left: 2px solid rgba(212, 197, 165, 0.2);
    padding-left: 1rem;
}

.section-title {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: #a0aec0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .section-title { font-size: 3.5rem; }
    .section-subtitle { font-size: 1.25rem; }
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(212, 197, 165, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  z-index: 1;
}
.value-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(60deg, var(--color-support), var(--color-accent), var(--color-primary-light), var(--color-accent));
  background-size: 300% 300%;
  transition: opacity 0.4s ease-out;
  opacity: 0.4;
  animation: gradient-shift 4s ease infinite;
}
.value-card:hover::before {
    opacity: 0.7;
}
.value-card:hover {
  border-color: rgba(212, 197, 165, 0.3);
}
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.icon-wrapper i { width: 32px; height: 32px; }


.portfolio-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease-out;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: radial-gradient(
        300px circle at var(--mouse-x) var(--mouse-y),
        rgba(212, 197, 165, 0.15),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.industry-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}
.view-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-accent);
    font-weight: 600;
    transition: transform 0.3s ease;
}
.view-link:hover {
    transform: translateX(4px);
}

.portfolio-image-container {
    position: relative;
    height: 16rem;
    overflow: hidden;
    border-radius: 0 0 1rem 1rem;
}
.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 8s ease-in-out;
}
.portfolio-card:hover .portfolio-image {
    transform: scale(1.05) translateY(calc(-100% + 16rem));
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1), box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.pricing-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background: radial-gradient(
        350px circle at var(--mouse-x) var(--mouse-y),
        rgba(212, 197, 165, 0.25),
        transparent 70%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-popular {
  position: relative;
  transform: scale(1.03);
  z-index: 2;
  background-color: var(--color-primary-light);
}

.pricing-card.pricing-popular {
    overflow: visible;
}

.pricing-popular::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(45deg, var(--color-accent), var(--color-support), var(--color-accent));
  background-size: 300% 300%;
  animation: gradient-shift 3s ease infinite;
  z-index: -1;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    50% { transform: translateX(-50%) scale(1.05); }
}
.pricing-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-weight: 600;
    color: #e2e8f0;
    transition: all 0.3s ease;
}
.pricing-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
}
.pricing-btn-popular {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-primary-dark);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}
.pricing-btn-popular:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(212, 197, 165, 0.3);
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}
.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.process-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-support) 100%);
  width: 100%;
}

.process-step {
    text-align: center;
    position: relative;
    width: 150px;
}
.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--color-accent);
    transition: all 0.5s ease;
}
.process-timeline.visible .process-step:nth-child(1) .process-icon { transition-delay: 0.2s; }
.process-timeline.visible .process-step:nth-child(2) .process-icon { transition-delay: 0.4s; }
.process-timeline.visible .process-step:nth-child(3) .process-icon { transition-delay: 0.6s; }
.process-timeline.visible .process-step:nth-child(4) .process-icon { transition-delay: 0.8s; }

.process-timeline.visible .process-icon {
    transform: scale(1);
    color: var(--color-accent-light);
    box-shadow: 0 0 25px rgba(212, 197, 165, 0.2);
}

.process-icon i { width: 36px; height: 36px; }
.process-title {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}
.process-desc {
    font-size: 0.875rem;
    color: #a0aec0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}
.star-rating {
  display: flex;
  gap: 4px;
}
.star {
  color: var(--color-accent);
  fill: var(--color-accent);
  opacity: 0;
  transform: scale(0) rotate(-180deg);
}
.testimonial-card.visible .star {
    animation: star-fill 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
.testimonial-card.visible .star:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card.visible .star:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card.visible .star:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card.visible .star:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card.visible .star:nth-child(5) { animation-delay: 0.5s; }

@keyframes star-fill {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    text-align: left;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {\
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem;\
    color: #a0aec0;
    line-height: 1.7;
}

.aurora-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.aurora-bg::before, .aurora-bg::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(74, 85, 104, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: aurora-anim 15s infinite linear;
}
.aurora-bg::after {
    background: radial-gradient(ellipse at center, rgba(212, 197, 165, 0.3) 0%, transparent 70%);
    animation-delay: -7.5s;
}
@keyframes aurora-anim {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); top: 50%; left: 50%; }
    25% { transform: translate(-25%, -75%) scale(1.2) rotate(90deg); }
    50% { transform: translate(-50%, -50%) scale(1) rotate(180deg); }
    75% { transform: translate(-75%, -25%) scale(1.2) rotate(270deg); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}

.form-group { position: relative; margin-bottom: 24px; }
.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}
.form-group select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4C5A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}
.form-input::placeholder { color: #a0aec0; }
.form-input:focus {
  outline: none;
  border-color: rgba(212, 197, 165, 0.5);
  background: rgba(0, 0, 0, 0.3);
}
.input-glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(circle at center, rgba(212, 197, 165, 0.2), transparent 70%);
  pointer-events: none;
}
.form-input:focus ~ .input-glow { opacity: 1; }

.submit-btn {
    position: relative;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border: none;
    border-radius: 12px;
    color: var(--color-primary-dark);
    overflow: hidden;
    transition: all 0.3s ease-out;
    cursor: pointer;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 197, 165, 0.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  animation: pulse-whatsapp 2s infinite;
  z-index: 50;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);\
    animation-play-state: paused;
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

.footer-link {
    color: #a0aec0;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: var(--color-accent);
}

.social-icon {
    color: #a0aec0;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icon:hover {
    color: white;
    transform: rotate(15deg) scale(1.2);
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
    transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Transitions */
.transition-container {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

body.is-loading .transition-container {
    opacity: 0;
    transform: scale(1.03);
}

body.is-exiting .transition-container {
    opacity: 0;
    transform: scale(0.97);
    transition-duration: 0.4s;
}

/* Toggle Switch for Pro Form */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
    flex-shrink: 0;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 28px;
}
.toggle-slider:before {
    position: absolute;\
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 50%;
}
input:checked + .toggle-slider {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}
input:focus + .toggle-slider {
    box-shadow: 0 0 0 2px rgba(212, 197, 165, 0.3);
}
input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Form Page Enhancements */
.form-wrapper {
    position: relative;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

@media (min-width: 768px) {
    .form-wrapper {
        padding: 3rem;
    }
}

.form-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(1rem + 1px);
    background: linear-gradient(45deg, var(--color-accent), var(--color-support), var(--color-accent));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradient-shift 4s ease infinite;
}

.form-wrapper:hover::before {
    opacity: 0.8;
}

.plan-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;\
    margin-bottom: 2.5rem;
    color: #a0aec0;
}
.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.plan-feature:hover {
    color: white;
    border-color: rgba(212, 197, 165, 0.2);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}
.plan-feature i {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 0;
    }
    .process-line {
        top: 0;
        left: 50%;\
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
    }
    .process-line-fill {
        height: 100%;
        width: 100%;
    }
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    .pricing-popular {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2.25rem;
    }
    .pricing-card {
        padding: 2rem;
    }
    .trust-indicator {
        border-left: none;
        border-top: 2px solid rgba(212, 197, 165, 0.2);\
        padding-left: 0;
        padding-top: 1rem;
        text-align: center;
    }
}

/* Reflective Border Effect */
.js-reflective-card {
    position: relative;
    overflow: hidden;
}

.js-reflective-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px solid transparent;
    background: radial-gradient(
        250px circle at var(--reflection-x, -250px) var(--reflection-y, -250px),
        rgba(255, 255, 255, 0.35), 
        rgba(255, 0, 255, 0.15),
        rgba(0, 255, 255, 0.15),
        transparent 70%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
}

.value-card.js-reflective-card::after {
    border-radius: 17px;
}
.portfolio-card.js-reflective-card::after {
    border-radius: 1rem;
}
.pricing-card.js-reflective-card::after {
    border-radius: 1rem;
}

.js-reflective-card.is-reflecting::after {
    opacity: 1;
}

/* Chromatic Text Hover Effect */
.chromatic-text {
    transition: text-shadow 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}
.chromatic-text:hover {
    text-shadow: 
        1px 1px 0 rgba(255, 0, 255, 0.3),
        -1px -1px 0 rgba(0, 255, 255, 0.3);
}

/* Section divider blur effect */
.section-divider::before {
    content: '';
    position: absolute;
    top: -60px;\
    left: 0;
    width: 100%;
    height: 120px;
    background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* About Founder Section */
#about-founder-img {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}
#about-founder .section-title {
    text-align: left;
}
@media (max-width: 767px) {
    #about-founder .section-title {
        text-align: center;
    }
}

/* About Page Styles - Updated for Dark Theme */
.bg-about-hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
}
.text-dark-primary {
    color: white;
}
.text-dark-secondary {
    color: #a0aec0;
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: 0.2rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 9999px;
    background-color: var(--color-accent);
}
.timeline-line {
    position: absolute;
    left: 0.65rem;
    top: 1.25rem;
    bottom: -1.25rem;
    width: 2px;
    background-color: rgba(212, 197, 165, 0.3);
}
.timeline-item:last-child .timeline-line {
    display: none;
}
