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

/* Font Loading Optimization - Prevent layout shift */
@keyframes fadeInLogo {
    to {
        visibility: visible;
        opacity: 1;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #0F0F0F;
    line-height: 1.6;
    background-color: #F9F9F9;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 70px;
}

.logo {
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-left: -80px;
}

.logo-image {
    height: 144px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.header.scrolled .logo-image {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #0F0F0F;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-menu a:hover {
    color: #D62828;
    transform: translateY(-1px);
}

.header.scrolled .nav-menu a {
    color: #0F0F0F;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D62828;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #0F0F0F;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #D62828;
    color: #FFFFFF;
}

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

.btn-secondary {
    background: #F9F9F9;
    color: #0F0F0F;
    border: 2px solid #E0E0E0;
}

.btn-secondary:hover {
    border-color: #D62828;
    color: #D62828;
}

.btn-outline {
    background: transparent;
    color: #0F0F0F;
    border: 2px solid #E0E0E0;
}

.btn-outline:hover {
    background: #D62828;
    color: #FFFFFF;
    border-color: #D62828;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #F9F9F9;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F9F9F9;
    z-index: 1;
}









.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #0F0F0F;
    font-weight: 700;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-title-line1 {
    font-weight: 700;
    color: #0F0F0F;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpLine 0.8s ease 0.3s forwards;
    position: relative;
}

.hero-title-line2 {
    font-weight: 500;
    font-size: 0.9em;
    color: #333;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpLine 0.8s ease 0.6s forwards;
    position: relative;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.4s both;
    font-size: 1.27rem;
    padding: 18px 37px;
    position: relative;
    overflow: hidden;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #D62828 0%, #B71C1C 100%);
    z-index: -1;
    transition: all 0.2s ease;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #D62828, #B71C1C, #D62828);
    border-radius: 10px;
    z-index: -2;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.2s ease;
}

.hero-cta-text {
    transition: transform 0.2s ease;
}

.hero-cta-arrow {
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.2s ease;
    display: inline-block;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta:hover::after {
    opacity: 0.7;
}

.hero-cta:hover .hero-cta-arrow {
    transform: translateX(4px);
}

.hero-cta:hover .hero-cta-text {
    transform: translateX(-2px);
}

.hero-cta:active {
    transform: translateY(0px) scale(1.04);
    transition: all 0.1s ease;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes organicMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-20px, -30px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translate(30px, -10px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(-10px, 20px) rotate(270deg) scale(1.02);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0px 0px;
        transform: rotate(0deg);
    }
    100% {
        background-position: 120px 120px;
        transform: rotate(360deg);
    }
}

@keyframes laptopFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(-10px) rotate(1deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-5px) translateX(5px) rotate(-1deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(10px) translateX(-5px) rotate(0.5deg);
        opacity: 0.6;
    }
}

@keyframes mobileFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-20px) translateX(10px) scale(1.02);
        opacity: 0.6;
    }
    66% {
        transform: translateY(15px) translateX(-8px) scale(0.98);
        opacity: 0.4;
    }
}

@keyframes geometricMove {
    0% {
        background-position: 0px 0px, 0px 0px;
    }
    100% {
        background-position: 100px 100px, -150px 150px;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: scale(1.1) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: scale(1.05) rotate(270deg);
        opacity: 0.4;
    }
}

/* Sections */
section {
    padding: 80px 0;
    scroll-margin-top: 80px; /* Offset for fixed header */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0F0F0F;
}

/* Work/Portfolio Section */
.work {
    background: #F9F9F9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-card:hover {
}

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

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



.portfolio-card:hover .portfolio-image img {
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    margin-bottom: 0.5rem;
    color: #0F0F0F;
}

.portfolio-info p {
    color: #666;
}

/* Services Section */
.services {
    background: #F9F9F9;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: #F9F9F9;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.service-card:hover {
}

.service-icon {
    color: #D62828;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #0F0F0F;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
    text-align: justify;
    text-align-last: center;
    max-width: 240px;
    margin: 0 auto;
    hyphens: auto;
    word-spacing: -0.05em;
    text-justify: inter-word;
    letter-spacing: 0.005em;
    text-rendering: optimizeLegibility;
}

/* Why Us Section */
.why-us {
    background: #F9F9F9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #F9F9F9;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: #0F0F0F;
}

.feature p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #F9F9F9;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #D62828;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #0F0F0F;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #0F0F0F;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    background: #F9F9F9;
}

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

.pricing-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #E0E0E0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #D62828;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #D62828;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 2.5rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #0F0F0F;
    font-weight: 600;
}

.pricing-description {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #D62828;
    margin-bottom: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

/* Contact Section */
.contact {
    background: #F9F9F9;
    padding: 180px 0;
}

.contact.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.contact.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.contact-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0F0F0F;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-weight: 400;
    margin-top: 1.5rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease-in-out;
    padding: 1rem;
    border-radius: 12px;
}

.contact-method:hover {
    transform: translateY(-8px);
}

.contact-icon-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    outline: none;
    position: relative;
}

.contact-icon-link:focus {
    outline: none;
}



.contact-icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.contact-icon-link:hover .contact-icon-circle {
    transform: scale(1.15);
}

.contact-icon-circle img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

.contact-handle-link {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact-handle-link:hover .contact-handle {
    color: #b71c1c;
    transform: translateY(-2px);
}

.contact-handle {
    color: #D62828;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}





/* Footer */
.footer {
    background: #0F0F0F;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #D62828;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile-only restrictions - prevent zooming but allow scrolling */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        /* Allow vertical scrolling */
        overflow-y: auto;
        /* Prevent zoom */
        -webkit-text-size-adjust: none;
        -moz-text-size-adjust: none;
        -ms-text-size-adjust: none;
        text-size-adjust: none;
    }
    
    /* Prevent double-tap zoom but allow scrolling */
    * {
        touch-action: manipulation;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    /* Fix header positioning and make it more stable */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(224, 224, 224, 0.5);
        z-index: 1000;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav {
        height: 70px;
        padding: 0.5rem 0;
    }
    
    .logo {
        margin-left: 0;
        height: 45px;
    }
    
    .logo-image {
        height: 120px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(249, 249, 249, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid #E0E0E0;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        /* Keep normal hamburger appearance */
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        /* Keep normal hamburger appearance */
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        /* Keep normal hamburger appearance */
    }
    
    /* Hero section should fill the entire viewport */
    .hero {
        padding: 70px 0 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title-line1 {
        color: #0F0F0F;
    }
    
    .hero-title-line2 {
        color: #444;
        font-size: 0.85em;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        margin-bottom: 2rem;
    }
    
    /* Ensure sections below hero are properly spaced */
    .services,
    .why-us,
    .pricing,
    .contact {
        margin-top: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-methods {
        gap: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        max-width: 350px;
        margin: 0 auto 3rem auto;
    }
    
    .contact-icon-circle {
        width: 64px;
        height: 64px;
    }
    
    .contact-icon-circle img {
        width: 64px;
        height: 64px;
    }
    
    .contact-handle {
        font-size: 0.85rem;
    }
    
    .callback-btn {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Make sure hero section takes full height */
    .hero {
        padding: 70px 0 40px;
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    /* Mobile-only restrictions for smaller screens - prevent zoom but allow scroll */
    html, body {
        overflow-x: hidden !important;
        /* Allow vertical scrolling */
        overflow-y: auto !important;
        /* Prevent zoom */
        -webkit-text-size-adjust: none !important;
        -moz-text-size-adjust: none !important;
        -ms-text-size-adjust: none !important;
        text-size-adjust: none !important;
    }
    
    .pricing-grid {
        max-width: 360px;
        padding: 0 15px;
    }
    
    /* Further optimize for smaller screens */
    .hero {
        padding: 70px 0 30px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-title-line1 {
        color: #0F0F0F;
    }
    
    .hero-title-line2 {
        color: #444;
        font-size: 0.85em;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-cta {
        font-size: 1.1rem;
        padding: 16px 32px;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .portfolio-grid,
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact {
        padding: 100px 0;
    }
    
    .contact-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .contact-methods {
        gap: 2rem;
        flex-direction: column;
        max-width: 240px;
        margin: 0 auto 3rem auto;
    }
    
    .contact-method {
        width: 100%;
        margin: 0 auto;
    }
    
    .contact-icon-circle {
        width: 72px;
        height: 72px;
    }
    
    .contact-icon-circle img {
        width: 72px;
        height: 72px;
    }
    
    .contact-handle {
        font-size: 0.85rem;
    }
    
    .callback-btn {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }
} 

/* Mobile Carousel Styles - Only visible on mobile */
.services-carousel {
    display: none;
}

/* Mobile Features Carousel */
.features-carousel {
    display: none;
}

/* Mobile Pricing Carousel */
.pricing-carousel {
    display: none;
}

/* Mobile Carousel Layout */
@media (max-width: 768px) {
    .services-grid {
        display: none;
    }
    
    .features-grid {
        display: none;
    }
    
    .pricing-grid {
        display: flex !important;
        flex-direction: column;
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .pricing-grid .pricing-card {
        margin: 0;
        width: 100%;
        max-width: none;
    }
    
    .services-carousel {
        display: block;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .features-carousel {
        display: block;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .pricing-carousel {
        display: none !important;
    }
    
    .carousel-container {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        margin: 0 50px;
        scroll-behavior: smooth;
    }
    
    .pricing-carousel .carousel-container {
        overflow: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        position: relative;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .carousel-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        width: 300%;
    }
    
    .services-carousel .carousel-track {
        width: 200%;
    }
    
    .features-carousel .carousel-track {
        width: 200%;
    }
    
    .pricing-carousel .carousel-track {
        width: 200%;
        scroll-snap-type: x mandatory;
        transform: translateX(0%);
    }
    
    .carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 10px;
    }
    
    .services-carousel .carousel-slide {
        flex: 0 0 50%;
        width: 50%;
    }
    
    .features-carousel .carousel-slide {
        flex: 0 0 50%;
        width: 50%;
    }
    
    .pricing-carousel .carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        scroll-snap-align: center;
        display: flex;
        justify-content: center;
        align-items: stretch;
        padding: 0;
        box-sizing: border-box;
    }
    
    .service-card-mobile {
        background: transparent;
        border-radius: 16px;
        padding: 2.5rem 2rem;
        text-align: center;
        box-shadow: none;
        border: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 400px;
        max-height: 500px;
        overflow: hidden;
    }
    
    .feature-card-mobile {
        background: transparent;
        border-radius: 16px;
        padding: 2.5rem 2rem;
        text-align: center;
        box-shadow: none;
        border: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 350px;
        max-height: 450px;
        overflow: hidden;
    }
    
    .pricing-card-mobile {
        background: #FAFAFA;
        border-radius: 16px;
        padding: 2.5rem 1.5rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 2px solid #D62828;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 500px;
        max-height: 600px;
        overflow: hidden;
        position: relative;
        scroll-snap-align: center;
        margin: 0 auto;
        width: calc(100vw - 100px);
        max-width: 380px;
    }
    
    .pricing-card-mobile.featured {
        background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    }
    
    .pricing-header-mobile {
        margin-bottom: 2rem;
    }
    
    .pricing-header-mobile h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        color: #0F0F0F;
        font-weight: 600;
    }
    
    .price-mobile {
        font-size: 2.5rem;
        font-weight: 700;
        color: #D62828;
        margin-bottom: 0.5rem;
    }
    
    .pricing-features-mobile {
        list-style: none;
        margin-bottom: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .pricing-features-mobile li {
        padding: 0.75rem 0;
        color: #555;
        border-bottom: 1px solid #E0E0E0;
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .pricing-features-mobile li:last-child {
        border-bottom: none;
    }
    
    .pricing-card-mobile .btn {
        margin-top: auto;
        align-self: center;
        width: auto;
        min-width: 140px;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-icon-mobile {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .service-icon-mobile img {
        width: 104px;
        height: 104px;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(3000%) hue-rotate(350deg) brightness(0.8) contrast(1.2);
    }
    
    .feature-icon-mobile {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .feature-icon-mobile img {
        width: 94px;
        height: 94px;
        object-fit: contain;
    }
    
    .service-card-mobile h3 {
        font-size: 20px;
        font-weight: 700;
        color: #0F0F0F;
        margin-bottom: 8px;
        line-height: 1.3;
        flex-shrink: 0;
    }
    
    .service-card-mobile p {
        color: #666;
        line-height: 1.6;
        font-size: 1rem;
        text-align: center;
        margin: 0;
        flex-grow: 1;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .feature-card-mobile h3 {
        font-size: 20px;
        font-weight: 700;
        color: #0F0F0F;
        margin-bottom: 8px;
        line-height: 1.3;
        flex-shrink: 0;
    }
    
    .feature-card-mobile p {
        color: #666;
        line-height: 1.6;
        font-size: 1rem;
        text-align: center;
        margin: 0;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Carousel Navigation Buttons */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #FFFFFF;
        border: 1px solid rgba(224, 224, 224, 0.6);
        border-radius: 50%;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        padding: 12px;
        min-width: 64px;
        min-height: 64px;
    }
    
    .carousel-btn:hover,
    .carousel-btn:active {
        background: #FFFFFF;
        border-color: rgba(224, 224, 224, 0.8);
        color: #333;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95) !important;
        transition: all 0.1s ease;
    }
    
    .carousel-btn svg {
        width: 32px;
        height: 32px;
        color: #666;
        transition: color 0.2s ease;
    }
    
    .carousel-btn:hover svg {
        color: #333;
    }
    
    .carousel-btn-prev {
        left: 10px;
        z-index: 20;
    }
    
    .carousel-btn-next {
        right: 10px;
        z-index: 20;
    }
    
    .pricing-carousel .carousel-btn-prev {
        left: 10px;
    }
    
    .pricing-carousel .carousel-btn-next {
        right: 10px;
    }
    
    /* Carousel Indicators */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 2rem;
    }
    
    .carousel-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(224, 224, 224, 0.8);
        border: none;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-indicator:hover {
        background: #D62828;
        transform: scale(1.15);
        box-shadow: 0 2px 6px rgba(214, 40, 40, 0.3);
    }
    
    .carousel-indicator.active {
        background: #D62828;
        transform: scale(1.15);
        box-shadow: 0 2px 6px rgba(214, 40, 40, 0.3);
    }
    
    /* Smooth transitions for carousel */
    .carousel-track {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Swipe hint animation - disabled to prevent unwanted movement */
    .carousel-container.swipe-hint .carousel-track {
        /* animation: swipeHint 2s ease-in-out; */
    }
    
    @keyframes swipeHint {
        0%, 100% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(5%);
        }
        75% {
            transform: translateX(0);
        }
    }
    
    /* Touch-friendly improvements */
    .carousel-btn {
        min-width: 56px;
        min-height: 56px;
        touch-action: manipulation;
    }
    
    .carousel-indicator {
        min-width: 12px;
        min-height: 12px;
        touch-action: manipulation;
    }
    
    /* Prevent text selection during swipe */
    .carousel-track {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        touch-action: pan-y;
    }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
    .services-carousel {
        padding: 0 15px;
    }
    
    .features-carousel {
        padding: 0 15px;
    }
    
    .carousel-container {
        margin: 0 40px;
    }
    
    .pricing-carousel .carousel-container {
        margin: 0;
    }
    
    .service-card-mobile {
        padding: 2rem 1.5rem;
        min-height: 380px;
        max-height: 480px;
    }
    
    .service-card-mobile h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .service-card-mobile p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-card-mobile {
        padding: 2rem 1.5rem;
        min-height: 330px;
        max-height: 430px;
    }
    
    .feature-card-mobile h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .feature-card-mobile p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .pricing-card-mobile {
        padding: 2rem 1.25rem;
        min-height: 450px;
        max-height: 550px;
        width: calc(100vw - 80px);
        margin: 0 auto;
        max-width: 360px;
    }
    
    .pricing-header-mobile h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .price-mobile {
        font-size: 2.2rem;
    }
    
    .pricing-features-mobile li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .carousel-btn {
        width: 60px;
        height: 60px;
        padding: 10px;
        min-width: 60px;
        min-height: 60px;
    }
    
    .carousel-btn svg {
        width: 30px;
        height: 30px;
    }
    
    .carousel-btn-prev {
        left: 8px;
    }
    
    .carousel-btn-next {
        right: 8px;
    }
    
    .pricing-carousel .carousel-btn-prev {
        left: 8px;
    }
    
    .pricing-carousel .carousel-btn-next {
        right: 8px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .pricing-grid {
        max-width: 320px;
        padding: 0 10px;
    }
    
    .carousel-container {
        margin: 0 35px;
    }
    
    .pricing-carousel .carousel-container {
        margin: 0;
    }
    
    .service-card-mobile {
        padding: 1.5rem 1.5rem;
        min-height: 350px;
        max-height: 430px;
    }
    
    .service-card-mobile h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .service-card-mobile p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .feature-card-mobile {
        padding: 1.5rem 1.5rem;
        min-height: 310px;
        max-height: 380px;
    }
    
    .feature-card-mobile h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .feature-card-mobile p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .pricing-card-mobile {
        padding: 1.5rem 1rem;
        min-height: 400px;
        max-height: 500px;
        width: calc(100vw - 60px);
        margin: 0 auto;
        max-width: 340px;
    }
    
    .pricing-header-mobile h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .price-mobile {
        font-size: 2rem;
    }
    
    .pricing-features-mobile li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .carousel-btn {
        width: 56px;
        height: 56px;
        padding: 8px;
        min-width: 56px;
        min-height: 56px;
    }
    
    .carousel-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .carousel-btn-prev {
        left: 6px;
    }
    
    .carousel-btn-next {
        right: 6px;
    }
    
    .pricing-carousel .carousel-btn-prev {
        left: 6px;
    }
    
    .pricing-carousel .carousel-btn-next {
        right: 6px;
    }
} 