* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --accent-blue: #0071e3;
    --accent-purple: #8e44ad;
    --accent-pink: #e91e63;
    --accent-cyan: #00d4ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation - Apple Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}

.logo-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 44px !important;
        display: flex !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        width: 100% !important;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 32px 0;
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 44px);
        overflow-y: auto;
        z-index: 9999 !important;
        gap: 0;
        list-style: none;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 12px 0;
        width: 100%;
        display: block;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        width: 100%;
        color: var(--black) !important;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex !important;
        z-index: 10000;
        position: relative;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--black);
}

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

/* Floating Language Toggle */
.language-toggle-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 999;
}

.language-toggle-floating:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.language-toggle-floating:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hidden Maghoma easter-egg button (press "m" 3 times to show) */
.maghoma-easter-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
    padding: 10px 16px;
    font-size: 18px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.maghoma-easter-btn.maghoma-easter-btn--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.maghoma-easter-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.nav-cta:hover {
    background: var(--gray-800);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
    padding: 8px;
    margin: -8px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 20px;
    height: 1.5px;
    background: var(--black);
    border-radius: 1px;
    pointer-events: none;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Hero Section - Apple Style */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white);
    padding-top: 44px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -200px;
    left: -200px;
    animation: float1 5s ease-in-out infinite, pulse1 8s ease-in-out infinite;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -150px;
    right: -150px;
    animation: float2 20s ease-in-out infinite, pulse2 10s ease-in-out infinite;
    animation-delay: 2s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    right: 10%;
    animation: float3 9s ease-in-out infinite, pulse3 6s ease-in-out infinite;
    animation-delay: 4s;
}

/* Floating animations - each orb moves in a unique pattern with rotation and scale */
@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(80px, -60px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(40px, -100px) scale(0.95) rotate(180deg);
    }
    75% {
        transform: translate(-60px, -40px) scale(1.08) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
    33% {
        transform: translate(-70px, 80px) scale(1.12) rotate(240deg);
    }
    66% {
        transform: translate(60px, 50px) scale(0.9) rotate(120deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    30% {
        transform: translate(50px, 70px) scale(1.1) rotate(108deg);
    }
    60% {
        transform: translate(-80px, -50px) scale(0.92) rotate(216deg);
    }
    90% {
        transform: translate(30px, -30px) scale(1.05) rotate(324deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

/* Pulsing/breathing animations for depth */
@keyframes pulse1 {
    0%, 100% {
        opacity: 0.6;
        filter: blur(80px);
    }
    50% {
        opacity: 0.8;
        filter: blur(100px);
    }
}

@keyframes pulse2 {
    0%, 100% {
        opacity: 0.6;
        filter: blur(80px);
    }
    50% {
        opacity: 0.75;
        filter: blur(95px);
    }
}

@keyframes pulse3 {
    0%, 100% {
        opacity: 0.6;
        filter: blur(80px);
    }
    50% {
        opacity: 0.7;
        filter: blur(90px);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: var(--black);
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.3px;
}

.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Logo preview styles are now in slideshow section */

.logo-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.logo-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.logo-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.logo-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.logo-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Logo Slideshow Section */
.logo-slideshow-section {
    padding: 110px 0; /* Increased height for more breathing room around logos */
    background: var(--white);
    overflow: hidden;
}

.logo-slideshow {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    gap: 24px;
    animation: slideRightToLeft 30s linear infinite;
    will-change: transform;
}

.slideshow-track .logo-preview {
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
    aspect-ratio: 1;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow-track .logo-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 9 - 24px * 9));
    }
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: var(--gray-300);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: var(--black);
}

.section-subtitle {
    font-size: 21px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.4;
}

.services-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
}

.service-item {
    background: var(--white);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--gray-50);
}

.service-item-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-item:hover .service-item-content {
    padding-left: 44px;
}

.service-arrow {
    margin-left: auto;
    color: var(--gray-400);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-item.active .service-arrow {
    transform: rotate(180deg);
    color: var(--black);
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    background: var(--black);
    transform: scale(1.05);
}

.service-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.service-icon {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    color: var(--white);
    transform: scale(1.05);
}

.service-item-text {
    flex: 1;
}

.service-item-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
    letter-spacing: -0.3px;
}

.service-item-text p {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 15px;
    margin: 0;
}

.service-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gray-50);
}

.service-item.active .service-expanded {
    max-height: 800px;
}

.service-image {
    padding: 60px 40px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-fade {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}

.service-image-img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fadeCycle 16s ease-in-out infinite;
}

.service-image-img.fade-img-1 {
    animation-delay: 0s;
}

.service-image-img.fade-img-2 {
    animation-delay: 4s;
}

.service-image-img.fade-img-3 {
    animation-delay: 8s;
}

.service-image-img.fade-img-4 {
    animation-delay: 12s;
}

/* 2-image fade cycle for Business Cards */
.service-image-fade-2 .service-image-img {
    animation: fadeCycle2 8s ease-in-out infinite;
}

.service-image-fade-2 .fade-img-1-2 {
    animation-delay: 0s;
}

.service-image-fade-2 .fade-img-2-2 {
    animation-delay: 4s;
}

/* 3-image fade cycle for Wedding Invitations (portrait) */
.service-image-fade-3 {
    aspect-ratio: 3 / 4;
    max-width: 380px;
}

.service-image-fade-3 .service-image-img {
    aspect-ratio: 3 / 4;
    max-width: 380px;
    animation: fadeCycle3 12s ease-in-out infinite;
}

.service-image-fade-3 .fade-img-1-3 {
    animation-delay: 0s;
}

.service-image-fade-3 .fade-img-2-3 {
    animation-delay: 4s;
}

.service-image-fade-3 .fade-img-3-3 {
    animation-delay: 8s;
}

@keyframes fadeCycle3 {
    0% {
        opacity: 0;
    }
    4% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    34% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeCycle {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    35% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeCycle2 {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    45% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* 6-image fade cycle for Websites */
.service-image-fade-6 .service-image-img {
    animation: fadeCycle6 18s ease-in-out infinite;
}

.service-image-fade-6 .fade-img-1-6 {
    animation-delay: 0s;
}

.service-image-fade-6 .fade-img-2-6 {
    animation-delay: 3s;
}

.service-image-fade-6 .fade-img-3-6 {
    animation-delay: 6s;
}

.service-image-fade-6 .fade-img-4-6 {
    animation-delay: 9s;
}

.service-image-fade-6 .fade-img-5-6 {
    animation-delay: 12s;
}

.service-image-fade-6 .fade-img-6-6 {
    animation-delay: 15s;
}

@keyframes fadeCycle6 {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    35% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Single image fade in for Invoices */
.fade-img-single {
    animation: fadeInSingle 2s ease-in-out;
    opacity: 1;
}

@keyframes fadeInSingle {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.service-image-placeholder {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Different gradient backgrounds for each service image */
.logo-design-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.business-cards-img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.websites-img {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.email-signatures-img {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.brand-guidelines-img {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.invoices-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.advertisements-img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.posters-img {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.flyers-img {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.cards-img {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.business-proposals-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.invitations-img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Add a subtle pattern or design to the image placeholders */
.service-image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Brand Kit Section */
.brand-kit {
    padding: 120px 0;
    background: var(--gray-50);
}

.brand-kit-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

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

.mockup-item p {
    margin-top: 16px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

.mockup-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.4s ease;
}

.mockup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.business-card-mockup {
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.business-card-mockup .mockup-image {
    border-radius: 20px;
}

.website-mockup {
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.mockup-browser-bar {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--gray-200);
}

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

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

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #10b981;
}

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 400;
}

.mockup-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.website-mockup .mockup-image {
    border-radius: 0 0 20px 20px;
}

.social-mockup {
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.social-mockup .mockup-image {
    border-radius: 20px;
}

.social-content {
    flex: 1;
    background: var(--gray-100);
    padding: 16px;
}

.social-post-mockup {
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.social-post-mockup .mockup-image {
    border-radius: 20px;
}

.post-image {
    flex: 1;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-footer {
    height: 15%;
    background: var(--gray-100);
    padding: 12px;
}

.brand-kit-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
    letter-spacing: -0.3px;
}

.feature-item p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 80px;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.step p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: var(--gray-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 17px;
    font-style: italic;
}

.reviewer {
    display: flex;
    gap: 16px;
    align-items: center;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    font-size: 16px;
}

.reviewer-role {
    color: var(--gray-600);
    font-size: 13px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 80px;
}

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

.contact-form .btn-primary {
    align-self: center;
    margin-top: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--black);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-family: inherit;
    font-size: 17px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
    letter-spacing: -0.3px;
}

.info-item p {
    color: var(--gray-600);
    font-size: 15px;
    margin: 0;
}

.info-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.info-item p a:hover {
    color: var(--accent-blue);
    opacity: 0.8;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 17px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 17px;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        padding: 0 24px;
    }

    .logo-slideshow-section {
        padding: 60px 0;
    }

    .logo-slideshow {
        padding: 0 24px;
    }

    .slideshow-track .logo-preview {
        width: 240px;
        min-width: 240px;
    }

    @keyframes slideRightToLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-240px * 9 - 24px * 9));
        }
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .brand-kit-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Mobile menu styles are defined above at @media (max-width: 768px) */

    .section-title {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .section-subtitle {
        font-size: 19px;
    }

    .services {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-cta {
        margin-top: 24px;
    }

    .brand-kit,
    .how-it-works,
    .reviews,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
        height: 44px;
    }

    .logo-text {
        font-size: 15px;
    }

    .hamburger {
        display: flex !important;
        z-index: 10000;
        position: relative;
    }

    .language-toggle-floating {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 13px;
        min-width: 55px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .language-toggle-floating:hover {
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    }

    /* Nav menu styles are handled in the first @media (max-width: 768px) block above */

    .hero {
        min-height: 100vh;
        padding: 80px 0 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-background {
        display: block;
    }

    .gradient-orb {
        filter: blur(60px);
        opacity: 0.5;
    }

    .orb-1 {
        width: 400px;
        height: 400px;
        top: -100px;
        left: -100px;
    }

    .orb-2 {
        width: 350px;
        height: 350px;
        bottom: -100px;
        right: -100px;
    }

    .orb-3 {
        width: 300px;
        height: 300px;
        top: 50%;
        right: 5%;
    }

    .hero-container {
        padding: 0 20px;
    }

    .logo-slideshow-section {
        padding: 40px 0;
    }

    .logo-slideshow {
        padding: 0 20px;
    }

    .slideshow-track {
        gap: 16px;
    }

    .slideshow-track .logo-preview {
        width: 200px;
        min-width: 200px;
        border-radius: 20px;
    }

    @keyframes slideRightToLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 9 - 16px * 9));
        }
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
        line-height: 1.1;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 36px;
        padding: 0 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 0;
        max-width: 400px;
        margin: 0 auto;
        justify-content: center;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-visual {
        display: none;
    }

    .logo-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .logo-preview {
        border-radius: 16px;
    }

    .logo-image {
        border-radius: 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-cta {
        margin-top: 20px;
    }

    .section-cta .btn-primary {
        width: 100%;
        max-width: 100%;
    }

    .services {
        padding: 60px 0;
    }

    .services-list {
        border-radius: 16px;
    }

    .service-item-content {
        padding: 24px 20px;
        gap: 16px;
    }

    .service-item:hover .service-item-content {
        padding-left: 24px;
    }

    .service-image {
        padding: 40px 24px 24px 24px;
    }

    .service-image-placeholder {
        max-width: 100%;
        border-radius: 12px;
    }

    .service-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .service-icon {
        width: 22px;
        height: 22px;
    }

    .service-icon-wrapper svg {
        width: 22px;
        height: 22px;
    }

    .service-item-text h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .service-item-text p {
        font-size: 14px;
    }

    .brand-kit {
        padding: 60px 0;
    }

    .brand-kit-content {
        gap: 40px;
    }

    .mockup-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mockup-card {
        border-radius: 16px;
    }

    .brand-kit-features {
        gap: 24px;
    }

    .feature-item {
        gap: 16px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .feature-item h4 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }

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

    .step p {
        font-size: 15px;
    }

    .reviews {
        padding: 60px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .review-card {
        padding: 24px;
        border-radius: 16px;
    }

    .stars {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .review-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .reviewer-avatar {
        width: 44px;
        height: 44px;
    }

    .reviewer-name {
        font-size: 15px;
    }

    .reviewer-role {
        font-size: 13px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        margin-top: 40px;
        gap: 40px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }

    .contact-info {
        gap: 24px;
    }

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

    .info-item h4 {
        font-size: 17px;
    }

    .info-item p {
        font-size: 15px;
    }

    .footer {
        padding: 60px 0 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 15px;
    }

    .footer-bottom {
        padding-top: 32px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero {
        min-height: 100vh;
        padding: 80px 0 60px;
    }

    .hero-background {
        display: block;
    }

    .gradient-orb {
        filter: blur(50px);
        opacity: 0.4;
    }

    .orb-1 {
        width: 350px;
        height: 350px;
    }

    .orb-2 {
        width: 300px;
        height: 300px;
    }

    .orb-3 {
        width: 250px;
        height: 250px;
    }

    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-background {
        display: block;
    }

    .gradient-orb {
        filter: blur(40px);
        opacity: 0.35;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .logo-slideshow-section {
        padding: 32px 0;
    }

    .logo-slideshow {
        padding: 0 16px;
    }

    .slideshow-track {
        gap: 12px;
    }

    .slideshow-track .logo-preview {
        width: 160px;
        min-width: 160px;
        border-radius: 16px;
    }

    @keyframes slideRightToLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 9 - 12px * 9));
        }
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 16px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        padding: 0 16px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-cta {
        padding: 0;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        align-items: stretch;
        margin: 0 auto;
    }

    .hero-visual {
        display: none;
    }

    .logo-showcase {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 15px;
    }

    .logo-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0;
        max-width: 100%;
    }

    .logo-preview {
        aspect-ratio: 1;
        border-radius: 12px;
        min-height: 120px;
    }

    .logo-image {
        border-radius: 12px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .services,
    .brand-kit,
    .how-it-works,
    .reviews,
    .contact {
        padding: 48px 0;
    }

    .business-card-mockup,
    .website-mockup,
    .social-mockup,
    .social-post-mockup {
        border-radius: 12px;
    }

    .business-card-mockup::before {
        font-size: 20px;
    }

    .business-card-mockup::after {
        font-size: 12px;
    }

    .mockup-browser-bar {
        padding: 10px 12px;
    }

    .browser-url {
        font-size: 10px;
    }

    .mockup-content {
        font-size: 16px;
    }

    .social-header,
    .post-header {
        font-size: 16px;
    }

    .services-list {
        border-radius: 12px;
    }

    .service-item-content {
        padding: 20px 16px;
        gap: 12px;
    }

    .service-item:hover .service-item-content {
        padding-left: 20px;
    }

    .service-image {
        padding: 30px 20px 20px 20px;
    }

    .service-image-placeholder {
        border-radius: 10px;
    }

    .service-image-placeholder::before {
        width: 60px;
        height: 60px;
    }

    .service-icon-wrapper {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .service-icon {
        width: 18px;
        height: 18px;
    }

    .service-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .service-item-text h3 {
        font-size: 15px;
    }

    .service-item-text p {
        font-size: 13px;
    }

    .mockup-grid {
        gap: 20px;
    }

    .mockup-item p {
        font-size: 13px;
        margin-top: 12px;
    }

    .steps {
        gap: 28px;
        margin-top: 32px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 14px;
    }

    .reviews-grid {
        gap: 16px;
        margin-top: 32px;
    }

    .review-card {
        padding: 20px;
    }

    .contact-content {
        margin-top: 32px;
    }

    .contact-info {
        gap: 24px;
        margin-top: 40px;
    }

    .contact-form {
        gap: 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }

    .info-item {
        gap: 12px;
    }

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

    .info-item h4 {
        font-size: 15px;
    }

    .info-item p {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .logo-showcase {
        gap: 10px;
    }

    .service-card,
    .review-card {
        padding: 16px;
    }
}
