/**
 * Convoluted Conceptz - Modern Redesign
 * Color Palette: #D00000, #393E41, #A2AEBB, #FF9F1C, #0D090A
 */

/* ===============================
   1. Reset & Base Styles 
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette */
    --primary: #D00000; /* Red */
    --secondary: #FF9F1C; /* Orange */
    --dark: #0D090A; /* Near Black */
    --medium: #393E41; /* Dark Gray */
    --light: #A2AEBB; /* Light Blue Gray */
    --text-color: #393E41;
    --text-light: #A2AEBB;
    --light-bg: #f7f7f9;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 5px 20px rgba(13, 9, 10, 0.08);
    --shadow-large: 0 10px 30px rgba(13, 9, 10, 0.12);
    
    /* Layout variables */
    --section-padding: 5rem 0;
    --container-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    font-size: 16px;
}

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

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===============================
   2. Typography
   =============================== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

h2:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin: -2rem auto 3rem;
    max-width: 700px;
}

/* ===============================
   3. Layout & Grid
   =============================== */
.container {
    width: var(--container-width);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
    position: relative;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

/* ===============================
   4. Header & Navigation
   =============================== */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    width: 100%;
    margin: 0 auto;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    position: fixed;
    right: -100%;
    top: 80px;
    height: calc(100vh - 80px);
    background-color: #fff;
    flex-direction: column;
    width: 80%;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    z-index: 1000;
}

.nav-links li {
    opacity: 0;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(208, 0, 0, 0.05);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(208, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(13, 9, 10, 0.25);
}

.burger {
    display: block;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-active {
    right: 0;
}

/* Burger animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--primary);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--primary);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===============================
   5. Hero Section 
   =============================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 1.5rem 6rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    z-index: 1;
    margin-bottom: 3rem;
}

.hero h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.cta-button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(208, 0, 0, 0.2);
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(13, 9, 10, 0.25);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--light);
    box-shadow: none;
}

.cta-button.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(208, 0, 0, 0.05);
}

.cta-button i {
    margin-right: 0.5rem;
}

.hero-image {
    display: none;
}

/* ===============================
   6. About Section
   =============================== */
.about {
    background-color: #fff9f4; /* Light warm background */
    position: relative;
    overflow: hidden;
}

.tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 500;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffd6c9; /* Light red/pink */
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ai-visualization {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ai-visualization:hover {
    transform: scale(1.05);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(208, 0, 0, 0.15), rgba(255, 159, 28, 0.15));
}

.founder-info {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.founder-text h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.founder-text p {
    font-style: italic;
    color: var(--text-color);
}

.founder-name {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===============================
   7. Services Section
   =============================== */
.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(162, 174, 187, 0.15);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.75rem;
}

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

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-details {
    margin-top: auto;
    text-align: left;
}

.service-details h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-details ul {
    margin-bottom: 1.5rem;
}

.service-details ul li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-details ul li span {
    font-weight: 600;
    color: var(--dark);
}

.service-benefit {
    background-color: rgba(208, 0, 0, 0.05);
    padding: 1rem;
    border-left: 3px solid var(--primary);
    border-radius: 0 4px 4px 0;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    margin-top: 1.5rem;
}

/* ===============================
   8. Benefits Section
   =============================== */
.benefits {
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(162, 174, 187, 0.15);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.75rem;
}

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

.benefit-card p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ===============================
   9. Pricing Section
   =============================== */
.pricing {
    background-color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(162, 174, 187, 0.15);
}

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

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

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    z-index: 1;
}

.pricing-header {
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(162, 174, 187, 0.15);
    background-color: var(--light-bg);
}

.pricing-header h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-color);
}

.pricing-features {
    padding: 1.5rem;
    flex: 1;
}

.pricing-features ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-features ul li:before {
    content: "✓";
    color: var(--primary);
    margin-right: 0.75rem;
    font-weight: 700;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    text-align: center;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--dark);
}

.pricing-download {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(162, 174, 187, 0.1);
    border-radius: 8px;
}

.pricing-download p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.download-btn {
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(208, 0, 0, 0.2);
    display: inline-block;
}

.download-btn:hover {
    box-shadow: 0 6px 15px rgba(13, 9, 10, 0.25);
    transform: translateY(-3px);
}

/* Add responsive adjustments for pricing grid */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        order: -1;
    }
}

/* ===============================
   10. Testimonials Section
   =============================== */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(162, 174, 187, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-color);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -15px;
    color: rgba(208, 0, 0, 0.1);
    font-size: 2.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid var(--primary);
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-results {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(162, 174, 187, 0.15);
    padding-top: 1.5rem;
}

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

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.partner-logos {
    margin-top: 5rem;
}

.partner-logos h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(162, 174, 187, 0.15);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    color: var(--primary);
}

/* ===============================
   11. FAQ Section
   =============================== */
.faq {
    background-color: #fff;
}

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

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(162, 174, 187, 0.15);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    color: var(--primary);
    font-size: 1.5rem;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

/* ===============================
   12. Contact Section
   =============================== */
#contact {
    background-color: var(--light-bg);
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(162, 174, 187, 0.15);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(208, 0, 0, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

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

.contact-link {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(208, 0, 0, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.contact-cta-box {
    background: #fff;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(162, 174, 187, 0.15);
}

.cta-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.benefits-list i {
    color: var(--secondary);
    margin-right: 0.75rem;
}

.note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===============================
   13. Footer
   =============================== */
footer {
    background-color: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-size: 1.25rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-section:hover h3:after {
    width: 60px;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
}

.footer-section p i {
    margin-right: 10px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-section:hover p i {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links {
        margin: 0;
    }
}

/* ===============================
   14. Floating Elements
   =============================== */
.floating-cta {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(208, 0, 0, 0.25);
    display: flex;
    align-items: center;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    overflow: hidden;
    border: none;
    text-decoration: none;
}

.floating-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.floating-cta::after {
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    transform: scale(0.5);
}

.floating-cta:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 35px rgba(208, 0, 0, 0.35);
    background: var(--secondary);
}

.floating-cta:hover::after {
    opacity: 1;
    transform: scale(1);
}

.floating-cta i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.floating-cta:hover i {
    transform: translateX(3px);
}

.floating-cta span {
    position: relative;
}

/* Pulse animation for CTA button */
@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(208, 0, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(208, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(208, 0, 0, 0);
    }
}

/* Apply pulse animation on page load */
.floating-cta {
    animation: ctaPulse 2s infinite;
}

.floating-cta:hover {
    animation: none;
}

@media (max-width: 575px) {
    .floating-cta {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        padding: 0.85rem 1.25rem;
    }
    
    .floating-cta:hover {
        transform: translateX(-50%) translateY(-6px) scale(1.05);
    }
}

/* ===============================
   15. Utility Classes
   =============================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.hidden {
    display: none !important;
}

/* ===============================
   16. Media Queries
   =============================== */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    .hero-cta {
        flex-direction: row;
        max-width: none;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .about-content {
        flex-direction: row;
    }
    
    .founder-info {
        flex-direction: row;
        text-align: left;
    }
    
    .founder-image {
        margin-bottom: 0;
        margin-right: 2rem;
    }
    
    .nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }
    
    .nav-links li {
        padding: 0;
        margin-left: 1.5rem;
        width: auto;
        opacity: 1;
    }
    
    .burger {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .nav-links li {
        margin-left: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .floating-cta {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .floating-cta:hover {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===============================
   17. Policy Pages (Privacy & Terms)
   =============================== */
.policy-page-main {
    padding-top: 100px;
    background-color: var(--light-bg);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.policy-content h2 {
    text-align: left;
    margin-top: 2.5rem;
}

.policy-content h2:after {
    margin-left: 0;
    transform: none;
}

.policy-content h3 {
    margin-top: 1.5rem;
    color: var(--primary);
}

.policy-content ul, 
.policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li, 
.policy-content ol li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.policy-content ol li {
    list-style-type: decimal;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    color: var(--dark);
    font-size: 2.5rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.back-to-home {
    display: inline-block;
    margin-top: 2rem;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    transform: translateX(-5px);
}

.back-to-home i {
    margin-right: 0.5rem;
}
