/* CSS Variables - Brand Colors */
:root {
    /* E-B Agency Bold Color Scheme */
    --brand-black: #000000;
    --brand-white: #FFFFFF;
    --brand-primary: #000000;
    --brand-secondary: #FFFFFF;
    --brand-accent: #c5ee5b; /* Lime green from the original design */
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-gray: #666666;
    --text-light: #999999;
    --text-muted: #9ca3af;
    --background-light: #FFFFFF;
    --bg-light: #f9fafb;
    --background-secondary: #FAFAFA;
    --border-light: #E5E7EB;
    --star-color: #fbbf24;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--brand-black);
    background: var(--brand-white);
    overflow-x: hidden;
}

/* Custom text selection colors */
::selection {
    background-color: var(--brand-accent);
    color: var(--brand-black);
}

::-moz-selection {
    background-color: var(--brand-accent);
    color: var(--brand-black);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: var(--brand-black);
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInFromLeft 0.6s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 2s ease-in-out infinite;
}

/* Noisy Background */
.gradient-bg {
    content: "";
  position: fixed;
  left: -10rem;
  z-index: 9999;
  top: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  /* background-color: red; */
  background-image: url(noise.png);
  opacity: 0.65;
  pointer-events: none;
  animation: noise 1s steps(2) infinite;
}

@-webkit-keyframes noise {
    to {
      transform: translate3d(-7rem, 0, 0);
    }
  }
  
  @keyframes noise {
    0% {
      transform: translate3d(0, 9rem, 0);
    }
  
    10% {
      transform: translate3d(-1rem, -4rem, 0);
    }
  
    20% {
      transform: translate3d(-8rem, 2rem, 0);
    }
  
    30% {
      transform: translate3d(9rem, -9rem, 0);
    }
  
    40% {
      transform: translate3d(-2rem, 7rem, 0);
    }
  
    50% {
      transform: translate3d(-9rem, -4rem, 0);
    }
  
    60% {
      transform: translate3d(2rem, 6rem, 0);
    }
  
    70% {
      transform: translate3d(7rem, -8rem, 0);
    }
  
    80% {
      transform: translate3d(-9rem, 1rem, 0);
    }
  
    90% {
      transform: translate3d(6rem, -5rem, 0);
    }
  
    to {
      transform: translate3d(-7rem, 0, 0);
    }
  }

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:#0a0a0a;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 8rem 0 12rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.logo-container {
    margin-bottom: 3rem;
}

.hero-logo {
    height: 4rem;
    margin: 0 auto;
    display: block;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-size: 1.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

.highlighted-text {
    position: relative;
    color: white;
    font-weight: 900;
    text-decoration-color: var(--brand-accent);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.underline-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    text-decoration: underline;
    background-color: var(--brand-accent);
    border-radius: 2px;
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-description p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
    max-width: 64rem;
    margin: 0 auto;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background-color: var(--brand-accent);
    color: var(--brand-black);
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: white;
    border: 2px solid #e5e7eb;
    color: #1f2937;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--brand-accent);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 1px solid #d1d5db;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    background: var(--background-light);
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--brand-black);
}

.section p {
    font-size: 1.125rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 2rem 0;
    text-align: center;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Card Styles */
.card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 1.5rem;
}

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

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

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description p {
        font-size: 1.125rem;
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

/* Process Section */
.process-section {
    background: var(--bg-black);
    padding: 5rem 0;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.content-ownership-note{
    color: var(--brand-white);
}

@media (min-width: 1024px) {
    .process-title {
        font-size: 4rem;
        line-height: 1.1;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.process-card {
    background: var(--brand-black);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.process-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon .icon {
    width: 4rem;
    height: 4rem;
    color: var(--brand-accent);
}

.process-card h3 {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.process-card p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
    justify-content: center;
}

.portfolio-item {
    flex: 1;
    min-width: 250px;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .portfolio-grid {
        flex-direction: column;
    }
    
    .portfolio-item {
        min-width: 100%;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.pricing-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-black);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.pricing-text p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

@media (min-width: 1024px) {
    .pricing-text h2 {
        font-size: 4.5rem;
        line-height: 1.1;
    }
}

.pricing-card {
    background: var(--brand-black);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-inner {
    position: relative;
    z-index: 10;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border-radius: 1rem;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.pricing-indicator span {
    font-size: 0.875rem;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 4.25rem;
    font-weight: 800;
    color: #fff;
}

span.month {font-size: 50%; font-weight:400;}

.pricing-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--brand-black);
}

.feature-item span {
    color: white;
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pricing-footer {
    text-align: center;
}

.pricing-note {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.pricing-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.alert-main {
    font-size: 0.75rem;
    color: #fca5a5;
    font-weight: 600;
    margin: 0;
}

.alert-sub {
    font-size: 0.75rem;
    color: #fecaca;
    margin: 0;
}

/* Hide pricing alert for now */
.pricing-alert {
    display: none;
}

/* Trust Logos Section */
.trust-logos-section {
    background: var(--brand-black);
    padding: 4rem 0;
}

.trust-logos-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-logos-section .section-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .trust-logos-section .section-title {
        font-size: 3rem;
    }
}

.trust-logos-section .section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .logos-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.logo-item {
    width: 7.5rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover {
    transform: translateY(-4px);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.faq-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .faq-content h2 {
        font-size: 4rem;
        line-height: 1.1;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question span {
    padding-right: 1rem;
}

.faq-arrow {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.faq-call-card {
    background: var(--brand-black);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    height: fit-content;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-call-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.call-card-inner {
    text-align: center;
}

.call-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.call-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.call-card-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.call-card-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.call-card-inner .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.call-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--brand-black);
    padding: 5rem 0;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .final-cta-card {
        margin: 0 1rem;
        padding: 1.5rem;
        overflow: hidden;
    }
    
    .final-cta-inner {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}

.final-cta-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .final-cta-text h2 {
        font-size: 4rem;
        line-height: 1.1;
    }
}

.cta-subtext {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--brand-accent);
}

@media (min-width: 1024px) {
    .cta-subtext {
        font-size: 2.25rem;
    }
}

.final-cta-card {
    background: var(--brand-black);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.final-cta-inner {
    text-align: center;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.final-cta-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hubspot-embed {
    margin-bottom: 1rem;
}

.hubspot-embed .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Updates */
.footer {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 5rem 0;
}

.footer-content {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-accent {
    width: 4rem;
    height: 0.25rem;
    background: var(--brand-accent);
    border-radius: 2px;
    margin: 0 auto;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact span {
    font-weight: 500;
    color: white;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-accent);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8d448;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 5rem 0;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .testimonials-section .section-title {
        font-size: 3rem;
    }
}

.testimonials-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
    max-width: 32rem;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--star-color);
    font-size: 1.25rem;
}

.testimonial-content {
    color: var(--brand-black);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--text-gray);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
}

.author-name {
    font-weight: bold;
    color: var(--brand-black);
}

.author-role {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Language Selector Styles */
.language-selector {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.language-selector:hover {
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
}

.language-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    min-width: 30px;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-1px);
}

.language-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
}

.language-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for language selector */
@media (max-width: 768px) {
    .language-selector {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.375rem;
        gap: 0.25rem;
    }
    
    .language-btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
        min-width: 26px;
    }
}

/* Ensure language selector doesn't interfere with scroll */
body {
    padding-top: 0;
}

/* Add slight margin to hero section when language selector is present */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    display: block;
    height: 60px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-section::before {
        height: 50px;
    }
}

/* Testimonial Request Page Styles */
.testimonial-header-section {
    background: #0a0a0a;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.header-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.header-logo {
    height: 3rem;
    margin-bottom: 2rem;
}

.header-logo.profile-picture {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .header-title {
        font-size: 3rem;
    }
}

.header-subtitle p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-form-section {
    background: #0a0a0a;
    padding: 3rem 0 5rem;
}

.form-container {
    max-width: 42rem;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

/* Form Styles */
.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--brand-black);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.required-indicator {
    color: #dc2626;
    font-weight: 700;
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--brand-black);
    background: white;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(197, 238, 91, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-help {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.error-message {
    display: none;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 500;
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border: 2px dashed var(--border-light);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--background-light);
    text-align: center;
    gap: 0.5rem;
}

.file-upload-label:hover {
    border-color: var(--brand-accent);
    background: rgba(197, 238, 91, 0.05);
}

.upload-icon {
    width: 3rem;
    height: 3rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.upload-text {
    font-weight: 600;
    color: var(--brand-black);
    font-size: 1rem;
}

.upload-subtext {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    accent-color: var(--brand-accent);
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--brand-black);
    line-height: 1.5;
    cursor: pointer;
    font-weight: 500;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-question {
    font-size: 1rem;
    color: var(--brand-black);
    margin: 0;
    font-weight: 500;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-radio {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    accent-color: var(--brand-accent);
    cursor: pointer;
}

.radio-label {
    font-size: 0.875rem;
    color: var(--brand-black);
    line-height: 1.5;
    cursor: pointer;
    font-weight: 500;
}

@media (min-width: 480px) {
    .radio-options {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Netlify reCAPTCHA Styles */
.form-group [data-netlify-recaptcha="true"] {
    margin: 0 auto;
    text-align: center;
}

/* Form Actions */
.form-actions {
    margin-top: 1rem;
}

.form-actions .btn-primary {
    width: 100%;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 28rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-black);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--brand-black);
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.modal-body {
    padding: 1.5rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
}

.modal-body p {
    color: var(--brand-black);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-submessage {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.modal-submessage a {
    color: var(--brand-black);
    text-decoration: underline;
    font-weight: 500;
}

.modal-submessage a:hover {
    color: var(--brand-accent);
}

.modal-actions {
    padding: 0 1.5rem 1.5rem;
}

.modal-actions .btn-primary {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-header-section {
        padding: 2rem 0 1.5rem;
    }
    
    .header-logo {
        height: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .header-logo.profile-picture {
        width: 8rem;
        height: 8rem;
        margin-bottom: 0.25rem;
    }
    
    .header-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .header-subtitle p {
        font-size: 1.125rem;
    }
    
    .testimonial-form-section {
        padding: 2rem 0 3rem;
    }
    
    .modal-content {
        max-width: 90%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-actions {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Focus States for Accessibility */
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-checkbox:focus-visible,
.form-radio:focus-visible,
.file-upload-label:focus-within {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

.btn-primary:focus-visible,
.modal-close:focus-visible,
.checkbox-label:focus-visible,
.radio-label:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

/* Animation improvements */
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .modal,
    .modal-content,
    .testimonial-card {
        animation: none;
        transition: none;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.thank-you-content {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.thank-you-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.success-icon-large {
    width: 5rem;
    height: 5rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: bounce 1s ease-out 0.3s both;
}

.success-icon-large svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #16a34a;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .thank-you-title {
        font-size: 3rem;
    }
}

.thank-you-message {
    font-size: 1.25rem;
    color: var(--brand-black);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.subscription-mention {
    background: var(--bg-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.mention-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.mention-link {
    color: var(--brand-black);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.mention-link:hover {
    color: var(--brand-accent);
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 480px) {
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
    min-width: 12rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

.thank-you-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thank-you-logo:hover {
    opacity: 1;
}

.logo-image {
    height: 2.5rem;
    filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thank-you-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.125rem;
    }
    
    .subscription-mention {
        padding: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
        min-width: unset;
    }
}

/* Schedule Page Styles */
.schedule-section {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.schedule-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.schedule-header {
    margin-bottom: 3rem;
}

.schedule-logo {
    height: 3rem;
    margin-bottom: 2rem;
}

.schedule-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .schedule-title {
        font-size: 3rem;
    }
}

.schedule-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 42rem;
    margin: 0 auto;
}

.schedule-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.schedule-fallback {
    text-align: center;
}

.schedule-fallback h3 {
    font-size: 1.5rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

.schedule-fallback p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.schedule-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem !important;
}

.schedule-benefits {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    text-align: left;
    margin-bottom: 2rem;
}

.schedule-benefits h3 {
    font-size: 1.5rem;
    color: var(--brand-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--brand-black);
    line-height: 1.6;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.schedule-footer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-note {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

/* HubSpot embed responsive adjustments */
.meetings-iframe-container {
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.meetings-iframe-container iframe {
    width: 100%;
    border: none;
    border-radius: 0.5rem;
    max-width: 100%;
}

/* Responsive design for schedule page */
@media (max-width: 768px) {
    .schedule-section {
        padding: 2rem 0;
    }
    
    .schedule-logo {
        height: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .schedule-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .schedule-subtitle {
        font-size: 1.125rem;
    }
    
    .schedule-card {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
        min-height: 400px;
    }
    
    .schedule-benefits {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .schedule-footer {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .meetings-iframe-container {
        min-height: 400px;
        margin: 0 -0.5rem;
        padding: 0;
    }
}

/* Hero Visual Elements */
.hero-visual {
    margin: 3rem 0 0;
    display: flex;
    justify-content: center;
}

.signage-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    animation: float 4s ease-in-out infinite;
}

.preview-screen {
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 1rem;
    border: 8px solid #374151;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.screen-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(197, 238, 91, 0.3);
    border-radius: 0.5rem;
    pointer-events: none;
}

.screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.content-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 90%;
}

.content-slide.active {
    opacity: 1;
}

.content-slide h4 {
    color: var(--brand-accent);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.content-slide p {
    color: white;
    font-size: 0.875rem;
    margin: 0;
}

.slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.625rem;
}

.video-indicator {
    background: #ef4444;
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.625rem;
    animation: pulse 2s ease-in-out infinite;
}

.slide-counter {
    color: var(--brand-accent);
    font-weight: 600;
    font-size: 0.625rem;
}

.slide-progress {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.slide-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--brand-accent);
    border-radius: 2px;
    width: 0%;
    animation: progressBar 3s linear infinite;
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

.preview-stand {
    width: 60px;
    height: 30px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    position: relative;
}

.preview-stand::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 15px;
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    border-radius: 50px;
}

@media (max-width: 768px) {
    .signage-preview {
        transform: none;
        animation: none;
    }

    .preview-screen {
        width: 250px;
        height: 150px;
    }

    .content-slide h4 {
        font-size: 1rem;
    }

    .content-slide p {
        font-size: 0.75rem;
    }
}

/* Digital Signage Plans Page Styles */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* New Pricing Card Styles */
.pricing-card {
    background: white;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--brand-accent);
}

.pricing-card.featured {
    border-color: var(--brand-accent);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent);
    color: var(--brand-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-black);
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-tagline {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.features-comparison {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f9fafb;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-check {
    font-size: 1rem;
    font-weight: 600;
}

.feature-check.included {
    color: #10b981;
}

.feature-check.excluded {
    color: #d1d5db;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-cta {
    background: var(--brand-accent);
    color: var(--brand-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.pricing-cta:hover {
    background: #b8e557;
    transform: translateY(-2px);
}

.pricing-notes {
    text-align: center;
}

.pricing-notes p {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

/* Gradient Pricing Cards */
.gradient-card {
    border-radius: 1.5rem;
    padding: 2px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.gradient-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Gradient backgrounds */
.self-managed-gradient {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
}

.managed-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.fullservice-gradient {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.card-inner {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Updated plan header styles for gradient cards */
.gradient-card .plan-header {
    margin-bottom: 2rem;
    border-bottom: none;
    padding-bottom: 0;
}

.gradient-card .plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.gradient-card .plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    min-height: 4rem;
    align-items: center;
}

.gradient-card .price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-black);
    line-height: 1;
}

.gradient-card .price-period {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.gradient-card .plan-subtext {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 1.2rem;
}

.gradient-card .plan-tagline {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

/* Plan features for gradient cards */
.gradient-card .plan-features {
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.gradient-card .feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.gradient-card .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gradient-card .checkmark {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Plan footer and CTA */
.gradient-card .plan-footer {
    margin-top: auto;
}

.gradient-card .plan-cta {
    background: var(--brand-accent);
    color: var(--brand-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.gradient-card .plan-cta:hover {
    background: #b8e557;
    transform: translateY(-2px);
}

.gradient-card .plan-disclaimers {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.gradient-card .disclaimer-item {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.4;
}

.gradient-card .disclaimer-item:last-child {
    margin-bottom: 0;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent);
    color: var(--brand-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.plan-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
}

.plan-tagline {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand-black);
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 600;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--brand-black);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.plan-guarantee {
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    border: 1px solid var(--border-light);
}

.plan-guarantee strong {
    color: var(--brand-black);
}

/* Price note styling */
.price-note {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Cancel note styling */
.cancel-note {
    background: var(--brand-accent);
    color: var(--brand-black);
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.plan-cta {
    width: 100%;
    padding: 1.5rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-transform: none;
    letter-spacing: 0.025em;
}

.plan-card.featured .plan-cta {
    background: var(--brand-black);
    color: var(--brand-accent);
}

.plan-card.featured .plan-cta:hover {
    background: var(--brand-black);
    transform: scale(1.02);
}

/* Plan Disclaimers */
.plan-disclaimers {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.disclaimer-item {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    text-align: center;
}

.disclaimer-item:last-child {
    margin-bottom: 0;
}

/* Slide animation for screen content */
@keyframes slideContent {
    0% { opacity: 1; }
    33% { opacity: 0; }
    66% { opacity: 0; }
    100% { opacity: 1; }
}

/* Comparison Table Styles */
.comparison-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.comparison-table {
    max-width: 60rem;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--brand-black);
    color: white;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background: var(--bg-light);
}

.table-cell {
    padding: 1.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.feature-header {
    justify-content: flex-start;
    font-weight: 700;
    font-size: 1.125rem;
}

.plan-header {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--brand-accent);
}

.feature-name {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--brand-black);
}

/* Enhanced checkmarks and icons in comparison table */
.table-cell:not(.feature-header):not(.feature-name) {
    font-weight: 600;
}

.table-row .table-cell:nth-child(2) {
    color: #10b981; /* Green for Full-Service */
}

.table-row .table-cell:nth-child(3) {
    color: #374151; /* Dark gray for Managed */
}

.table-row .table-cell:nth-child(4) {
    color: #f59e0b; /* Orange for Self-Managed */
}

.feature-name {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--brand-black);
}

.table-cell:not(.feature-header):not(.feature-name) {
    font-weight: 500;
}

/* Contact Options */
.contact-options {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contact-info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Comparison Table */
@media (max-width: 768px) {
    .comparison-table {
        display: block;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .table-header {
        display: none;
    }

    .table-row {
        display: block;
        background: white;
        margin-bottom: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-light);
    }

    .table-cell {
        display: block;
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid var(--border-light);
    }

    .table-cell:last-child {
        border-bottom: none;
    }

    .feature-name {
        font-weight: 700;
        color: var(--brand-black);
        font-size: 1rem;
        background: var(--bg-light);
        margin: -1rem -1rem 0 -1rem;
        padding: 1rem;
        border-radius: 0.5rem 0.5rem 0 0;
    }

    .table-cell:not(.feature-name)::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-gray);
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
    max-width: 32rem;
    margin: 0 auto;
}