:root {
    --primary-bg: #ffffff;
    /* pure white */
    --accent-color: #7c3aed;
    /* Vibrant Violet */
    --accent-secondary: #ec4899;
    /* Pink */
    --accent-tertiary: #3b82f6;
    /* Blue */
    --text-main: #0f172a;
    /* Dark Navy */
    --text-muted: #64748b;
    /* Gray */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.08);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    --card-radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--primary-bg);
    background-image:
        radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(139, 92, 246, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography Refinement */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.serif-italic {
    font-family: 'Inter', sans-serif;
    /* Switching to Sans to match modern SaaS look */
    font-style: normal;
    color: var(--text-main);
}

.highlight {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 24px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    line-height: 1;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    border-radius: 8px;
}

.logo-icon {
    display: none;
    /* Replaced by img */
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.cta-small {
    background: var(--accent-color) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Section - Centered Layout as per Image */
.hero {
    padding: 200px 0 100px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.mesh-bg {
    display: none;
    /* Replaced by body bg */
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -0.04em;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin: 0 auto 48px;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.btn-whatsapp {
    background: var(--accent-color);
    color: white;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.btn-whatsapp {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}

.btn-whatsapp i {
    flex-shrink: 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.hero-visual {
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
}

.main-visual {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: var(--card-radius);
}

.main-visual img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) contrast(1.1);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    left: -20px;
}

.badge-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Trust Bar & Marquee */
.trust-bar {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: #f8fafc;
}

.trust-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.trust-bar p {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-content {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.1);
    letter-spacing: 0.15em;
    text-shadow: 1px 1px rgba(124, 58, 237, 0.05);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Stats Section */
.stats {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px;
    background: var(--glass-bg);
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
}

.stat-item h2 {
    font-size: 3.5rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    position: relative;
    padding: 40px;
    background: var(--glass-bg);
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.step-num {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
}

.process-step h3 {
    margin-bottom: 16px;
    color: var(--accent-color);
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle-left {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-item i {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-us-visual {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.why-us-visual img {
    width: 100%;
    border-radius: var(--card-radius);
    display: block;
}

.experience-card {
    position: absolute;
    top: 40px;
    left: 40px;
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.exp-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.exp-text {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-main);
}

.services {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    /* Increased from 32px */
}

.service-card {
    background: var(--glass-bg);
    padding: 60px 32px;
    /* Reduced from 48px to give more space for content */
    border-radius: var(--card-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
}

.service-card[data-service="web"] .service-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.service-card[data-service="wedding"] .service-icon {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.service-card[data-service="marketing"] .service-icon {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 32px;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li::before {
    content: '→';
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: 700;
}

/* Portfolio */
.portfolio {
    padding: 120px 0;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    overflow-x: auto;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.portfolio-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 32px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.tab-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    padding: 32px;
    text-align: left;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 48px;
    background: white;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    text-align: center;
}

.client-logo-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-tertiary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    font-weight: 800;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
}

.testimonial-slider .testimonial-card {
    flex: 0 0 100%;
    margin: 0;
    box-sizing: border-box;
    transition: opacity 0.3s;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: white;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.slider-btn i {
    width: 24px;
    height: 24px;
}

/* FAQ */
.faq {
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 32px 24px;
    display: none;
}

.faq-answer p {
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.consultation {
    padding: 120px 0;
}

.consultation {
    padding: 160px 0;
}

.consult-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 100px;
    border-radius: var(--card-radius);
    border: 1px solid var(--glass-border);
    position: relative;
}

.consult-content h2 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 32px;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.consult-content p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.consult-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-blob {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #34d399 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotate-blob 12s linear infinite;
    filter: blur(40px);
    opacity: 0.5;
}

@keyframes rotate-blob {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.floating-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    color: white;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.4));
    animation: rocket-float 4s ease-in-out infinite;
}

@keyframes rocket-float {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    background: #fff;
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 10;
}

/* Footer */
footer {
    padding: 160px 0 80px;
    background: #f8fafc;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-4px);
}

.footer-logo-img {
    height: 56px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
    color: var(--text-main);
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 320px;
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive */
/* Animations */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-grid,
    .why-us-grid,
    .consult-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        /* Reduced from 60px 32px to fit mobile better */
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .stats-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .portfolio-grid,
    .process-steps {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 100px 40px;
        transition: 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 32px;
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .portfolio-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        display: none;
        /* Hide top CTA on mobile */
    }

    .process-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
    }

    .process-step {
        background: white;
        padding: 32px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        text-align: left;
    }

    .process-track {
        display: block;
        /* Remove flex track */
    }

    .process-slider-controls {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual .main-visual img {
        height: 350px;
    }

    .stat-item h2,
    .exp-num {
        font-size: 3rem !important;
    }

    .marquee-content span {
        font-size: 1.5rem;
    }

    .consult-content h2 {
        font-size: 2.2rem;
        /* Reduced from 3rem */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid,
    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .stat-item h2,
    .exp-num {
        font-size: 2.5rem !important;
    }

    .consult-card {
        padding: 32px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .consult-content {
        width: 100%;
        max-width: 100%;
    }

    .consult-content h2 {
        font-size: 1.75rem;
        /* Further reduced from 4.5rem */
        margin-bottom: 16px;
        line-height: 1.2;
        width: 100%;
        white-space: normal;
    }

    .consult-content p {
        font-size: 0.95rem;
        margin-bottom: 24px;
        width: 100%;
    }

    .btn-whatsapp {
        width: 100%;
        max-width: 100%;
        padding: 16px 16px;
        font-size: 0.95rem;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }

    .tech-blob {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}