/* ===================================
   Destination Tools Marketing Website
   Custom Styles
   =================================== */

/* Root Variables - Destination Tools Brand Colors */
:root {
    --primary-color: #6cbe45;
    --primary-dark: #5aa637;
    --secondary-color: #ee2624;
    --accent-color: #ee2624;
    --accent-gradient: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    --success-color: #10B981;
    --background-color: #F9FAFB;
    --text-color: #1F2937;
    --text-muted: #6B7280;
    --border-color: #E5E7EB;
    --white: #ffffff;
}

/* Base Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-brand img.brand-logo {
    height: 40px;
    width: auto;
}

.navbar-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button {
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 190, 69, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    color: var(--white);
    padding: 6rem 0;
    margin-top: -1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta .btn {
    margin-bottom: 1rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.trust-item .material-icons {
    font-size: 1.2rem;
}

.hero-image {
    padding: 2rem;
}

.mockup-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-placeholder .material-icons {
    font-size: 6rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ee2624 0%, #c51f1d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.problem-icon .material-icons {
    font-size: 2rem;
    color: var(--white);
}

.problem-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cost-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ee2624;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cost-highlight h3 {
    color: #ee2624;
    margin-bottom: 1.5rem;
}

.cost-highlight ul {
    list-style: none;
    padding: 0;
}

.cost-highlight li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cost-highlight li:last-child {
    border-bottom: none;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
}

.solution-benefits {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item .material-icons {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.feature-icon .material-icons {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.feature-impact {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.impact-stat {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-link:hover {
    transform: translateX(5px);
}

/* Benefits by Audience Section */
.benefits-section {
    padding: 5rem 0;
}

.audience-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-icon .material-icons {
    font-size: 2.5rem;
    color: var(--white);
}

.audience-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.audience-challenge {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffc107;
}

.audience-benefits h5 {
    margin-bottom: 1rem;
}

.audience-benefits ul {
    list-style: none;
    padding: 0;
}

.audience-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.audience-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.audience-roi {
    background: var(--background-color);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
}

/* Pricing Section */
.pricing-teaser-section, .pricing-cards-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge, .featured-ribbon {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features .material-icons {
    color: var(--success-color);
    font-size: 1.2rem;
}

.best-for {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Pricing Detailed Cards */
.pricing-card-detailed {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card-detailed.featured {
    border: 3px solid var(--primary-color);
}

.pricing-tier-header {
    background: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-tier-header h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.tier-price {
    margin: 1rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.price-period {
    font-size: 1rem;
    opacity: 0.9;
}

.tier-tagline {
    margin: 0;
    opacity: 0.95;
}

.pricing-tier-features {
    padding: 2rem;
    flex-grow: 1;
}

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

.pricing-tier-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-tier-features li:last-child {
    border-bottom: none;
}

.pricing-tier-features .material-icons {
    color: var(--success-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.limitations-list {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tier-roi {
    background: var(--background-color);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.pricing-tier-cta {
    padding: 2rem;
    background: var(--background-color);
}

.tier-best-for {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Comparison Table */
.comparison-table-section {
    padding: 5rem 0;
}

.comparison-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    color: var(--white);
}

.comparison-table thead th {
    padding: 1.5rem 1rem;
    text-align: center;
    border: none;
    font-weight: 600;
}

.comparison-table tbody td {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

.featured-column {
    background: rgba(108, 190, 69, 0.05);
    font-weight: 600;
}

.comparison-table .material-icons.check {
    color: var(--success-color);
}

/* Success Stories Section */
.success-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.success-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.success-metric {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 12px;
    color: var(--white);
}

.metric-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
}

.metric-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.success-results ul {
    list-style: none;
    padding: 0;
}

.success-results li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.success-results li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-guarantee {
    font-size: 0.95rem;
    opacity: 0.95;
}

.cta-guarantee .material-icons {
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Features Detail Page */
.page-header {
    background: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

.features-detail-section {
    padding: 5rem 0;
}

.feature-detail {
    margin-bottom: 4rem;
}

.feature-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-detail-icon .material-icons {
    font-size: 3rem;
    color: var(--white);
}

.feature-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.problems-solved {
    list-style: none;
    padding: 0;
}

.problems-solved li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ee2624;
}

.problems-solved li:before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.business-impact {
    list-style: none;
    padding: 0;
}

.business-impact li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.business-impact li:before {
    content: "📈";
    position: absolute;
    left: 0;
}

.feature-divider {
    margin: 4rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Feature Summary Cards (for condensed features) */
.feature-summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6cbe45 0%, #5aa637 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.feature-summary-icon .material-icons {
    font-size: 2rem;
    color: var(--white);
}

.feature-summary-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.compact-list {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
}

.compact-list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.compact-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.impact-highlight {
    background: var(--background-color);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-title .material-icons {
    font-size: 2rem;
    color: var(--primary-color);
}

.faq-section .card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.faq-section .card-header {
    background: var(--white);
    border-bottom: none;
    padding: 0;
}

.faq-section .btn-link {
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.faq-section .btn-link:hover {
    color: var(--primary-color);
}

.faq-section .card-body {
    padding: 1.5rem;
    color: var(--text-muted);
}

.pricing-faq-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-buttons .btn {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer img {
    max-width: 200px;
    height: auto;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Button Styles */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 190, 69, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
    }
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Utilities */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}
