/* ============================================
   HOMEPAGE STYLES
   FXiation Digital
   ============================================ */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
    animation: pulse-ring 2s ease-out infinite;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(13, 148, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.hero h1 {
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 .highlight {
    color: var(--teal);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

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

.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

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

@media (max-width: 900px) {
    .hero-visual {
        display: none;
    }
}

/* Hero Social Proof (inline version) */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.hero-social-proof .social-proof-text {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

.hero-social-proof .social-proof-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-social-proof .social-proof-location svg {
    width: 14px;
    height: 14px;
    color: var(--teal);
}

@media (max-width: 600px) {
    .hero-social-proof {
        gap: 12px;
    }

    .hero-social-proof .social-proof-text {
        width: 100%;
    }
}

/* Social Proof Strip */
.social-proof {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 24px 0;
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-proof-text {
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 500;
}

.social-proof-locations {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-proof-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.social-proof-location svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

/* Problem Section (Sound Familiar) */
.problem {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.problem h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

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

.problem-grid .problem-card:last-child {
    grid-column: 1 / -1;
    text-align: center;
}

.problem-grid .problem-card:last-child .icon {
    margin: 0 auto 16px;
}

.problem-grid .problem-card:last-child p {
    max-width: 600px;
    margin: 0 auto;
}

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

    .problem-grid .problem-card:last-child {
        grid-column: auto;
    }
}

.problem-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all var(--transition-medium);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--teal);
    transform: translateY(-4px);
}

.problem-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform var(--transition-medium);
}

.problem-card:hover .icon {
    transform: translateY(-4px) scale(1.05);
}

.problem-card .icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
}

.problem-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--gray-400);
    font-size: 1rem;
}

.problem-closing {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-closing p {
    font-size: 1.25rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Solution Section */
.solution {
    background: var(--white);
}

.solution-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.solution-header p {
    font-size: 1.125rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.solution-card {
    padding: 40px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

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

.solution-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.solution-card .number {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 16px;
}

.solution-card h3 {
    color: var(--navy-deep);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 1rem;
    color: var(--gray-500);
}

/* What We Build Section (Services/Examples) */
.services {
    background: var(--gray-50);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 48px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

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

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

.example-card {
    padding: 28px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal) 0%, var(--navy) 100%);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.example-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

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

.example-card .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 10px;
    margin-bottom: 16px;
    transition: transform var(--transition-medium);
}

.example-card:hover .icon {
    transform: translateY(-4px) scale(1.05);
}

.example-card .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
}

.example-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy-deep);
}

.example-card p {
    font-size: 0.925rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.services-note {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    border: 2px dashed var(--gray-200);
}

.services-note p {
    font-size: 1.0625rem;
    color: var(--gray-600);
}

.services-note strong {
    color: var(--navy-deep);
}

.process-note {
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 2px dashed var(--gray-200);
    margin-top: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transition: all var(--transition-medium);
}

.process-note:hover {
    border-color: var(--teal);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.02), var(--gray-50));
}

.process-note p {
    font-size: 1.0625rem;
    color: var(--gray-600);
}

.process-note strong {
    color: var(--navy-deep);
}

/* Process Section */
.process {
    background: var(--white);
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    opacity: 0.2;
}

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

    .process-steps::before {
        display: none;
    }
}

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

.process-step {
    text-align: center;
    transition: transform var(--transition-medium);
}

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

.process-step .step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-deep);
    position: relative;
    z-index: 1;
    transition: all var(--transition-medium);
}

.process-step:hover .step-number {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* Case Study Section */
.case-study {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.case-study-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(13, 148, 136, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.case-study-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .case-study-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.case-study-content h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.case-study-content .subtitle {
    font-size: 1.125rem;
    color: var(--teal-light);
    margin-bottom: 32px;
}

.case-study-content h4 {
    color: var(--gray-300);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    margin-top: 28px;
}

.case-study-content h4:first-of-type {
    margin-top: 0;
}

.case-study-content p {
    color: var(--gray-300);
    font-size: 1rem;
}

.case-study-content ul {
    list-style: none;
    margin-top: 12px;
}

.case-study-content ul li {
    color: var(--gray-300);
    font-size: 1rem;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.case-study-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

.case-study-results {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.case-study-results h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 32px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 500px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.result-item {
    text-align: center;
}

.result-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 8px;
}

.result-item .number.counting {
    animation: countUp 0.6s ease forwards;
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.result-item .label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.case-study-quote {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.case-study-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-300);
}

.case-study-quote .attribution {
    margin-top: 12px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--gray-400);
}

/* Case Study Carousel */
.carousel-container {
    position: relative;
}

.carousel-slides {
    position: relative !important;
    min-height: 500px;
}

.carousel-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.carousel-slide.active {
    position: relative !important;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-dot.active {
    background: var(--teal-light);
    transform: scale(1.2);
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--teal);
    border-color: var(--teal);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .carousel-slides {
        min-height: auto;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* FAQ Section */
.faq {
    background: var(--gray-50);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-medium);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--teal);
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: 12px 0 0 12px;
}

.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-400);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    stroke: var(--teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-inner {
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--gray-600);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Founders Section */
.founders {
    background: var(--gray-50);
}

.founders-header {
    text-align: center;
    margin-bottom: 60px;
}

.founders-header h2 {
    color: var(--navy-deep);
    margin-bottom: 16px;
}

.founders-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

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

.founder-card {
    text-align: center;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform var(--transition-medium);
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.founder-card:hover .founder-image::after {
    opacity: 1;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-image-placeholder {
    color: var(--gray-400);
    font-size: 0.75rem;
    text-align: center;
    padding: 20px;
}

.founder-card h3 {
    color: var(--navy-deep);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.founder-card .founder-title {
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.founder-card .founder-bio {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* How We Work / Pricing Section */
.how-we-work {
    background: var(--gray-50);
}

.how-we-work-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-we-work-header h2 {
    margin-bottom: 16px;
}

.how-we-work-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

@media (max-width: 900px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.pricing-tier {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.pricing-tier:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.1);
}

.pricing-tier.popular {
    border-color: var(--teal);
    position: relative;
}

.pricing-tier.popular::before {
    content: 'Recommended';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier h3 {
    color: var(--navy-deep);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.pricing-tier > p {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 24px;
    min-height: 48px;
}

.pricing-tier h4 {
    color: var(--navy-deep);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    margin-top: 24px;
}

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

.pricing-tier ul li {
    color: var(--gray-600);
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.pricing-tier ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

.pricing-tier .tier-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.pricing-tier .tier-examples {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 16px;
}

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

.pricing-cta p {
    color: var(--gray-600);
    font-size: 1.125rem;
    font-style: italic;
}

/* CTA / Contact Section */
.cta {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta > .container > .cta-inner > p {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-form {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 48px;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

    .contact-form {
        padding: 32px 24px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    font-family: var(--font-display);
    font-size: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
}

.form-note p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Sticky CTA (Book a Call) */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
    transition: all var(--transition-fast);
}

.sticky-cta a:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(13, 148, 136, 0.5);
}

.sticky-cta svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.5);
}

/* Back to Top Button */
#backToTop {
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
    transition: all var(--transition-fast) !important;
}

#backToTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(13, 148, 136, 0.4);
}

/* GSAP Animation Styles */
/* GSAP-controlled elements start invisible until GSAP takes over */
.animate-on-scroll {
    opacity: 0;
}

/* Scroll Animations -- CSS fallback only when GSAP is unavailable */
body.no-gsap .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

body.no-gsap .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInWithShadow 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Stagger Animation for Cards -- CSS fallback only */
body.no-gsap .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
body.no-gsap .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
body.no-gsap .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
body.no-gsap .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
body.no-gsap .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
body.no-gsap .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Enhanced Navigation Links */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Smooth Icon Animation */
.icon {
    transition: transform var(--transition-medium);
}

/* Loading Skeleton for Form */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Enhanced Mobile Menu Animation */
@media (max-width: 900px) {
    .nav-links {
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
}
