:root {
    --bg-dark: #0b0d14;
    --bg-card: #151922;
    --primary: #14b8a6;
    /* Teal */
    --primary-hover: #0d9488;
    --primary-glow: rgba(20, 184, 166, 0.4);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-color: #2d3342;

    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Typography & Utils */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-teal {
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Header */
header {
    padding: 4rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 25px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    width: 100%;
    justify-content: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Hero */
.hero {
    text-align: center;
    padding: 2rem 0 8rem;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
}

/* Rise Section */
.rise-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(145deg, rgba(25, 30, 40, 1) 0%, rgba(11, 13, 20, 1) 100%);
    border: 1px solid var(--border-color);
}

/* Success Stories / Video & Testimonials */
#success-stories {
    padding-top: 0;
    padding-bottom: 3rem;
}

.testimonial-band {
    padding: 3rem 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.video-headline {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card .stars {
    color: #fbbf24;
    /* Amber/Gold */
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card .quote {
    font-size: 1rem;
    font-style: italic;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-card .author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-card .name {
    font-weight: 700;
    color: var(--primary);
}

.testimonial-card .role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rise-card .content {
    flex: 1;
}

.rise-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rise-card .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.rise-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary);
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #f87171;
    /* Soft red for importance */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rise-card .visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rise-logo-placeholder {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 0 50px rgba(20, 184, 166, 0.1);
}

/* Pricing Section */
.pricing-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.1);
}

.highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.2rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-card .card-header .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 1rem 0 0.5rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-card .duration {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.pricing-card .card-body p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pricing-card .card-footer {
    margin-top: 3rem;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Track Feedback Section */
.track-feedback-section {
    padding: 5rem 0;
}

.track-feedback-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.track-feedback-section .section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.track-feedback-section .section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.track-feedback-card {
    padding: 3rem;
    background: linear-gradient(145deg, rgba(25, 30, 40, 1) 0%, rgba(11, 13, 20, 1) 100%);
    border: 1px solid var(--border-color);
}

.track-feedback-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.track-feedback-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.track-feedback-features .feature-list {
    margin-bottom: 2.5rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.industry-tag {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.track-feedback-process .steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.track-feedback-process .step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.track-feedback-process .step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.track-feedback-process .step-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.track-feedback-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.track-feedback-cta .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.track-feedback-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .track-feedback-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .track-feedback-section .section-header h2 {
        font-size: 2.2rem;
    }

    .track-feedback-cta .price {
        font-size: 2.5rem;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* DFY Services Section */
.dfy-card {
    background: linear-gradient(145deg, rgba(20, 20, 25, 1) 0%, rgba(10, 10, 12, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.dfy-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dfy-card .lead {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.dfy-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.dfy-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease;
}

.dfy-list li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.dfy-list .icon-box {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dfy-list .text strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.dfy-list .text span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive updates for new section */
@media (max-width: 900px) {

    /* ... existing content ... */
    .rise-card {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .feature-list li {
        justify-content: center;
    }

    .cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}