/* ==========================================
   CYBER CLINIQUE - Premium Modern Website
   ========================================== */

/* DM Sans - Clean geometric font similar to Circular Std */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Colors - Clean Yellow Theme */
    --color-primary: #FFDD03;
    --color-primary-dark: #E5C703;
    --color-primary-light: #FFF176;
    --color-secondary: #222222;
    --color-accent: #FFDD03;

    /* Gradients - Simplified for clean look */
    --gradient-primary: #FFDD03;
    --gradient-secondary: #FFDD03;
    --gradient-hero: #FFFFFF;
    --gradient-text: #222222;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-black: #222222;
    --color-gray-50: #FAF8F0;
    --color-gray-100: #FAF8F0;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #333333;
    --color-gray-800: #222222;
    --color-gray-900: #222222;

    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-padding: clamp(20px, 5vw, 80px);
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows - Minimal/none for clean look */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: 0 2px 8px 0 rgb(0 0 0 / 0.04);
    --shadow-2xl: 0 4px 12px 0 rgb(0 0 0 / 0.05);
    --shadow-glow: none;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* Visually Hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hide on mobile */
.show-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    .show-mobile-only {
        display: inline !important;
    }
    .showcase-card.hide-mobile.show {
        display: block !important;
    }
    .see-more-btn.show-mobile-only {
        display: block !important;
        width: 100%;
        padding: 16px 24px;
        margin-top: 24px;
        background: var(--color-white);
        border: 2px solid var(--color-gray-200);
        border-radius: var(--radius-full);
        font-size: 16px;
        font-weight: 600;
        color: var(--color-gray-700);
        cursor: pointer;
        transition: all var(--transition-base);
    }
    .see-more-btn.show-mobile-only:hover {
        border-color: var(--color-primary);
        background: var(--color-primary);
        color: var(--color-gray-900);
    }
    .see-more-btn.hidden {
        display: none !important;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Gradient Text - Now solid for clean look */
.gradient-text {
    color: var(--color-gray-900);
}

.gray-text {
    color: #717171;
}

/* Features Grid - Checkmark Style */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 120px;
    max-width: 100%;
    margin: 60px auto 0;
    text-align: left;
}

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

.feature-check {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.feature-check svg {
    width: 100%;
    height: 100%;
    color: #717171;
}

.feature-item p {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-gray-900);
    margin: 0;
}

.feature-item strong {
    font-weight: 700;
}

.showcase .section-header {
    max-width: 950px;
}

.showcase .section-title {
    font-size: 64px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 24px;
    }

    .showcase .section-title {
        font-size: 2rem;
        text-align: left;
    }

    .feature-check {
        width: 32px;
        height: 32px;
    }

    .feature-item {
        gap: 14px;
    }

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

/* ==========================================
   NAVIGATION - Buy Me a Coffee Style
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.nav-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Left Navigation */
.nav-left {
    display: flex;
    align-items: center;
    gap: 56px;
    list-style: none;
}

/* Center Logo - absolutely positioned for true center */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text,
.logo-accent {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gray-900);
    letter-spacing: -0.05em;
}

/* Right Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

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

.nav-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-700);
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.heart-icon {
    color: var(--color-gray-500);
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform var(--transition-base);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    list-style: none;
    margin-top: 8px;
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 1rem;
    color: var(--color-gray-700);
    transition: background var(--transition-base);
}

.dropdown-menu li a:hover {
    background: var(--color-gray-100);
    color: var(--color-gray-900);
}

/* Sign Up Button */
.signup-btn {
    background: var(--color-primary);
    color: var(--color-gray-900);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.signup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 221, 0, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-gray-800);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.mobile-menu.active .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-links li:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.mobile-nav-links .mobile-login {
    color: var(--color-gray-600);
    font-weight: 500;
}

.mobile-nav-links .mobile-cta {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-gray-900);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    margin-top: 12px;
    font-weight: 600;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-right {
        display: none;
    }

    .nav-dropdown {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

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

    .nav-left {
        display: none;
    }
}

/* ==========================================
   HERO SECTION - Centered Style
   ========================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 160px 0 0;
    background: transparent;
}

.hero-centered {
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-rating .stars {
    color: #2e7d32;
    font-size: 22px;
    letter-spacing: 8px;
}

.hero-rating .rating-text {
    font-size: 18px;
    color: var(--color-gray-700);
    font-weight: 500;
}

.hero-title-centered {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle-centered {
    font-size: 22px;
    color: var(--color-gray-900);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-centered {
    margin-bottom: 20px;
}

.btn-primary-large {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-gray-900);
    padding: 22px 50px;
    border-radius: var(--radius-full);
    font-size: 22px;
    font-weight: 900;
    transition: all var(--transition-base);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 221, 0, 0.4);
}

.hero-note {
    font-size: 1rem;
    color: var(--color-gray-500);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cards-left {
    left: 40px;
    align-items: flex-start;
}

.floating-cards-right {
    right: 40px;
    align-items: flex-end;
}

.floating-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    max-width: 200px;
    text-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

/* Staggered entrance animation - bottom cards first, with rotation */
.floating-cards-left .card-1 {
    transform: translateX(-50px) rotate(-6deg);
    animation: slideInLeft1 0.6s ease forwards;
    animation-delay: 0.8s;
}

.floating-cards-left .card-2 {
    transform: translateX(-50px) rotate(4deg);
    animation: slideInLeft2 0.6s ease forwards;
    animation-delay: 0.5s;
}

.floating-cards-left .card-3 {
    transform: translateX(-50px) rotate(-3deg);
    animation: slideInLeft3 0.6s ease forwards;
    animation-delay: 0.2s;
}

.floating-cards-right .card-4 {
    transform: translateX(50px) rotate(5deg);
    animation: slideInRight4 0.6s ease forwards;
    animation-delay: 0.8s;
}

.floating-cards-right .card-5 {
    transform: translateX(50px) rotate(-4deg);
    animation: slideInRight5 0.6s ease forwards;
    animation-delay: 0.5s;
}

.floating-cards-right .card-6 {
    transform: translateX(50px) rotate(3deg);
    animation: slideInRight6 0.6s ease forwards;
    animation-delay: 0.2s;
}

@keyframes slideInLeft1 {
    0% {
        opacity: 0;
        transform: translateX(-50px) rotate(-6deg);
    }
    100% {
        opacity: 1;
        transform: translateX(20px) rotate(-6deg);
    }
}

@keyframes slideInLeft2 {
    0% {
        opacity: 0;
        transform: translateX(-50px) rotate(4deg);
    }
    100% {
        opacity: 1;
        transform: translateX(-10px) rotate(4deg);
    }
}

@keyframes slideInLeft3 {
    0% {
        opacity: 0;
        transform: translateX(-50px) rotate(-3deg);
    }
    100% {
        opacity: 1;
        transform: translateX(30px) rotate(-3deg);
    }
}

@keyframes slideInRight4 {
    0% {
        opacity: 0;
        transform: translateX(50px) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(-20px) rotate(5deg);
    }
}

@keyframes slideInRight5 {
    0% {
        opacity: 0;
        transform: translateX(50px) rotate(-4deg);
    }
    100% {
        opacity: 1;
        transform: translateX(10px) rotate(-4deg);
    }
}

@keyframes slideInRight6 {
    0% {
        opacity: 0;
        transform: translateX(50px) rotate(3deg);
    }
    100% {
        opacity: 1;
        transform: translateX(-30px) rotate(3deg);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gray-900);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 12px;
}

/* Individual card avatar colors */
.card-1 .card-avatar { background: #E64C3B; } /* Red - IT Support */
.card-2 .card-avatar { background: #3B82F6; } /* Blue - Web Dev */
.card-3 .card-avatar { background: #10B981; } /* Green - Cybersecurity */
.card-4 .card-avatar { background: #8B5CF6; } /* Purple - IT Consulting */
.card-5 .card-avatar { background: #F59E0B; } /* Amber - SEO & Mobile */
.card-6 .card-avatar { background: #06B6D4; } /* Cyan - Data Protection */

.card-avatar i {
    font-size: 24px;
}

.card-text {
    font-size: 14px;
    color: var(--color-gray-900);
    line-height: 1.4;
    margin-bottom: 8px;
}

.card-text strong {
    font-weight: 700;
}

.card-supporters {
    font-size: 13px;
    color: var(--color-gray-500);
}

/* Scroll animation handled by JavaScript for smooth parallax effect */

@media (max-width: 1400px) {
    .floating-cards {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-rating {
        gap: 6px;
        margin-bottom: 24px;
    }

    .hero-rating .stars {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .hero-rating .rating-text {
        font-size: 14px;
    }

    .hero-title-centered {
        font-size: 4rem;
        margin-bottom: 14px;
    }

    .hero-subtitle-centered {
        font-size: 1rem;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-cta-centered {
        margin-bottom: 10px;
    }

    .btn-primary-large {
        padding: 18px 40px;
        font-size: 1.15rem;
    }

    .hero-note {
        display: none;
    }

    .hide-mobile {
        display: none;
    }
}

@media (max-width: 500px) {
    .hero-title-centered {
        font-size: 2.5rem;
    }

    .hero-services-list {
        display: inline;
    }
}

/* OLD HERO STYLES (kept for reference)
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: #FFFFFF;
}

.hero-grid {
    display: none;
}
*/

.floating-shapes {
    display: none;
}

.shape {
    display: none;
}

.shape-1 {
    display: none;
    width: 600px;
    height: 600px;
    background: rgba(34, 34, 34, 0.15);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(34, 34, 34, 0.15);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(34, 34, 34, 0.15);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(-30px, -20px) rotate(3deg);
    }
}

/* Hero Wrapper - Two Column Layout */
.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
}

/* Hero Showcase - Animated Browser */
.hero-showcase {
    position: relative;
    perspective: 1000px;
}

.showcase-browser {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: visible;
    transform: rotateY(-5deg) rotateX(5deg);
    animation: browserFloat 6s ease-in-out infinite;
}

@keyframes browserFloat {
    0%, 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-3deg) rotateX(3deg) translateY(-10px); }
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--color-gray-50);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
}

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

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots .dot.red { background: #ff5f57; }
.browser-dots .dot.yellow { background: #ffbd2e; }
.browser-dots .dot.green { background: #2D813A; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--color-gray-500);
    border: none;
}

.browser-url svg {
    width: 12px;
    height: 12px;
    color: #2D813A;
}

.browser-content {
    padding: 20px;
    min-height: 280px;
    background: #FAF8F0;
}

/* Mock Website Elements */
.mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    animation: fadeSlideIn 0.6s ease-out 0.2s both;
}

.mock-logo {
    width: 80px;
    height: 24px;
    background: var(--color-gray-800);
    border-radius: 4px;
}

.mock-nav-items {
    display: flex;
    gap: 12px;
}

.mock-nav-items span {
    width: 40px;
    height: 8px;
    background: var(--color-gray-300);
    border-radius: 4px;
}

.mock-hero {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeSlideIn 0.6s ease-out 0.4s both;
}

.mock-title {
    width: 70%;
    height: 20px;
    background: var(--color-gray-800);
    border-radius: 4px;
    margin: 0 auto 12px;
}

.mock-subtitle {
    width: 50%;
    height: 10px;
    background: var(--color-gray-400);
    border-radius: 4px;
    margin: 0 auto 16px;
}

.mock-btn {
    width: 80px;
    height: 28px;
    background: var(--color-primary);
    border-radius: 6px;
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 221, 3, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 221, 3, 0); }
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    animation: fadeSlideIn 0.6s ease-out 0.6s both;
}

.mock-card {
    background: var(--color-white);
    padding: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    animation: cardPop 0.4s ease-out both;
}

.mock-card:nth-child(1) { animation-delay: 0.8s; }
.mock-card:nth-child(2) { animation-delay: 1s; }
.mock-card:nth-child(3) { animation-delay: 1.2s; }

@keyframes cardPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.mock-card-icon {
    width: 32px;
    height: 32px;
    background: var(--color-gray-300);
    border-radius: 8px;
    margin-bottom: 12px;
}

.mock-card-lines span {
    display: block;
    height: 6px;
    background: var(--color-gray-200);
    border-radius: 3px;
    margin-bottom: 6px;
}

.mock-card-lines span:first-child { width: 100%; }
.mock-card-lines span:last-child { width: 60%; }

@keyframes fadeSlideIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Floating Elements */
.floating-code {
    position: absolute;
    top: -20px;
    left: -40px;
    background: #1e293b;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.7rem;
    box-shadow: var(--shadow-xl);
    animation: floatCode 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes floatCode {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    50% { transform: translate(-5px, -10px) rotate(0deg); }
}

.code-line {
    display: block;
    line-height: 1.6;
    color: #e2e8f0;
}

.code-line.indent {
    padding-left: 16px;
}

.code-tag { color: #f472b6; }
.code-attr { color: #FFDD03; }
.code-string { color: #2D813A; }

.floating-metrics {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    animation: floatMetrics 5s ease-in-out infinite;
    z-index: 10;
}

@keyframes floatMetrics {
    0%, 100% { transform: translate(0, 0) rotate(2deg); }
    50% { transform: translate(5px, -8px) rotate(0deg); }
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D813A;
    font-family: var(--font-display);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.floating-cursor {
    position: absolute;
    bottom: 80px;
    left: 50%;
    color: var(--color-gray-600);
    animation: cursorMove 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes cursorMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(60px, 10px); }
    75% { transform: translate(20px, 30px); }
}

.floating-cursor svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-showcase {
        display: none;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray-500);
    margin-bottom: 24px;
    box-shadow: none;
}

.badge-dot {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-gray-900);
    box-shadow: none;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--color-primary-dark);
}

.btn-primary .btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-gray-700);
    border: none;
}

.btn-secondary:hover {
    color: var(--color-gray-900);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: none;
}

.stat {
    text-align: center;
    position: relative;
    padding: 0 30px;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--color-gray-300), transparent);
}

.stat-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    stroke: var(--color-gray-600);
    opacity: 0.9;
}

.stat-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.3;
    display: block;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-500);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Scroll Indicator */
.scroll-indicator {
    display: none; /* Hidden - conflicts with stats section */
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-gray-400);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gray-500);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

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

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ==========================================
   SERVICES SECTION - Shop Style
   ========================================== */
.services {
    background: transparent;
    padding: 80px 0 20px;
}

/* Services Header - Centered like Shop */
.services-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.services-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    -webkit-text-stroke: 0.5px var(--color-gray-500);
}

.services-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-gray-900);
    line-height: 1.3;
    max-width: 100%;
    margin: 0 auto;
}

/* Big White Container Card */
.services-container-card {
    background: var(--color-white);
    border-radius: 40px;
    padding: 45px 60px 5px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

/* Services Cards Grid - Stacked cards layout */
.services-cards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
    min-height: 480px;
    padding: 20px 0;
}

/* Individual Service Card */
.service-card-new {
    background: var(--color-white);
    border: 1px solid #e8e8e8;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: absolute;
    width: clamp(250px, 25vw, 300px);
}

/* Left card (IT Support) - behind left */
.service-card-new:nth-child(1) {
    transform: translateX(-25vw) scale(0.9);
    z-index: 1;
    opacity: 1;
}

/* Center card (Web Development) - front and taller */
.service-card-new:nth-child(2) {
    transform: translateX(0) scale(1);
    z-index: 3;
    border-color: #e8e8e8;
}

.service-card-new:nth-child(2) .service-card-visual {
    min-height: 160px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.service-card-new:nth-child(2) .service-card-content {
    padding: 26px 24px;
}

/* Right card (Cybersecurity) - behind right */
.service-card-new:nth-child(3) {
    transform: translateX(25vw) scale(0.9);
    z-index: 1;
    opacity: 1;
}

/* Hover effects - subtle like tweet cards */
.service-card-new:nth-child(1):hover {
    transform: translateX(-24vw) scale(0.92);
    z-index: 2;
    opacity: 1;
    border-color: var(--color-gray-400);
}

.service-card-new:nth-child(2):hover {
    transform: translateX(0) scale(1.02);
    border-color: var(--color-gray-900);
}

.service-card-new:nth-child(3):hover {
    transform: translateX(24vw) scale(0.92);
    z-index: 2;
    opacity: 1;
    border-color: var(--color-gray-400);
}

/* Keep .SECURE badge on the left like the other cards */
.service-card-new:nth-child(3) .service-card-badge {
    left: 16px;
    right: auto;
}

/* Card Visual Area - Yellow background with illustration */
.service-card-visual {
    background: #F7D046;
    padding: 4px 30px 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

/* Left and right cards have white background */
.service-card-new:nth-child(1) .service-card-visual,
.service-card-new:nth-child(3) .service-card-visual {
    background: #fff;
}

.service-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-white);
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gray-900);
    letter-spacing: 0.5px;
}

.service-card-illustration {
    width: 150px;
    height: 180px;
}

/* Card Content Area */
.service-card-content {
    padding: 24px;
    text-align: left;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 18px;
    text-align: left;
}

.service-card-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.service-card-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.service-card-highlight i {
    display: none;
}

.service-card-meta-divider {
    width: 1px;
    height: 16px;
    background: var(--color-gray-300);
}

.service-card-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-600);
}

.service-card-badge-small i {
    font-size: 0.85rem;
    color: #2e7d32;
}

.service-card-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.service-card-features span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--color-gray-600);
    width: 100%;
    white-space: nowrap;
}

.service-card-features span::after {
    content: '';
    height: 8px;
    background: var(--color-gray-200);
    border-radius: 9999px;
    flex-shrink: 0;
}

.service-card-features span:first-child::after {
    width: 100%;
    flex: 1;
}

.service-card-features span:last-child::after {
    width: 100%;
    flex: 1;
}

.service-card-btn {
    display: inline-block;
    width: auto;
    background: transparent;
    border: 1px solid var(--color-gray-300);
    color: var(--color-gray-900);
    text-align: center;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.service-card-btn:hover {
    background: var(--color-gray-900);
    border-color: var(--color-gray-900);
    color: var(--color-white);
    transform: translateY(-1px);
}

.service-card-btn-primary {
    display: block;
    width: 100%;
    background: #F7D046;
    border: none;
    color: var(--color-gray-900);
    text-align: center;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all var(--transition-base);
}

.service-card-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247, 208, 70, 0.4);
}

/* Floating Stats Section */
.services-floating-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.floating-stat-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float-gentle 6s ease-in-out infinite;
}

.floating-stat-card:nth-child(2) {
    animation-delay: -2s;
}

.floating-stat-card:nth-child(3) {
    animation-delay: -4s;
}

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

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gray-900);
    fill: var(--color-gray-900);
    stroke: none;
}

.stat-content {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* Gentle floating animation */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Services Responsive */
@media (max-width: 950px) {
    .services-title {
        font-size: 48px;
    }

    .services-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services-container-card {
        padding: 20px;
        border-radius: 24px;
    }

    .services-cards-grid {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        gap: 12px;
        padding: 0;
        margin-bottom: 20px;
        overflow: visible;
    }

    /* Hide IT Support and Cybersecurity cards on mobile */
    .service-card-new:nth-child(1),
    .service-card-new:nth-child(3) {
        display: none;
    }

    /* Web Development card - full width, prominent */
    .service-card-new:nth-child(2) {
        position: relative;
        width: 100%;
        max-width: none;
        border-radius: 16px;
        transform: none !important;
        opacity: 1 !important;
        z-index: 1;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .service-card-new:nth-child(2):hover {
        transform: none;
    }

    .service-card-visual {
        min-height: 100px;
        padding: 12px 20px;
    }

    .service-card-illustration {
        width: 120px;
        height: 120px;
    }

    .service-card-badge {
        font-size: 10px;
        padding: 3px 6px;
        top: 8px;
        left: 8px;
    }

    .service-card-content {
        padding: 10px 14px 14px;
    }

    .service-card-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .service-card-meta {
        display: flex;
        gap: 6px;
        margin-bottom: 16px;
    }

    .service-card-features {
        display: none;
    }

    .service-card-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .services-floating-stats {
        gap: 20px;
    }

    .floating-stat-card {
        padding: 16px 20px;
    }

    /* Mobile Combined Services Card */
    .mobile-services-combined {
        display: flex !important;
        background: var(--color-white);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        padding: 16px;
        gap: 12px;
        align-items: center;
    }

    .mobile-service-item {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-service-icon {
        width: 40px;
        height: 40px;
        background: var(--color-primary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-service-icon i {
        font-size: 18px;
        color: var(--color-gray-900);
    }

    .mobile-service-info h4 {
        font-size: 13px;
        font-weight: 700;
        color: var(--color-gray-900);
        margin-bottom: 2px;
    }

    .mobile-service-info p {
        font-size: 11px;
        color: var(--color-gray-500);
        line-height: 1.3;
    }

    .mobile-service-divider {
        width: 1px;
        height: 40px;
        background: var(--color-gray-200);
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .services-container-card {
        padding: 20px;
        border-radius: 20px;
    }

    .services-title {
        font-size: 2rem;
        text-align: left;
        margin-bottom: 16px;
    }

    .services-subtitle {
        text-align: left;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .services-floating-stats {
        flex-direction: column;
        align-items: center;
    }

    .floating-stat-card {
        width: 100%;
        max-width: 280px;
        animation: none;
    }
}

/* ==========================================
   WEB DEV SECTION - Large Mockup Display
   ========================================== */
.web-dev-section {
    padding: 15px 0 var(--section-padding);
}

.web-dev-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 450px;
}

/* Floating cards - varied styles */
.web-card {
    position: absolute;
    background: var(--color-white);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    font-size: 0.8rem;
    color: var(--color-gray-700);
}

.web-card svg {
    color: var(--color-gray-500);
    flex-shrink: 0;
}

/* Stat card style - vertical layout with big number */
.web-card-stat {
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
    gap: 6px;
}

.web-card-stat svg {
    color: var(--color-gray-400);
}

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

.stat-info strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-gray-900);
}

.stat-info span {
    font-size: 0.7rem;
    color: var(--color-gray-500);
}

/* Rating card */
.web-card-rating {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 6px;
}

.rating-label {
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-badge {
    background: var(--color-gray-900);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 2px;
}

/* Message/testimonial card */
.web-card-message {
    padding: 10px 12px;
    gap: 10px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: #D8573F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.message-content strong {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.message-content span {
    font-size: 0.7rem;
    color: var(--color-gray-500);
}

/* Earnings card */
.web-card-earnings {
    gap: 6px;
}

.web-card-earnings strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-gray-900);
}

.web-card-earnings span {
    font-size: 0.7rem;
    color: var(--color-gray-500);
}

/* Card positions - 4 left, 4 right around center mockup */
/* Left side - staggered */
.web-card-1 {
    left: 8%;
    top: 5%;
}

.web-card-2 {
    left: 2%;
    top: 28%;
}

.web-card-3 {
    left: 6%;
    top: 55%;
}

.web-card-4 {
    left: 3%;
    bottom: 8%;
}

/* Right side - staggered */
.web-card-5 {
    right: 2%;
    top: 5%;
}

.web-card-6 {
    right: 6%;
    top: 32%;
}

.web-card-7 {
    right: 3%;
    top: 60%;
}

.web-card-8 {
    right: 8%;
    bottom: 5%;
}

/* Giant website mockup */
.web-mockup {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 520px;
}

.web-mockup-browser {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.web-mockup-header {
    background: #222;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.web-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #2D813A; }

.web-mockup-url {
    flex: 1;
    background: #444;
    border-radius: 4px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 11px;
}

.web-mockup-url svg {
    color: #2D813A;
}

.web-mockup-content {
    padding: 0;
    background: #fafafa;
}

/* Mockup Navigation */
.mockup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.mockup-logo {
    width: 60px;
    height: 16px;
    background: #222;
    border-radius: 3px;
}

.mockup-nav-links {
    display: flex;
    gap: 12px;
}

.mockup-nav-links span {
    width: 36px;
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
}

.mockup-nav-cta {
    width: 56px;
    height: 20px;
    background: #D8573F;
    border-radius: 4px;
}

/* Mockup Hero */
.mockup-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: #fff;
}

.mockup-hero-content {
    flex: 1;
}

.mockup-headline {
    width: 80%;
    height: 14px;
    background: #222;
    border-radius: 3px;
    margin-bottom: 6px;
}

.mockup-subheadline {
    width: 60%;
    height: 10px;
    background: #222;
    border-radius: 3px;
    margin-bottom: 8px;
}

.mockup-text {
    width: 90%;
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    margin-bottom: 10px;
}

.mockup-cta-btn {
    width: 70px;
    height: 22px;
    background: #D8573F;
    border-radius: 4px;
}

.mockup-hero-image {
    width: 120px;
    height: 70px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 8px;
}

/* Mockup Features */
.mockup-features {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: #fafafa;
}

.mockup-feature-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mockup-feature-icon {
    width: 24px;
    height: 24px;
    background: #D8573F;
    border-radius: 5px;
    margin-bottom: 6px;
}

.mockup-feature-title {
    width: 70%;
    height: 6px;
    background: #222;
    border-radius: 3px;
    margin-bottom: 4px;
}

.mockup-feature-text {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
}

/* Mockup Footer */
.mockup-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #222;
}

.mockup-footer-logo {
    width: 40px;
    height: 10px;
    background: #555;
    border-radius: 3px;
}

.mockup-footer-links {
    display: flex;
    gap: 10px;
}

.mockup-footer-links span {
    width: 28px;
    height: 5px;
    background: #555;
    border-radius: 2px;
}

/* CTA Button */
.web-dev-cta {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: #D8573F;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.web-dev-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216, 87, 63, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .web-bubble {
        max-width: 220px;
        padding: 12px 16px;
    }

    .web-bubble-content strong {
        font-size: 0.85rem;
    }

    .web-bubble-content span {
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .web-card {
        display: none;
    }

    .web-mockup {
        max-width: 100%;
    }
}

/* ==========================================
   CYBERSECURITY SECTION
   ========================================== */
.cyber-section {
    padding: 15px 0 var(--section-padding);
}

.cyber-container-card {
    background: var(--color-white);
}

.cyber-tag {
    background: transparent !important;
    color: var(--color-gray-900) !important;
}

.cyber-dev-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 520px;
}

/* Cyber floating cards */
.cyber-card {
    position: absolute;
    background: var(--color-white);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    font-size: 0.8rem;
    color: var(--color-gray-700);
}

.cyber-card svg {
    color: #2D813A;
    flex-shrink: 0;
}

/* Cyber stat card */
.cyber-card-stat {
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
    gap: 6px;
}

.cyber-card-stat svg {
    color: #2D813A;
}

/* Cyber rating card */
.cyber-card-rating {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 6px;
}

.cyber-badge {
    background: #2D813A !important;
}

/* Cyber card positions - left column & right column */
/* Left column - 4 cards stacked vertically */
.cyber-card-1 {
    left: 5%;
    top: 0;
}

.cyber-card-2 {
    left: 5%;
    top: 110px;
}

.cyber-card-3 {
    left: 5%;
    top: 240px;
}

.cyber-card-4 {
    left: 5%;
    top: 340px;
}

/* Right column - 4 cards stacked vertically */
.cyber-card-5 {
    right: 5%;
    top: 0;
}

.cyber-card-6 {
    right: 5%;
    top: 130px;
}

.cyber-card-7 {
    right: 5%;
    top: 260px;
}

.cyber-card-8 {
    right: 5%;
    top: 360px;
}

/* Shield mockup */
.cyber-mockup {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-mockup-shield {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shield-glow {
    position: absolute;
    width: 220px;
    height: 260px;
    background: radial-gradient(ellipse, rgba(45, 129, 58, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.shield-main {
    position: relative;
    z-index: 5;
}

.shield-main svg {
    width: 180px;
    height: 220px;
    filter: drop-shadow(0 20px 40px rgba(45, 129, 58, 0.3));
}

.shield-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: #2D813A;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2D813A;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Cyber section responsive */
@media (max-width: 992px) {
    .cyber-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .mockup-hero {
        flex-direction: column;
        gap: 24px;
    }

    .mockup-hero-image {
        width: 100%;
        height: 120px;
    }

    .mockup-features {
        flex-direction: column;
    }
}


/* ==========================================
   BRANDING SECTION
   ========================================== */
.branding {
    padding: var(--section-padding) 0;
}

.branding-container-card {
    background: var(--color-white);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.branding-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.branding-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.branding-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.branding-subtitle {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-gray-900);
    line-height: 1.4;
}

/* Branding Collage Grid */
.branding-collage {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.collage-item {
    border-radius: 20px;
    overflow: hidden;
}

/* Video Card - Top Left */
.collage-video {
    grid-column: 1;
    grid-row: 1;
}

/* Second row - Early access left, Locked+Podcast right */
.collage-early {
    grid-column: 1;
    grid-row: 2;
}

/* Bottom Right: Contains Locked Card + Podcast Card */
.collage-bottom-right {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 16px;
}

/* Portfolio Preview Card */
.portfolio-preview-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #1a1a1a;
    cursor: pointer;
}

.portfolio-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.portfolio-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-preview-card:hover .portfolio-preview-overlay {
    opacity: 1;
}

.portfolio-preview-label {
    background: white;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.portfolio-preview-card:hover .portfolio-preview-label {
    transform: translateY(0);
}

.portfolio-preview-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.portfolio-preview-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.portfolio-preview-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.video-card {
    position: relative;
    background: linear-gradient(135deg, #3a6b4a 0%, #2d5a3d 50%, #1f4a2f 100%);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.video-thumbnail {
    position: absolute;
    inset: 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.97);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    color: #1a1a1a;
}

.video-progress {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.video-time {
    color: white;
    font-size: 12px;
    font-weight: 600;
    min-width: 38px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.progress-bar {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.35);
    border-radius: 3px;
    position: relative;
}

.progress-track {
    position: absolute;
    left: 0;
    top: 0;
    width: 12%;
    height: 100%;
    background: white;
    border-radius: 3px;
}

.progress-thumb {
    position: absolute;
    left: 12%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* Stacked Cards - Top Right */
.collage-cards {
    grid-column: 2;
    grid-row: 1;
}

.stacked-cards {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    perspective: 1000px;
}

.stack-card {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-card-3 {
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #f5a623 0%, #f5a623 50%, #fff 50%);
    transform: rotate(8deg);
    z-index: 1;
}

.card-stripes {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        #f5a623,
        #f5a623 8px,
        #fff 8px,
        #fff 16px
    );
}

.stack-card-2 {
    bottom: 10%;
    right: 8%;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d, #4ecdc4, #45b7d1);
    transform: rotate(4deg);
    z-index: 2;
}

.stack-card-1 {
    bottom: 20%;
    right: 16%;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    transform: rotate(0deg);
    z-index: 3;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.card-emoji {
    font-size: 16px;
}

.card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    opacity: 0.9;
}

.early-access-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.early-access-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px 0;
}

.early-access-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.early-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #888;
}

.locked-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.locked-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(138, 43, 226, 0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(75, 0, 130, 0.3) 0%, transparent 50%);
}

.locked-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    position: relative;
    z-index: 1;
}

.locked-badge svg {
    width: 18px;
    height: 18px;
}

.podcast-card {
    background: #0d7a3f;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.podcast-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.podcast-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5d6ba, #e8c4a8);
    overflow: hidden;
    flex-shrink: 0;
}

.podcast-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
}

.wave {
    width: 4px;
    height: 20px;
    background: #2fd86e;
    border-radius: 2px;
}

.wave:nth-child(1) { height: 12px; }
.wave:nth-child(2) { height: 24px; }
.wave:nth-child(3) { height: 16px; }
.wave:nth-child(4) { height: 28px; }
.wave:nth-child(5) { height: 20px; }
.wave:nth-child(6) { height: 32px; }
.wave:nth-child(7) { height: 18px; }
.wave:nth-child(8) { height: 24px; }

.podcast-name {
    color: white;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

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

.podcast-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.podcast-btn:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.podcast-btn svg {
    width: 20px;
    height: 20px;
}

.podcast-play {
    width: 56px;
    height: 56px;
    background: white !important;
    color: #0d7a3f !important;
}

.podcast-play svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.podcast-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.podcast-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
}

.podcast-track-fill {
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .branding-container-card {
        padding: 30px;
        border-radius: 24px;
    }

    .branding-title {
        font-size: 40px;
    }

    .branding-subtitle {
        font-size: 18px;
    }

    .branding-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .collage-video {
        grid-column: 1;
        grid-row: auto;
    }

    .collage-cards {
        grid-column: 1;
        grid-row: auto;
    }

    .stacked-cards {
        aspect-ratio: 4/3;
    }

    .collage-early {
        grid-column: 1;
        grid-row: auto;
    }

    .collage-bottom-right {
        grid-column: 1;
        grid-row: auto;
        grid-template-columns: 1fr;
    }

    .locked-card {
        display: none;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    .video-play-btn svg {
        width: 20px;
        height: 20px;
    }

    .podcast-card {
        padding: 16px;
    }
}

/* ==========================================
   MERGED BRANDING COLLAGE WITH DEVICES
   ========================================== */
.branding-collage-merged {
    display: grid;
    grid-template-columns: 1.3fr 0.5fr 0.7fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.branding-collage-merged .collage-video {
    grid-column: 1;
    grid-row: 1 / 3;
}

.branding-collage-merged .collage-device-phone {
    grid-column: 2;
    grid-row: 1;
}

.branding-collage-merged .collage-device-laptop {
    grid-column: 3;
    grid-row: 1 / 3;
}

.branding-collage-merged .collage-cards {
    grid-column: 2;
    grid-row: 2;
}

.branding-collage-merged .collage-early {
    grid-column: 1;
    grid-row: 3;
}

.branding-collage-merged .collage-device-android {
    grid-column: 2;
    grid-row: 3;
}

.branding-collage-merged .collage-bottom-right {
    grid-column: 3;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mini Device Mockups */
.mini-device-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: center;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 20px;
}

.mini-device-frame {
    position: relative;
    background: #1a1a1a;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.25);
}

.mini-device-screen {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
}

.mini-device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Mini iPhone Frame */
.mini-iphone-frame {
    width: 80px;
    aspect-ratio: 200 / 420;
    border-radius: 14px;
    padding: 5px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.mini-iphone-frame .mini-device-screen {
    border-radius: 10px;
}

/* Mini MacBook Frame */
.mini-laptop-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    box-shadow: none;
}

.mini-laptop-screen-wrapper {
    width: 160px;
    aspect-ratio: 520 / 330;
    border-radius: 8px 8px 0 0;
    padding: 5px;
    padding-bottom: 8px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 -2px 20px -4px rgba(0, 0, 0, 0.2);
}

.mini-laptop-screen-wrapper .mini-device-screen {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.mini-laptop-keyboard {
    width: 174px;
    height: 8px;
    background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
    border-radius: 0 0 6px 6px;
    position: relative;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.3);
}

.mini-laptop-keyboard::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #4a4a4a;
    border-radius: 2px;
}

/* Mini Android Frame */
.mini-android-frame {
    width: 70px;
    aspect-ratio: 190 / 400;
    border-radius: 12px;
    padding: 4px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.mini-android-frame .mini-device-screen {
    border-radius: 9px;
}

/* Mini Device Label */
.mini-device-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Device collage items background */
.collage-device-phone,
.collage-device-laptop,
.collage-device-android {
    background: #f5f5f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjust locked card for smaller space */
.branding-collage-merged .locked-card {
    min-height: 80px;
    flex: 1;
}

.branding-collage-merged .podcast-card {
    flex: 1;
    padding: 14px;
    gap: 10px;
}

.branding-collage-merged .podcast-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.branding-collage-merged .podcast-btn {
    width: 32px;
    height: 32px;
}

.branding-collage-merged .podcast-play {
    width: 44px;
    height: 44px;
}

.branding-collage-merged .podcast-play svg {
    width: 18px;
    height: 18px;
}

/* Responsive for merged layout */
@media (max-width: 900px) {
    .branding-collage-merged {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .branding-collage-merged .collage-video {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .branding-collage-merged .collage-device-phone {
        grid-column: 1;
        grid-row: 2;
    }

    .branding-collage-merged .collage-device-laptop {
        grid-column: 2;
        grid-row: 2;
    }

    .branding-collage-merged .collage-cards {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .branding-collage-merged .collage-early {
        grid-column: 1;
        grid-row: 4;
    }

    .branding-collage-merged .collage-device-android {
        grid-column: 2;
        grid-row: 4;
    }

    .branding-collage-merged .collage-bottom-right {
        grid-column: 1 / 3;
        grid-row: 5;
        flex-direction: row;
    }

    .branding-collage-merged .locked-card,
    .branding-collage-merged .podcast-card {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .branding-collage-merged {
        grid-template-columns: 1fr;
    }

    .branding-collage-merged .collage-video,
    .branding-collage-merged .collage-device-phone,
    .branding-collage-merged .collage-device-laptop,
    .branding-collage-merged .collage-cards,
    .branding-collage-merged .collage-early,
    .branding-collage-merged .collage-device-android,
    .branding-collage-merged .collage-bottom-right {
        grid-column: 1;
        grid-row: auto;
    }

    .mini-laptop-screen-wrapper {
        width: 140px;
    }

    .mini-laptop-keyboard {
        width: 152px;
    }

    .branding-collage-merged .collage-bottom-right {
        flex-direction: column;
    }

    .branding-collage-merged .locked-card {
        display: none;
    }
}

/* ==========================================
   ABOUT SECTION (Legacy)
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 560px;
}

.about-text {
    color: var(--color-gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gray-900);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
}

/* About Visual */
.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    background: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.visual-card-1 {
    top: 40px;
    left: 0;
    animation: float-card 6s ease-in-out infinite;
}

.visual-card-2 {
    bottom: 40px;
    right: 0;
    animation: float-card 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.visual-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    display: block;
}

.visual-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.visual-main {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-ring {
    position: absolute;
    border: 1px solid var(--color-gray-200);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
}

.visual-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    border-color: var(--color-gray-200);
}

.visual-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 30s;
}

.visual-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-color: var(--color-primary);
    opacity: 0.3;
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.visual-center {
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.visual-center svg {
    width: 50px;
    height: 50px;
    color: var(--color-gray-900);
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio {
    background: var(--color-gray-50);
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-white);
    transition: all var(--transition-base);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-4px);
}

.portfolio-item.large {
    grid-row: span 2;
}

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

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

.portfolio-item.large .portfolio-image {
    height: 300px;
}

.portfolio-item:not(.large):not(.wide) .portfolio-image {
    height: 200px;
}

.portfolio-item.wide .portfolio-image {
    height: 250px;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-placeholder {
    transform: scale(1.05);
}

.portfolio-placeholder svg {
    width: 100%;
    height: 100%;
}

.portfolio-content {
    padding: 28px;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.portfolio-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.portfolio-item:hover .portfolio-title {
    color: var(--color-gray-900);
}

.portfolio-description {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.portfolio-tags span {
    font-size: 0.75rem;
    padding: 6px 12px;
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    color: var(--color-gray-600);
}

/* ==========================================
   SHOWCASE SECTION
   ========================================== */
.showcase {
    background: transparent;
    padding-top: 80px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    overflow: visible;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================
   DEVICE SHOWCASE SECTION
   ========================================== */
.device-showcase {
    background: transparent;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.device-showcase .container {
    max-width: var(--container-max);
    padding: 0 var(--container-padding);
}

.device-showcase .section-header {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Device Grid - Flexible scaling to fit page */
.device-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(8px, 1.5vw, 40px);
    padding: clamp(30px, 5vw, 70px) clamp(30px, 5vw, 80px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.device-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1vw, 20px);
}

/* Common device frame styles */
.device-frame {
    position: relative;
    background: #1a1a1a;
    box-shadow: 0 clamp(10px, 2vw, 30px) clamp(20px, 4vw, 60px) clamp(-5px, -1vw, -15px) rgba(0, 0, 0, 0.35);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
}

.device-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.device-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* iPhone Frame - ~10% of viewport width */
.iphone-frame {
    width: clamp(55px, 10vw, 200px);
    aspect-ratio: 200 / 420;
    border-radius: clamp(12px, 2vw, 40px);
    padding: clamp(4px, 0.7vw, 14px);
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.iphone-frame .device-screen {
    border-radius: clamp(9px, 1.5vw, 30px);
}

.iphone-frame .device-img-wrapper {
    border-radius: clamp(9px, 1.5vw, 30px);
}

/* iPad Frame - ~18% of viewport width */
.ipad-frame {
    width: clamp(100px, 18vw, 360px);
    aspect-ratio: 360 / 480;
    border-radius: clamp(9px, 1.4vw, 28px);
    padding: clamp(5px, 0.8vw, 16px);
    background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
}

.ipad-frame .device-screen {
    border-radius: clamp(5px, 0.7vw, 14px);
}

.ipad-frame .device-img-wrapper {
    border-radius: clamp(5px, 0.7vw, 14px);
}

/* Desktop Monitor Frame - ~28% of viewport width */
.desktop-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    box-shadow: none;
}

.desktop-screen-wrapper {
    width: clamp(155px, 28vw, 560px);
    aspect-ratio: 560 / 350;
    border-radius: clamp(6px, 0.8vw, 16px);
    padding: clamp(4px, 0.7vw, 14px);
    padding-bottom: clamp(10px, 1.6vw, 32px);
    background: linear-gradient(145deg, #2a2a2a, #0a0a0a);
    box-shadow: 0 clamp(10px, 2vw, 30px) clamp(20px, 4vw, 60px) clamp(-5px, -1vw, -15px) rgba(0, 0, 0, 0.35);
}

.desktop-screen-wrapper .device-screen {
    width: 100%;
    height: 100%;
    border-radius: clamp(2px, 0.2vw, 4px);
}

.desktop-screen-wrapper .device-img-wrapper {
    border-radius: clamp(2px, 0.2vw, 4px);
}

.desktop-stand {
    width: clamp(22px, 4vw, 80px);
    height: clamp(18px, 3.25vw, 65px);
    background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}

.desktop-base {
    width: clamp(45px, 8vw, 160px);
    height: clamp(4px, 0.7vw, 14px);
    background: linear-gradient(180deg, #3a3a3a, #1a1a1a);
    border-radius: 0 0 clamp(3px, 0.4vw, 8px) clamp(3px, 0.4vw, 8px);
}

/* MacBook Laptop Frame - ~26% of viewport width */
.laptop-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    box-shadow: none;
}

.laptop-screen-wrapper {
    width: clamp(145px, 26vw, 520px);
    aspect-ratio: 520 / 330;
    border-radius: clamp(6px, 0.8vw, 16px) clamp(6px, 0.8vw, 16px) 0 0;
    padding: clamp(4px, 0.7vw, 14px);
    padding-bottom: clamp(7px, 1.1vw, 22px);
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 clamp(-2px, -0.3vw, -6px) clamp(10px, 1.75vw, 35px) clamp(-2px, -0.3vw, -6px) rgba(0, 0, 0, 0.3);
}

.laptop-screen-wrapper .device-screen {
    width: 100%;
    height: 100%;
    border-radius: clamp(2px, 0.2vw, 4px);
}

.laptop-screen-wrapper .device-img-wrapper {
    border-radius: clamp(2px, 0.2vw, 4px);
}

.laptop-keyboard {
    width: clamp(158px, 28.25vw, 565px);
    height: clamp(5px, 0.8vw, 16px);
    background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
    border-radius: 0 0 clamp(3px, 0.5vw, 10px) clamp(3px, 0.5vw, 10px);
    position: relative;
    box-shadow: 0 clamp(4px, 0.6vw, 12px) clamp(10px, 1.75vw, 35px) clamp(-2px, -0.3vw, -6px) rgba(0, 0, 0, 0.4);
}

.laptop-keyboard::before {
    content: '';
    position: absolute;
    top: clamp(1px, 0.25vw, 5px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(20px, 3.5vw, 70px);
    height: clamp(2px, 0.25vw, 5px);
    background: #4a4a4a;
    border-radius: clamp(1px, 0.15vw, 3px);
}

/* Android Phone Frame - ~9.5% of viewport width */
.android-frame {
    width: clamp(52px, 9.5vw, 190px);
    aspect-ratio: 190 / 400;
    border-radius: clamp(11px, 1.7vw, 34px);
    padding: clamp(4px, 0.6vw, 12px);
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.android-frame .device-screen {
    border-radius: clamp(8px, 1.3vw, 26px);
}

.android-frame .device-img-wrapper {
    border-radius: clamp(8px, 1.3vw, 26px);
}

/* Device Label */
.device-label {
    font-size: clamp(0.55rem, 0.9vw, 1.1rem);
    font-weight: 600;
    color: var(--color-gray-600);
}

/* ==========================================
   WALL OF LOVE SECTION
   ========================================== */
.wall-of-love {
    background: transparent;
    padding: var(--section-padding) 0;
}

.wall-of-love .container {
    max-width: 1600px;
}

.wall-of-love-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.wall-of-love-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wall-of-love-title .handwritten {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--color-gray-900);
}

.wall-of-love-title .yellow-heart {
    width: clamp(2.5rem, 6vw, 4rem);
    height: clamp(2.5rem, 6vw, 4rem);
}

@media (max-width: 768px) {
    .wall-of-love-title .handwritten {
        font-size: 3rem;
    }

    .wall-of-love-title .yellow-heart {
        width: 4rem;
        height: 4rem;
    }
}

.wall-of-love-description {
    font-size: 1.125rem;
    color: var(--color-gray-900);
    line-height: 1.8;
    margin-bottom: 32px;
}

.wall-of-love-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.green-stars {
    display: flex;
    gap: 4px;
}

.green-stars svg {
    width: 20px;
    height: 20px;
    color: #2e7d32;
}

.rating-label {
    font-size: 0.9rem;
    color: var(--color-gray-900);
}

/* Twitter Testimonials */
.twitter-testimonials {
    margin-top: 60px;
}

.twitter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.twitter-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.twitter-logo svg {
    width: 24px;
    height: 24px;
}

.twitter-nav {
    display: flex;
    gap: 8px;
}

.twitter-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-300);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.twitter-nav-btn:hover {
    border-color: var(--color-gray-900);
    background: var(--color-gray-900);
    color: var(--color-white);
}

.twitter-nav-btn svg {
    width: 18px;
    height: 18px;
}

.twitter-grid-wrapper {
    overflow: hidden;
    position: relative;
}

.twitter-grid {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.twitter-page {
    flex: 0 0 100%;
    min-width: 100%;
    columns: 4;
    column-gap: 20px;
    padding: 0 2px;
}

.tweet-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    break-inside: avoid;
    margin-bottom: 20px;
}

.tweet-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tweet-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-900);
    font-weight: 700;
    font-size: 0.875rem;
}

.tweet-author-info {
    display: flex;
    flex-direction: column;
}

.tweet-author-info strong {
    font-size: 0.95rem;
    color: var(--color-gray-900);
}

.tweet-author-info span {
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

.tweet-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-gray-800);
}

/* Responsive Twitter Grid */
@media (max-width: 1200px) {
    .twitter-page {
        columns: 3;
    }
}

@media (max-width: 900px) {
    .twitter-page {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .twitter-page {
        columns: 1;
    }

    .twitter-page .tweet-card:nth-child(n+3) {
        display: none;
    }

    .twitter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: var(--section-padding) 0;
    background: transparent;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.faq-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    letter-spacing: 0;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--color-gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1.5px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-900);
    background: var(--color-white);
    transition: all var(--transition-base);
}

.faq-btn:hover {
    border-color: var(--color-gray-900);
    background: var(--color-gray-100);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-gray-900);
    transition: color var(--transition-base);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--color-gray-500);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-600);
    padding-right: 40px;
}

@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 40px;
    }

    .faq-buttons {
        gap: 8px;
    }

    .faq-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .faq-answer p {
        font-size: 15px;
        padding-right: 0;
    }
}

/* ==========================================
   OUR STORY SECTION
   ========================================== */
.our-story {
    padding: var(--section-padding) 0;
    background: transparent;
}

.story-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.story-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 400;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    letter-spacing: 0;
}

.story-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-gray-900);
    line-height: 1.5;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 32px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.drop-cap {
    float: left;
    font-size: 72px;
    font-weight: 700;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 8px;
    color: var(--color-gray-900);
}

@media (max-width: 768px) {
    .story-header {
        margin-bottom: 40px;
    }

    .story-tagline {
        font-size: 18px;
    }

    .story-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .drop-cap {
        font-size: 56px;
        margin-right: 8px;
        margin-top: 6px;
    }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background: transparent;
}

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

.contact-content {
    max-width: 480px;
}

.contact-text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gray-700);
}

.contact-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 1.1rem;
    color: var(--color-gray-800);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--color-gray-900);
}

/* Contact Form */
.contact-form-wrapper {
    background: transparent;
    padding: 0;
    padding-top: 48px;
}

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

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

.form-group .label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-md);
    background: #F8F8F8;
    transition: all var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--color-white);
    box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}

/* Service Options - Triple Buttons */
.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.service-option {
    padding: 16px 12px;
    background: #F8F8F8;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.service-option:hover {
    background: var(--color-white);
    border-color: var(--color-gray-300);
}

.service-option.selected {
    background: var(--color-white);
    border-color: var(--color-gray-300);
    color: var(--color-gray-700);
}

/* Form Validation States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--color-gray-400);
}

.form-error {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    display: none;
}

.form-error:not(:empty) {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-error:not(:empty)::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #E64C3B;
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Ccircle cx='12' cy='16' r='0.5' fill='white'/%3E%3C/svg%3E");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
}

.form-status {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    display: none;
    text-align: center;
}

.form-status.error {
    display: block;
    background-color: var(--color-gray-100);
    color: var(--color-gray-600);
}

.form-status.success {
    display: block;
    background-color: var(--color-gray-900);
    color: var(--color-white);
}

/* Form Success State */
.form-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    min-height: 400px;
    animation: fadeInSuccess 0.5s ease-out;
}

@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both, pulse 2s ease-in-out 1s infinite;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}

.success-icon svg {
    width: 90px;
    height: 90px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.success-icon svg .checkmark-path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 0.6s ease-out 0.5s forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
    animation: slideUp 0.5s ease-out 0.4s both;
}

.success-message {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    margin-bottom: 40px;
    max-width: 300px;
    line-height: 1.6;
    animation: slideUp 0.5s ease-out 0.5s both;
}

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

.success-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    animation: slideUp 0.5s ease-out 0.6s both;
}

.success-btn:hover {
    background: var(--color-gray-200);
    transform: translateY(-2px);
}

.success-btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 80px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .logo {
    margin-bottom: 24px;
    background: var(--color-primary);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    display: inline-flex;
}

.footer-brand .logo-text,
.footer-brand .logo-accent {
    color: var(--color-gray-900);
}

.footer-brand p {
    color: var(--color-gray-400);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 24px;
}

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

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

.footer-column a {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

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

.footer-legal a {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

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

/* Footer Mobile - hidden by default */
.footer-mobile {
    display: none;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"].animate {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-left"].animate {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    .about-visual {
        order: -1;
    }

    .visual-wrapper {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .portfolio-item.large,
    .portfolio-item.wide {
        grid-column: 1;
        grid-row: auto;
    }

    /* Show mobile footer, hide desktop footer */
    .footer-desktop {
        display: none;
    }

    .footer-mobile {
        display: block;
        background: var(--color-gray-900);
        padding: 60px 0 32px;
    }

    .footer-mobile > .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .footer-mobile-brand {
        grid-column: 1;
    }

    .footer-mobile-brand .logo {
        position: static;
        transform: none;
        display: inline-flex;
        background: var(--color-primary);
        padding: 10px 16px;
        border-radius: var(--radius-full);
        margin-bottom: 20px;
    }

    .footer-mobile-brand .logo-text,
    .footer-mobile-brand .logo-accent {
        color: var(--color-gray-900);
    }

    .footer-mobile-brand p {
        color: var(--color-gray-400);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-mobile-columns {
        grid-column: 2 / 4;
        display: flex;
        justify-content: flex-end;
        gap: 80px;
    }

    .footer-mobile-column h4 {
        color: var(--color-white);
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer-mobile-column ul {
        list-style: none;
    }

    .footer-mobile-column li {
        margin-bottom: 12px;
    }

    .footer-mobile-column a {
        color: var(--color-gray-400);
        font-size: 0.95rem;
        transition: color var(--transition-fast);
    }

    .footer-mobile-column a:hover {
        color: var(--color-white);
    }

    .footer-mobile-bottom {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 32px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-mobile-bottom p {
        color: var(--color-gray-500);
        font-size: 0.875rem;
        margin: 0;
    }

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

    .footer-mobile-legal a {
        color: var(--color-gray-500);
        font-size: 0.875rem;
    }

    .footer-mobile-legal a:hover {
        color: var(--color-white);
    }
}

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

    .service-card:nth-child(3) {
        grid-column: 1;
        max-width: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    /* Mobile footer adjustments */
    .footer-mobile > .container {
        display: block;
    }

    .footer-mobile-brand {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-mobile-brand p {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-mobile-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-mobile-column {
        text-align: center;
    }

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

    .footer-content {
        display: block;
    }

    .footer-brand {
        margin-bottom: 40px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        padding: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ==========================================
   CLEAN SHOWCASE CARDS (Dribbble-style)
   ========================================== */
.showcase-card {
    display: block;
    background: var(--color-white);
    border-radius: 32px;
    overflow: hidden;
    border: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 10;
}

.showcase-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 34px;
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.5) 0%,
        rgba(168, 85, 247, 0.5) 50%,
        rgba(236, 72, 153, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
    filter: blur(12px);
}

.showcase-card:hover {
    transform: translateY(-12px) scale(1.02) rotateX(2deg);
    box-shadow:
        0 25px 50px rgba(99, 102, 241, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 28px;
}

.showcase-card:hover::before {
    opacity: 1;
}

.showcase-card:hover::after {
    opacity: 1;
}

.showcase-image-clean {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f5;
}

.showcase-image-clean::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-card:hover .showcase-image-clean::after {
    opacity: 1;
}

.showcase-image-clean img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: saturate(1) brightness(1);
}

.showcase-card:hover .showcase-image-clean img {
    filter: saturate(1.1) brightness(1.05);
}

/* Hover Info Bar */
.showcase-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 5;
}

.showcase-card:hover .showcase-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.showcase-hover-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.showcase-hover-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

.showcase-card:hover .showcase-hover-category {
    transform: translateX(0);
    opacity: 1;
}

.showcase-hover-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.15s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.showcase-card:hover .showcase-hover-title {
    transform: translateX(0);
    opacity: 1;
}

.showcase-hover-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.showcase-card:hover .showcase-hover-btn {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.1s;
}

.showcase-hover-btn:hover {
    background: var(--color-primary);
    transform: scale(1.15) rotate(0deg);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.showcase-hover-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-800);
    transition: all 0.3s ease;
}

.showcase-hover-btn:hover svg {
    stroke: #fff;
    transform: translateX(2px);
}

/* ==========================================
   PROJECT MODAL (Fullscreen Horizontal)
   ========================================== */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.project-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.project-modal-top-bar {
    height: 50px;
    flex-shrink: 0;
    position: relative;
}

.project-modal-close-x {
    position: absolute;
    top: 12px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.project-modal-close-x:hover {
    transform: scale(1.1);
}

.project-modal-close-x svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 2.5;
}

.project-modal-container {
    flex: 1;
    background: #fff;
    border-radius: 16px 16px 0 0;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.project-modal.active .project-modal-container {
    transform: translateY(0);
    opacity: 1;
}

/* Modal Header */
.project-modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 12px 48px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.project-modal-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
}

.project-modal-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-modal-creator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-modal-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f0f0f0;
}

.project-modal-avatar img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.project-modal-creator-info {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.project-modal-creator-label {
    color: var(--color-gray-500);
    font-size: 0.9rem;
}

.project-modal-company {
    font-weight: 600;
    color: var(--color-gray-900);
    font-size: 0.95rem;
}

.project-modal-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-modal-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.project-modal-action-btn:hover {
    border-color: var(--color-gray-400);
    background: #fafafa;
}

.project-modal-action-btn.active {
    background: #fff0f0;
    border-color: #ffccd5;
}

.project-modal-action-btn.active svg {
    fill: #ff4d6d;
    stroke: #ff4d6d;
}

.project-modal-action-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-500);
}

.project-modal-work-btn {
    padding: 12px 24px;
    background: var(--color-secondary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.project-modal-work-btn:hover {
    background: var(--color-gray-800);
    transform: translateY(-1px);
}

/* Modal Content */
.project-modal-content {
    padding: 40px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-modal-title-bar {
    text-align: center;
    margin-bottom: 28px;
}

.project-modal-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 400;
    color: var(--color-gray-900);
    margin: 0 0 8px 0;
}

.project-modal-category {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Preview Area */
.project-modal-preview {
    margin-bottom: 48px;
    position: relative;
}

/* Modal Preview Image */
.modal-preview-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    display: block;
}

.preview-visit-btn {
    position: absolute;
    top: 12px;
    right: -54px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    pointer-events: auto;
}

.preview-visit-btn:hover {
    border-color: var(--color-gray-400);
    background: #fafafa;
}

.preview-visit-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-500);
}

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

.project-modal-tags span {
    font-size: 0.85rem;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 50px;
    color: var(--color-gray-600);
    transition: all 0.2s ease;
}

.project-modal-tags span:hover {
    background: #eee;
}

/* Case Study Section (Story-style) */
.project-modal-case-study {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
}

.case-study-section {
    margin-bottom: 48px;
}

.case-study-section:last-child {
    margin-bottom: 0;
}

.case-study-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 400;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    line-height: 1.4;
}

.case-study-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-700);
}

.case-study-content p {
    margin: 0;
}

.case-study-tags {
    margin-bottom: 40px;
}

.case-study-cta {
    text-align: center;
    padding: 40px 0 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: 48px;
}

.project-modal-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.project-modal-visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 221, 3, 0.3);
}

.project-modal-visit-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .project-modal-case-study {
        padding-top: 10px;
    }

    .case-study-section {
        margin-bottom: 36px;
    }

    .case-study-title {
        font-size: 22px;
    }

    .case-study-content {
        font-size: 16px;
        line-height: 1.7;
    }

    .case-study-cta {
        padding: 30px 0 10px;
        margin-top: 36px;
    }
}

/* Modal Branding Section */
.project-modal-branding {
    text-align: center;
    padding: 60px 20px 40px;
    margin-top: 40px;
}

.branding-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: #e5e5e5;
}

.branding-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.branding-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0 0 8px 0;
}

.branding-tagline {
    font-size: 1rem;
    color: var(--color-gray-500);
    margin: 0 0 24px 0;
}

.branding-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.branding-cta:hover {
    background: var(--color-gray-800);
    transform: translateY(-2px);
}

/* Modal Footer */
.project-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 48px 60px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.project-modal-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.project-modal-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.project-modal-nav-btn:hover {
    border-color: var(--color-gray-400);
    background: #fff;
}

.project-modal-nav-btn svg {
    width: 16px;
    height: 16px;
}

.project-modal-nav-btn .key-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    background: #e9ecef;
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    font-weight: 600;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .project-modal-header {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .project-modal-header-right {
        width: 100%;
        justify-content: center;
    }

    .project-modal-content {
        padding: 24px 20px;
    }

    .project-modal-title {
        font-size: 26px;
    }

    .preview-visit-btn {
        right: 12px;
        top: -50px;
    }

    .project-modal-preview {
        margin-top: 60px;
    }

    .project-modal-footer {
        padding: 20px 20px 30px;
    }

    .project-modal-footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-modal-work-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}
