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

:root {
    --primary-blue: #2E7DD2;
    --dark-blue: #1B4B7F;
    --light-blue: #5BA3E8;
    --orange: #FF9800;
    --dark-orange: #F57C00;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #F5F7FA;
    --white: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-dark {
    background: var(--text-dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #000;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Header */
.site-header {
    background: url('../images/header_bg.jpg') repeat-x left top;
    background-size: auto 100%;
    min-height: 160px;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.wave-border {
    display: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--orange);
}

.nav-menu li.active > a,
.nav-menu a.active {
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
}

.nav-menu a.nav-cta {
    color: white;
    background: var(--orange);
    padding: 10px 20px;
    border-radius: 25px;
    border-bottom: none;
}

.nav-menu a.nav-cta:hover {
    background: var(--dark-orange);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #015a9b 0%, #013d6b 100%);
    padding: 80px 0 100px;
    position: relative;
    color: var(--white);
}

.hero .container {
    position: relative;
    display: block;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-hook {
    position: absolute;
    top: 0;
    right: 18%;
    height: 380px;
    z-index: 10;
    transform-origin: top center;
    animation: swing 3s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

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

/* Floating Bubbles */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-up linear infinite;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
    opacity: 0.6;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 6s;
    animation-delay: 1s;
    opacity: 0.4;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 10s;
    animation-delay: 2s;
    opacity: 0.3;
}

.bubble:nth-child(4) {
    width: 25px;
    height: 25px;
    left: 50%;
    animation-duration: 7s;
    animation-delay: 0.5s;
    opacity: 0.5;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 65%;
    animation-duration: 9s;
    animation-delay: 3s;
    opacity: 0.4;
}

.bubble:nth-child(6) {
    width: 15px;
    height: 15px;
    left: 75%;
    animation-duration: 5s;
    animation-delay: 1.5s;
    opacity: 0.6;
}

.bubble:nth-child(7) {
    width: 45px;
    height: 45px;
    left: 85%;
    animation-duration: 11s;
    animation-delay: 4s;
    opacity: 0.3;
}

.bubble:nth-child(8) {
    width: 30px;
    height: 30px;
    left: 5%;
    animation-duration: 7.5s;
    animation-delay: 2.5s;
    opacity: 0.5;
}

.bubble:nth-child(9) {
    width: 22px;
    height: 22px;
    left: 45%;
    animation-duration: 6.5s;
    animation-delay: 0.8s;
    opacity: 0.4;
}

.bubble:nth-child(10) {
    width: 55px;
    height: 55px;
    left: 90%;
    animation-duration: 12s;
    animation-delay: 5s;
    opacity: 0.2;
}

@keyframes float-up {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-700px) translateX(20px);
        opacity: 0;
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(75% 100% at 50% 100%);
}

/* Consulting Section */
.consulting-intro {
    padding: 80px 0;
    text-align: center;
}

.consulting-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.consulting-intro .highlight {
    color: var(--primary-blue);
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.partner-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}

/* What We Do - Cleaner Services Grid */
.what-we-do {
    padding: 60px 0;
    text-align: center;
}

.what-we-do h2 {
    font-size: 34px;
    margin-bottom: 6px;
}

.cleaner-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
    align-items: stretch;
}

.cleaner-services-grid .service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cleaner-services-grid .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.09);
}

.cleaner-services-grid .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(46,125,210,0.12);
}

.cleaner-services-grid .service-card h3 {
    font-size: 20px;
    margin: 0;
}

.cleaner-services-grid .service-card p {
    color: var(--text-light);
    margin: 0 0 10px;
    flex: 1 1 auto;
}

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

@media (max-width: 640px) {
    .cleaner-services-grid {
        grid-template-columns: 1fr;
    }
    .cleaner-services-grid .service-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

/* Latest Projects */
.latest-projects {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.latest-projects h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Projects Collage Grid */
.projects-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-bottom: 50px;
}

.collage-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

.collage-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: white;
    text-align: left;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.collage-item:hover .collage-info {
    transform: translateY(0);
    opacity: 1;
}

.collage-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.collage-info p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    color: white;
}

/* Collage item sizes */
.collage-item.wide {
    grid-column: span 2;
}

.collage-item.tall {
    grid-row: span 2;
}

.collage-item.featured {
    grid-column: span 3;
    grid-row: span 2;
}

.collage-item.featured img {
    object-position: top center;
}

/* Lightbox */
.project-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.project-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.lightbox-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    height: 90vh;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.project-lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-image-wrap {
    width: 800px;
    max-width: 65vw;
    height: 100%;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    background: #111;
}

.lightbox-image-wrap::-webkit-scrollbar {
    width: 8px;
}

.lightbox-image-wrap::-webkit-scrollbar-track {
    background: #222;
    border-radius: 4px;
}

.lightbox-image-wrap::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.lightbox-image-wrap::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.lightbox-content img {
    width: 100%;
    display: block;
}

.lightbox-info {
    color: white;
    min-width: 200px;
    max-width: 280px;
    padding-top: 20px;
    position: sticky;
    top: 0;
}

.lightbox-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.lightbox-info p {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 30px;
    color: white;
}

/* Collage responsive */
@media (max-width: 992px) {
    .projects-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .collage-item.featured {
        grid-column: span 2;
    }

    .collage-item.wide {
        grid-column: span 2;
    }

    .collage-item.tall {
        grid-row: span 2;
    }
}

@media (max-width: 640px) {
    .projects-collage {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .collage-item.wide,
    .collage-item.featured,
    .collage-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .collage-info {
        opacity: 1;
        transform: translateY(0);
    }

    .lightbox-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        height: auto;
        max-height: 90vh;
    }

    .lightbox-image-wrap {
        width: 100%;
        max-width: 95vw;
        max-height: 55vh;
        flex-shrink: 0;
    }

    .lightbox-info {
        max-width: 100%;
        padding: 20px 0;
        position: static;
    }
}

/* Projects Slider */
.projects-slider-container {
    position: relative;
    margin-bottom: 30px;
}

.projects-slider {
    overflow: hidden;
    margin: 0 60px;
}

.projects-track {
    display: flex;
    transition: transform 0.5s ease;
}

.projects-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 0 0 100%;
    min-width: 100%;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.slider-nav:hover {
    background: var(--dark-blue);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-nav.disabled:hover {
    transform: translateY(-50%);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: #bbb;
}

.slider-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Legacy grid support */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    display: block;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-decoration: none;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 90, 155, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.view-project i {
    margin-left: 8px;
}

.project-card:hover .view-project:hover {
    background: white;
    color: var(--primary-blue);
}

.project-info {
    padding: 20px 24px;
    text-align: left;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.project-info p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    text-align: center;
}

.what-we-do h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.learn-more {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color 0.3s;
}

.learn-more:hover {
    color: var(--dark-blue);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrap h2,
.contact-info-wrap h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: white;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
}

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.form-note a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-info-wrap {
    background: var(--primary-blue);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.contact-info-wrap h3 {
    font-size: 18px;
    margin: 30px 0 15px;
}

.contact-details {
    list-style: none;
    margin-bottom: 20px;
}

.contact-details li {
    margin-bottom: 10px;
}

.contact-details a {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: rgba(255,255,255,0.3);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-light);
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info {
    text-align: left;
}

.client-info h3 {
    margin-bottom: 5px;
}

.client-info p {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-content {
    text-align: left;
    position: relative;
}

.quote-mark {
    font-size: 60px;
    color: var(--primary-blue);
    line-height: 1;
}

.quote-mark.end {
    float: right;
}

.testimonial-content h4 {
    margin: 10px 0;
}

.rating {
    margin-top: 15px;
}

.star {
    color: #FFD700;
    font-size: 20px;
}

.star.inactive {
    color: #ddd;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section .bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    opacity: 0.95;
}

/* Footer */
.site-footer {
    background: url('../images/footer_bg.jpg');
    background-repeat: repeat-x;
    background-size: auto 100%;
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 20px;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    opacity: 0.8;
}

.copyright {
    color: var(--text-light);
    font-size: 14px;
}

.copyright a {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .projects-slide {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-slider {
        margin: 0 50px;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .projects-slider {
        margin: 0 45px;
    }

    .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================================
   ADDITIONAL PAGE STYLES
   ========================================= */

/* Page Hero (Interior Pages) */
.page-hero {
    background: linear-gradient(to bottom, #015a9b 0%, #013d6b 100%);
    padding: 80px 0 120px;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 30px;
}

.hero-bullets li {
    font-size: 16px;
    margin-bottom: 10px;
}

.page-hero-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Button Variants */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* Dropdown Navigation */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

/* Nav CTA */
.nav-cta {
    background: var(--orange) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--dark-orange) !important;
    transform: translateY(-2px);
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

.our-story {
    padding: 80px 0;
}

.our-story h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
}

.image-caption {
    margin-top: 20px;
    text-align: center;
}

.image-caption h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.image-caption p {
    color: var(--primary-blue);
    font-weight: 600;
}

.story-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-credit {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 40px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.value-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.core-value-card {
    text-align: center;
}

.value-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-circle img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.core-value-card h3 {
    font-size: 14px;
    font-weight: 600;
}

/* Experience Stats */
.experience-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.team-member .fun-title {
    color: var(--text-light);
    font-size: 13px;
}

/* Why Work With Us */
.why-work-with-us {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-work-with-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.reason-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon i {
    font-size: 2rem;
    color: white;
}

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.reason-card p {
    color: var(--text-light);
}

/* =========================================
   SERVICES PAGE STYLES
   ========================================= */

.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-block {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-block-header img {
    width: 50px;
    height: 50px;
}

.service-block-header h3 {
    font-size: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: var(--text-light);
}

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

.service-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-links .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* AI Banner */
.ai-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
}

.ai-banner-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-label {
    display: inline-block;
    background: var(--orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ai-banner h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.ai-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Process Timeline */
.our-process {
    padding: 80px 0;
    background: var(--bg-light);
}

.our-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--primary-blue);
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-light);
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    text-align: center;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.clients-logos img {
    height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.clients-logos img:hover {
    opacity: 1;
}

/* =========================================
   SERVICE DETAIL PAGE STYLES
   ========================================= */

.service-intro {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-subtitle {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon-box img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Migration Services Section */
.migration-types {
    padding: 80px 0;
    background: var(--bg-light);
}

.migration-types h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.migration-types .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.migration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.migration-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.migration-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.migration-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.migration-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.migration-card ul li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.migration-card ul li:last-child {
    border-bottom: none;
}

.migration-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* Migration Process Section */
.migration-process {
    padding: 80px 0;
}

.migration-process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.process-step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.process-step-card p {
    font-size: 14px;
    color: var(--text-light);
}

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

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

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

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

/* Mobile Friendly Section - Website Design */
.mobile-friendly {
    padding: 80px 0;
    background: var(--white);
}

.mobile-friendly-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-friendly-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mobile-friendly-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mobile-feature i {
    font-size: 24px;
    color: #6FCF97;
    flex-shrink: 0;
    margin-top: 3px;
}

.mobile-feature h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.mobile-feature p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.mobile-friendly-image {
    text-align: center;
}

.mobile-friendly-image img {
    max-width: 100%;
    height: auto;
}

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

    .mobile-friendly-image {
        order: -1;
    }

    .mobile-friendly-image img {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .mobile-friendly {
        padding: 60px 0;
    }

    .mobile-friendly-content h2 {
        font-size: 26px;
    }
}

/* Services List Section */
.services-list-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.services-list h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Accordion */
.service-accordion {
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
}

.accordion-icon {
    font-size: 24px;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Quote Form */
.quote-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.quote-form-wrap h3 {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.quote-form-wrap h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: white;
}

.quote-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.checkbox-wrap label {
    font-size: 14px;
    color: var(--text-light);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Success Message */
.form-success {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.4s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-message h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 10px;
}

.success-message .success-note {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

.success-message .success-note a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.success-message .success-note a:hover {
    text-decoration: underline;
}

/* Form Error Message */
.form-error-msg {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.form-error-msg i {
    font-size: 18px;
}

/* Platform Benefits */
.why-platform {
    padding: 80px 0;
}

.why-platform h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.platform-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* =========================================
   MADFISH.AI PAGE STYLES
   ========================================= */

.ai-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 120px;
    position: relative;
    color: var(--white);
}

.ai-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ai-problem {
    padding: 80px 0;
    background: var(--bg-light);
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.problem-content .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

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

.problem-stat .stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.problem-stat .stat-text {
    font-size: 16px;
    color: var(--text-light);
}

.urgency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* AI Solution */
.ai-solution {
    padding: 80px 0;
}

.ai-solution h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.solution-demo {
    max-width: 800px;
    margin: 50px auto;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
}

.demo-conversation {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-message {
    display: flex;
    gap: 15px;
}

.demo-message .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.demo-message.fynn .avatar {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.demo-message p {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fynn-response {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fynn-response ul {
    margin: 15px 0;
    padding-left: 20px;
}

.fynn-response li {
    margin-bottom: 5px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.solution-feature {
    text-align: center;
    padding: 30px 20px;
}

.solution-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.solution-feature .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.solution-feature img {
    width: 35px;
    height: 35px;
}

.solution-feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.solution-feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* AI Integrations */
.ai-integrations {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 40px 0 20px;
}

.integration-logo img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

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

.integrations-note {
    color: var(--text-light);
    font-size: 14px;
}

/* AI Use Cases */
.ai-use-cases {
    padding: 80px 0;
}

.ai-use-cases h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.use-case {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.use-case h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.use-case ul {
    list-style: none;
}

.use-case li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid #e0e0e0;
}

.use-case li:last-child {
    border-bottom: none;
}

/* AI Pricing */
.ai-pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.pricing-card {
    max-width: 500px;
    margin: 40px auto 0;
    background: var(--white);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.pricing-note {
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.pricing-disclaimer {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

/* AI FAQ */
.ai-faq {
    padding: 80px 0;
}

.ai-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* =========================================
   SPEAKING PAGE STYLES
   ========================================= */

.speaking-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 100px 0 120px;
    position: relative;
    color: var(--white);
}

.speaking-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.speaking-hero-content h1 {
    font-size: 56px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.credentials-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.credential {
    padding: 20px;
}

.credential-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.credential-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Speaking Topics */
.speaking-topics {
    padding: 80px 0;
}

.speaking-topics h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.topic-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.topic-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.topic-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.topic-highlights {
    list-style: none;
}

.topic-highlights li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.topic-highlights li::before {
    content: '→ ';
    color: var(--primary-blue);
}

.speaking-cta {
    text-align: center;
    margin-top: 50px;
}

/* Consulting Options */
.consulting-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.consulting-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.consulting-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.consulting-option {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.consulting-option.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.option-header h3 {
    font-size: 22px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.consulting-option ul {
    list-style: none;
    margin: 20px 0;
}

.consulting-option li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.consulting-option li::before {
    content: '✓ ';
    color: var(--primary-blue);
}

/* Workshops */
.workshops-section {
    padding: 80px 0;
}

.workshops-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.workshop-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.workshop-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.workshop-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.workshop-duration {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.workshops-cta {
    text-align: center;
    margin-top: 40px;
}

/* Speaking Testimonials */
.speaking-testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.speaking-testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* =========================================
   PORTFOLIO PAGE STYLES
   ========================================= */

.portfolio-section {
    padding: 80px 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

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

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 210, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-project {
    color: var(--white);
    font-weight: 600;
    padding: 12px 25px;
    border: 2px solid var(--white);
    border-radius: 25px;
}

.portfolio-info {
    padding: 20px;
    background: var(--white);
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.portfolio-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.portfolio-tag {
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--primary-blue);
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.results-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.result-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.result-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.result-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Industries Section */
.industries-section {
    padding: 60px 0;
}

.industries-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.industries-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.industry-item img {
    width: 50px;
    height: 50px;
    opacity: 0.7;
}

.industry-item span {
    font-size: 13px;
    color: var(--text-light);
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-main {
    padding: 80px 0;
}

.contact-main .contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-main .contact-form-wrap h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group select {
    background: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
    color: var(--text-dark);
}

.form-group select option {
    background: white;
    color: var(--text-dark);
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 20px;
}

.info-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.info-content a {
    color: var(--primary-blue);
}

.quick-links {
    list-style: none;
}

.quick-links li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.quick-links li:last-child {
    border-bottom: none;
}

.quick-links a {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link-lg {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s;
}

.social-link-lg:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

/* Contact FAQ */
.contact-faq {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

/* =========================================
   FOOTER UPDATES
   ========================================= */

.partner-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.partner-badges img {
    height: 35px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

.newsletter-signup {
    margin-top: 20px;
}

.newsletter-signup p {
    font-size: 13px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
}

.newsletter-form .btn {
    padding: 12px 20px;
}

.newsletter-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(111, 207, 151, 0.15);
    border-radius: 8px;
    color: #27ae60;
    font-weight: 500;
    animation: fadeInUp 0.4s ease;
}

.newsletter-success i {
    font-size: 20px;
}

.newsletter-error {
    margin-top: 10px;
    padding: 10px 15px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 6px;
    color: #dc2626;
    font-size: 13px;
    animation: shake 0.4s ease;
}

.social-links-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links-footer img {
    width: 30px;
    height: 30px;
    opacity: 0.8;
}

/* =========================================
   PORTFOLIO PAGE - REDESIGNED
   ========================================= */

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #E67E22, #E74C3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Accent Button */
.btn-accent {
    background: #E67E22;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #D35400;
    transform: translateY(-2px);
}

/* Portfolio Showcase Section */
.portfolio-showcase {
    padding: 80px 0;
    background: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.showcase-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.showcase-lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.showcase-features {
    list-style: none;
    margin-bottom: 35px;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.showcase-features li i {
    color: #27AE60;
    font-size: 18px;
}

/* Browser Mockup */
.showcase-browser {
    position: relative;
}

.browser-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    overflow: hidden;
}

.browser-header {
    background: #F5F5F5;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #E0E0E0;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDD;
}

.browser-dots span:first-child { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:last-child { background: #28CA41; }

.browser-address {
    flex: 1;
    background: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-address i {
    color: #27AE60;
    font-size: 12px;
}

.browser-content {
    height: 350px;
    overflow: hidden;
}

.browser-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}

/* Phone Mockup */
.showcase-phone {
    position: absolute;
    right: -30px;
    bottom: -40px;
    width: 140px;
}

.phone-frame {
    background: #1A1A1A;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.phone-frame img {
    width: 100%;
    border-radius: 18px;
    height: 240px;
    object-fit: cover;
    object-position: top;
}

.showcase-credit {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Portfolio Capabilities */
.portfolio-capabilities {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.capability-card {
    text-align: left;
}

.capability-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.capability-icon i {
    font-size: 36px;
    color: #E67E22;
}

.capability-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.capability-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light h2,
.section-header.light p {
    color: white;
}

.section-header.light .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

.section-tag {
    display: inline-block;
    background: rgba(1, 90, 155, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* E-Commerce Grid */
.portfolio-ecommerce {
    padding: 100px 0;
    background: white;
}

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

.ecommerce-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.ecommerce-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ecommerce-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ecommerce-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

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

.ecommerce-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 90, 155, 0.95), rgba(1, 90, 155, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ecommerce-card:hover .ecommerce-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.project-platform {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-light {
    background: white;
    color: var(--primary-blue);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-light:hover {
    background: #f0f0f0;
}

.ecommerce-info {
    padding: 25px;
}

.ecommerce-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.ecommerce-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Custom Development Section */
.portfolio-custom {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A252F 0%, #2C3E50 100%);
}

.custom-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.custom-project {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
}

.custom-project:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.custom-project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #0073B1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-project-icon i {
    font-size: 26px;
    color: white;
}

.custom-project-content h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.custom-project-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Industries Section */
.portfolio-industries {
    padding: 100px 0;
    background: var(--bg-light);
}

.industries-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-card {
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-size 0.6s ease;
}

/* Dark blue overlay */
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(1, 60, 107, 0.77) 0%, rgba(1, 90, 155, 0.70) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.industry-card h3,
.industry-card p {
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.industry-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
    margin: 0;
    padding: 0 20px 25px;
}

/* Hover: reveal the image */
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(1, 60, 107, 0.35);
    background-size: 110% auto;
}

.industry-card:hover::before {
    opacity: 0.3;
}

.industry-card:hover h3,
.industry-card:hover p {
    transform: translateY(-5px);
}

.industry-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    text-align: left;
    padding: 0;
    background-size: cover;
    background-position: center;
}

/* Featured card - no overlay effects */
.industry-card.featured::before {
    display: none;
}

.industry-card.featured .featured-overlay {
    display: none;
}

.industry-card.featured .featured-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.industry-card.featured h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.industry-card.featured p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    color:white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E67E22;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

/* Results Banner */
.portfolio-results {
    padding: 60px 0;
    background: var(--primary-blue);
}

.results-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.result-stat {
    color: white;
}

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio Responsive */
@media (max-width: 1200px) {
    .showcase-grid {
        gap: 40px;
    }

    .showcase-content h2 {
        font-size: 34px;
    }

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

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

    .industry-card.featured {
        grid-column: span 3;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-content h2 {
        font-size: 32px;
    }

    .showcase-features {
        display: inline-block;
        text-align: left;
    }

    .showcase-browser {
        max-width: 500px;
        margin: 0 auto;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .capability-icon {
        margin: 0 auto 20px;
    }

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

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

    .industry-card.featured {
        grid-column: span 2;
    }

    .results-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .portfolio-showcase,
    .portfolio-capabilities,
    .portfolio-ecommerce,
    .portfolio-custom,
    .portfolio-industries {
        padding: 60px 0;
    }

    .showcase-content h2 {
        font-size: 28px;
    }

    .browser-content {
        height: 250px;
    }

    .showcase-phone {
        width: 100px;
        right: -10px;
        bottom: -20px;
    }

    .phone-frame img {
        height: 160px;
    }

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

    .custom-project {
        flex-direction: column;
        text-align: center;
    }

    .custom-project-icon {
        margin: 0 auto;
    }

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

    .industry-card.featured {
        grid-column: span 1;
        min-height: 300px;
    }

    .industry-card.featured .featured-content {
        text-align: center;
        justify-content: center;
    }

    .results-banner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-value {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* =========================================
   LEGAL PAGES (Privacy, Cookies, Terms)
   ========================================= */

.legal-hero .page-hero-content.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero .page-hero-content.centered p {
    opacity: 0.8;
    font-size: 16px;
}

.legal-content {
    padding: 80px 0;
    background: var(--white);
}

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

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.legal-container h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.legal-container h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-container h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 15px 0 20px 20px;
    padding-left: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-contact {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.legal-contact p {
    margin-bottom: 8px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    font-size: 14px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

.cookie-table tr:hover td {
    background: #fafafa;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 60px 0;
    }

    .legal-container h2 {
        font-size: 20px;
    }

    .legal-container h3 {
        font-size: 16px;
    }

    .cookie-table {
        font-size: 13px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }
}

/* =========================================
   ADDITIONAL RESPONSIVE STYLES
   ========================================= */

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .solution-features,
    .use-cases-grid,
    .platform-benefits,
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .page-hero .container,
    .ai-hero .container,
    .speaking-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-hero-image,
    .ai-hero-image,
    .speaking-hero-image {
        order: -1;
    }

    .story-content,
    .intro-grid,
    .services-list-grid,
    .ai-banner-content {
        grid-template-columns: 1fr;
    }

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

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

    .topics-grid,
    .consulting-options,
    .testimonials-grid,
    .portfolio-grid,
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

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

@media (max-width: 640px) {
    .page-hero h1,
    .ai-hero-content h1 {
        font-size: 32px;
    }

    .speaking-hero-content h1 {
        font-size: 40px;
    }

    .values-grid,
    .services-main-grid,
    .reasons-grid,
    .problem-stats,
    .solution-features,
    .use-cases-grid,
    .platform-benefits,
    .topics-grid,
    .consulting-options,
    .testimonials-grid,
    .workshops-grid,
    .portfolio-grid,
    .results-grid,
    .faq-grid,
    .stats-grid,
    .credentials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-ctas {
        flex-direction: column;
    }

    .consulting-option.featured {
        transform: none;
    }
}

/* Font Awesome Icon Styles */
.value-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.project-icon i {
    font-size: 1.5rem;
    color: white;
}

.topic-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-block-header i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-right: 15px;
}

.service-features li i {
    color: var(--primary-blue);
    margin-right: 8px;
    font-size: 0.9rem;
}

.feature-icon-box i,
.value-circle i {
    font-size: 1.8rem;
    color: white;
}

.hero-bullets li i {
    color: var(--orange);
    margin-right: 10px;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.social-links a i,
.social-links-footer a i,
.social-links-large a i {
    font-size: 1.2rem;
}

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

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

.social-links-large a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background: var(--primary-blue);
    color: white;
}

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

.social-link:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.contact-details li i {
    color: var(--primary-blue);
    margin-right: 10px;
    width: 20px;
}

.slider-arrow i {
    font-size: 1rem;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* What We Build Section (Custom Apps Page) */
.what-we-build {
    padding: 80px 0;
    background: var(--bg-light);
}

.what-we-build h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.build-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.build-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.build-card .build-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.build-card .build-icon i {
    font-size: 2rem;
    color: white;
}

.build-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

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

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

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

.industry-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 2.5rem;
    color: white;
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.industry-item span {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
}

/* Technologies Section (Custom Apps Page) */
.technologies-section {
    padding: 80px 0;
    background: white;
}

.technologies-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tech-category {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.tech-category h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.tech-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-category ul li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

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

.mobile-feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 15px;
    flex-shrink: 0;
}

.topic-highlights li i {
    color: var(--primary-blue);
    margin-right: 8px;
    font-size: 0.9rem;
}

.accordion-icon i {
    font-size: 1rem;
}

.btn i {
    margin-left: 5px;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Consulting Services Section (Strategy Page) */
.consulting-services {
    padding: 80px 0;
    background: var(--bg-light);
}

.consulting-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.consulting-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consulting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.consulting-card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.consulting-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.consulting-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consulting-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.consulting-card ul li:last-child {
    border-bottom: none;
}

.consulting-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.85rem;
}

/* Strategy Sessions Section */
.strategy-sessions {
    padding: 80px 0;
    background: white;
}

.strategy-sessions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.session-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.session-card.featured {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(46, 125, 210, 0.3);
}

.session-header {
    margin-bottom: 20px;
}

.session-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.session-card.featured .session-header h3 {
    color: white;
}

.session-header .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.session-card.featured .price {
    color: white;
}

.session-card > p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.session-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.session-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.session-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.85rem;
}

.session-card.featured ul li::before {
    color: rgba(255, 255, 255, 0.8);
}

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

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

    .session-card.featured {
        transform: none;
    }
}

/* =========================================
   MADFISH.AI TEASER PAGE STYLES
   ========================================= */

.ai-teaser-hero {
    background: url('../images/madfish-ai/fynn-madfish-ai.jpg') center top no-repeat;
    background-size: cover;
    padding: 80px 0 140px;
    position: relative;
    overflow: hidden;
}

.ai-teaser-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 40, 80, 0) 0%, rgba(0, 40, 80, 0.85) 60%, rgba(0, 30, 60, 0.95) 100%);
}

.ai-teaser-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 550px;
    margin-left: auto;
    margin-right: 0;
    color: white;
}

.ai-teaser-content .hero-label {
    color: rgba(255, 255, 255, 0.8);
}

.fynn-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.fynn-logo i {
    font-size: 3.5rem;
    color: var(--orange);
}

.fynn-logo span {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.ai-teaser-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ai-teaser-content .hero-lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 0 40px;
}

.ai-teaser-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.teaser-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
}

.teaser-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.ai-teaser-cta {
    margin-top: 30px;
}

.ai-teaser-cta .cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.ai-teaser-features {
    padding: 80px 0;
    background: var(--bg-light);
}

.ai-teaser-features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.teaser-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.teaser-feature {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.teaser-feature .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser-feature .feature-icon i {
    font-size: 2rem;
    color: white;
}

.teaser-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.teaser-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.ai-teaser-cta-section {
    padding: 80px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .ai-teaser-content h1 {
        font-size: 2rem;
    }

    .fynn-logo i {
        font-size: 2.5rem;
    }

    .fynn-logo span {
        font-size: 2rem;
    }

    .ai-teaser-stats {
        gap: 30px;
    }

    .teaser-stat .stat-number {
        font-size: 2rem;
    }

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

    .cta-box {
        padding: 40px 25px;
    }
}

/* =========================================
   MATT REEDER DARK THEME PAGE STYLES
   ========================================= */

.matt-hero {
    background: #0a0a0a;
    padding: 140px 0 100px;
    position: relative;
}

.matt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(230, 92, 0, 0.1) 0%, transparent 60%);
}

.matt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}

.matt-hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: white;
    padding-bottom: 60px;
}

.matt-hero-image {
    text-align: center;
    align-self: end;
    margin-bottom: -105px;
}

.matt-hero-image img {
    max-width: 120%;
    height: auto;
    max-height: 750px;
    margin-left: -10%;
}

@media (max-width: 768px) {
    .matt-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .matt-hero-content {
        text-align: center;
        padding-bottom: 20px;
    }

    .matt-hero-image {
        order: -1;
        margin-bottom: 0;
    }

    .matt-hero-image img {
        max-height: 350px;
    }
}

.matt-hero-content .hero-label {
    color: #e65c00;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.matt-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.matt-hero-content .hero-tagline {
    font-size: 1.5rem;
    color: #e65c00;
    font-weight: 500;
    margin-bottom: 20px;
}

.matt-hero-content .hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.matt-credentials {
    background: #111;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.matt-credentials .credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.matt-credentials .credential {
    text-align: center;
    color: white;
}

.matt-credentials .credential-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e65c00;
    margin-bottom: 5px;
}

.matt-credentials .credential-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.matt-services {
    background: #0a0a0a;
    padding: 80px 0;
}

.matt-services h2 {
    text-align: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 50px;
}

.matt-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.matt-service {
    background: #1a1a1a;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.matt-service:hover {
    border-color: #e65c00;
    transform: translateY(-5px);
}

.matt-service .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #e65c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.matt-service .service-icon i {
    font-size: 1.8rem;
    color: white;
}

.matt-service h3 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 12px;
}

.matt-service p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.matt-session {
    background: #111;
    padding: 80px 0;
}

.matt-session .session-card {
    background: #1a1a1a;
    max-width: 500px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e65c00;
    position: relative;
}

.matt-session .session-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e65c00;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.matt-session .session-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
}

.matt-session .session-price {
    font-size: 3rem;
    font-weight: 700;
    color: #e65c00;
    display: block;
}

.matt-session .session-duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.matt-session .session-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.matt-session .session-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.matt-session .session-features li {
    padding: 12px 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.matt-session .session-features li:last-child {
    border-bottom: none;
}

.matt-session .session-features li i {
    color: #e65c00;
    margin-right: 10px;
}

.matt-topics {
    background: #0a0a0a;
    padding: 80px 0;
}

.matt-topics h2 {
    text-align: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 10px;
}

.matt-topics .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.matt-topics .topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.topic-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.topic-item:hover {
    border-color: #e65c00;
}

.topic-item i {
    font-size: 2.5rem;
    color: #e65c00;
    margin-bottom: 20px;
}

.topic-item h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 12px;
}

.topic-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.matt-cta {
    background: #111;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.matt-cta h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
}

.matt-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Matt Reeder page button override */
.matt-hero .btn-primary,
.matt-session .btn-primary,
.matt-cta .btn-primary {
    background: #e65c00;
    border-color: #e65c00;
}

.matt-hero .btn-primary:hover,
.matt-session .btn-primary:hover,
.matt-cta .btn-primary:hover {
    background: #cc5200;
    border-color: #cc5200;
}

@media (max-width: 968px) {
    .matt-hero-content h1 {
        font-size: 3rem;
    }

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

@media (max-width: 640px) {
    .matt-hero-content h1 {
        font-size: 2.5rem;
    }

    .matt-hero-content .hero-tagline {
        font-size: 1.2rem;
    }

    .matt-credentials .credentials-grid,
    .matt-services-grid,
    .matt-topics .topics-grid {
        grid-template-columns: 1fr;
    }

    .matt-session .session-card {
        padding: 35px 25px;
    }

    .matt-session .session-price {
        font-size: 2.5rem;
    }
}
