:root {
    --primary-color: #1E40AF;
    --primary-dark: #1E3A8A;
    --secondary-color: #0F766E;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    --gradient-secondary: linear-gradient(135deg, #0F766E 0%, #0D9488 100%);
}

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

/* CSS Reset and Cross-browser compatibility */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margins and paddings */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* Fix for IE */
main {
    display: block;
}

/* Remove list styles */
ol, ul {
    list-style: none;
}

/* Remove quotes */
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* Table fixes */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Input and button fixes */
input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Button reset */
button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

/* Fix for iOS Safari */
input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Fix for Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Prevent adjustments of font size after orientation changes in iOS */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Enable smooth scrolling for browsers that support it */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Improve text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Better focus styles */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Improve image rendering */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better line height for readability */
p, li, td, th {
    line-height: 1.6;
}

/* Better word wrapping */
p {
    word-wrap: break-word;
    hyphens: none;
}

/* Fix for IE flexbox bugs */
.ie-flexbox-fix {
    display: -ms-flexbox;
    display: flex;
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000FF;
        --text-primary: #000000;
        --text-secondary: #000000;
        --bg-primary: #FFFFFF;
        --border-color: #000000;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@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;
    }
}

/* Print styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        filter: none !important;
        -ms-filter: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .header,
    .footer,
    .nav-toggle,
    .hero-visual {
        display: none !important;
    }
    
    .container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    p {
        orphans: 3;
        widows: 3;
    }
    
    .service-card {
        page-break-inside: avoid;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
    line-height: 1.15;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo span {
    color: var(--primary-color);
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="a" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%236366f1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>') repeat;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 300px;
    height: 200px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    position: relative;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.card-header {
    width: 100%;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.card-line {
    width: 100%;
    height: 12px;
    background: var(--bg-secondary);
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.card-line.short {
    width: 70%;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    z-index: 10;
}

.service-startup-card .service-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    top: -12px;
    right: 20px;
    white-space: nowrap;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.period-note {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.custom-solutions {
    margin-top: 4rem;
}

.custom-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.custom-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.custom-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.custom-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

/* Startups Section */
.startups {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.startups::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="startup-pattern" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="2" fill="%23f59e0b" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23startup-pattern)"/></svg>') repeat;
}

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

.startup-hero {
    margin: 4rem 0;
}

.startup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.startup-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.startup-text > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.startup-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.mvp-showcase {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mvp-phone {
    width: 120px;
    height: 240px;
    background: #1f2937;
    border-radius: 20px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    transform: rotate(-5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-header {
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.app-element {
    height: 12px;
    background: var(--bg-secondary);
    border-radius: 3px;
}

.app-element.short {
    width: 60%;
}

.mvp-laptop {
    width: 200px;
    height: 140px;
    background: #374151;
    border-radius: 12px;
    padding: 4px;
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-header {
    height: 16px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.dashboard-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.dashboard-card {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.startup-process {
    margin: 5rem 0;
    text-align: center;
}

.startup-process h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

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

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.startup-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-info .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-info .stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.startup-cta {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.startup-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="cta-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>') repeat;
}

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

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
}

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

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.cta-visual {
    position: relative;
    height: 200px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.float-element.element-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.float-element.element-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.float-element.element-4 {
    bottom: 10%;
    right: 30%;
    animation-delay: 3s;
}

.float-element.element-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

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

/* Startup Page Specific Colors - Clean & Professional */
:root {
    --startup-primary: #1E40AF;          /* Deep blue (Blue-800) */
    --startup-secondary: #0F766E;        /* Deep teal (Teal-700) */
    --startup-accent: #374151;           /* Dark gray (Gray-700) */
    --startup-text-primary: #111827;     /* High contrast text (Gray-900) */
    --startup-text-secondary: #374151;   /* Medium contrast text (Gray-700) */
    --startup-text-light: #6B7280;      /* Light text (Gray-500) */
    --startup-background: #FFFFFF;       /* Pure white */
    --startup-background-alt: #F9FAFB;   /* Very light gray (Gray-50) */
    --startup-text-on-primary: #FFFFFF;  /* White text on primary colors */
    
    /* Clean gradients with professional feel */
    --startup-gradient-primary: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    --startup-gradient-secondary: linear-gradient(135deg, #0F766E 0%, #0D9488 100%);
    --startup-gradient-neutral: linear-gradient(135deg, #374151 0%, #1F2937 100%);
    --startup-gradient-accent: linear-gradient(135deg, #4B5563 0%, #374151 100%);
    --startup-gradient-hero: linear-gradient(135deg, #1F2937 0%, #374151 50%, #4B5563 100%);
}

/* Startup Page Specific Styles */
.startup-hero-main {
    padding: 120px 0 80px;
    background: var(--startup-gradient-hero);
    color: var(--startup-text-on-primary);
    position: relative;
    overflow: hidden;
}

.startup-hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="startup-hero-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23startup-hero-pattern)"/></svg>') repeat;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--startup-gradient-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--startup-text-on-primary);
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}

.social-proof {
    margin-top: 3rem;
    opacity: 0.9;
}

.social-proof p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.startup-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--startup-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.startup-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.showcase-phone {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 140px;
    height: 280px;
    background: #1f2937;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(-8deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-bar {
    height: 25px;
    background: var(--startup-gradient-primary);
    border-radius: 6px;
}

.app-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-card {
    height: 20px;
    background: var(--bg-secondary);
    border-radius: 4px;
}

.app-card.small {
    width: 60%;
}

.showcase-laptop {
    position: relative;
    z-index: 1;
}

.laptop-frame {
    width: 240px;
    height: 160px;
    background: #374151;
    border-radius: 15px;
    padding: 6px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(5deg);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-nav {
    height: 20px;
    background: var(--startup-gradient-secondary);
    border-radius: 4px;
}

.dashboard-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.dash-card {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.float-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.problems {
    padding: 100px 0;
    background: var(--startup-background-alt);
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: var(--startup-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--startup-text-on-primary);
    font-size: 1.75rem;
    box-shadow: 0 8px 25px rgba(55, 65, 81, 0.2);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problems-cta {
    text-align: center;
    background: var(--startup-gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    color: var(--startup-text-on-primary);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

.problems-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white !important;
}

body.startup-page .problems-cta h3 {
    color: white !important;
}

.problems-cta p {
    color: white !important;
}

body.startup-page .problems-cta p {
    color: white !important;
}

.startup-page .problems .problems-cta p {
    color: white !important;
}

.startup-services {
    padding: 100px 0;
    background: var(--startup-background);
}

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

.service-startup-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.service-startup-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-startup-card.featured {
    border: 2px solid var(--startup-primary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.service-startup-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--startup-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--startup-text-on-primary);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
}

.service-time {
    background: var(--startup-gradient-neutral);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(75, 85, 99, 0.3);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--startup-primary);
    margin-bottom: 0.5rem;
}

.launch-note {
    font-size: 0.875rem;
    color: var(--startup-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--startup-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--startup-text-primary);
}

.timeline-duration {
    color: var(--startup-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    margin-top: 1rem;
}

.timeline-content li {
    padding: 0.25rem 0;
    color: var(--startup-text-secondary);
}

.timeline-content li:before {
    content: "✓";
    color: var(--startup-secondary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.case-studies {
    padding: 100px 0;
    background: var(--startup-background);
}

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

.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-image {
    height: 200px;
    background: var(--startup-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--startup-text-primary);
}

.case-category {
    color: var(--startup-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--startup-primary);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--startup-text-light);
}

.why-valencia {
    padding: 100px 0;
    background: var(--bg-primary);
}

.valencia-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.valencia-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.valencia-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.valencia-cta {
    background: var(--bg-secondary);
    padding: 2rem;
    padding-bottom: 3rem;
    border-radius: 16px;
    text-align: center;
}

.valencia-cta p {
    margin-bottom: 1.5rem;
}

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

.city-illustration {
    position: relative;
    width: 200px;
    height: 150px;
}

.building {
    position: absolute;
    background: var(--startup-gradient-primary);
    border-radius: 4px 4px 0 0;
}

.building-1 {
    width: 40px;
    height: 80px;
    left: 20px;
    bottom: 0;
}

.building-2 {
    width: 35px;
    height: 100px;
    left: 70px;
    bottom: 0;
}

.building-3 {
    width: 45px;
    height: 60px;
    left: 115px;
    bottom: 0;
}

.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tech-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--startup-secondary);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.tech-circle.circle-1 {
    top: 20px;
    left: 30px;
    animation-delay: 0s;
}

.tech-circle.circle-2 {
    top: 40px;
    right: 40px;
    animation-delay: 1s;
}

.tech-circle.circle-3 {
    bottom: 80px;
    left: 60px;
    animation-delay: 2s;
}

.faq {
    padding: 100px 0;
    background: var(--startup-background);
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--startup-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.contact-startup {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-startup-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-startup-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-startup-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-startup-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-note {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Startup page navigation active state */
body.startup-page .nav-link.active {
    color: var(--startup-primary);
    font-weight: 600;
}

body.startup-page .nav-link.active::after {
    background: var(--startup-primary);
    width: 100%;
}

body.startup-page .nav-link:hover {
    color: var(--startup-primary);
}

body.startup-page .nav-link:hover::after {
    background: var(--startup-primary);
}

/* Default navigation for other pages */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Startup page buttons */
body.startup-page .btn-primary {
    background: var(--startup-gradient-primary);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

body.startup-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

body.startup-page .btn-secondary {
    border-color: var(--startup-primary);
    color: var(--startup-primary);
}

body.startup-page .btn-secondary:hover {
    background: var(--startup-primary);
    color: white;
}

body.startup-page .btn-outline {
    border-color: var(--startup-primary);
    color: var(--startup-primary);
}

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

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

body.startup-page .social-link {
    background: var(--startup-primary);
}

.social-link:hover {
    transform: translateY(-2px);
}

/* Force text colors for startup page */
.startup-hero-main h1,
.startup-hero-main .hero-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.startup-hero-main .hero-title span {
    color: #10B981 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #10B981 !important;
    background-clip: unset !important;
}

.startup-hero-main p,
.startup-hero-main .hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.startup-hero-main .hero-features .feature {
    color: rgba(255, 255, 255, 0.9) !important;
}

.startup-hero-main .hero-features .feature i {
    color: #10B981 !important;
}

body.startup-page .problems h2,
body.startup-page .startup-services h2,
body.startup-page .startup-process h2,
body.startup-page .case-studies h2,
body.startup-page .why-valencia h2,
body.startup-page .faq h2,
body.startup-page .contact-startup h2 {
    color: var(--startup-text-primary) !important;
}

body.startup-page .problems p,
body.startup-page .startup-services p,
body.startup-page .startup-process p,
body.startup-page .case-studies p,
body.startup-page .why-valencia p,
body.startup-page .faq p,
body.startup-page .contact-startup p {
    color: var(--startup-text-secondary) !important;
}

body.startup-page .problem-card h3,
body.startup-page .service-startup-card h3,
body.startup-page .timeline-content h3,
body.startup-page .case-content h3,
body.startup-page .valencia-stat h4,
body.startup-page .faq-question h4 {
    color: var(--startup-text-primary) !important;
}

body.startup-page .problem-card p,
body.startup-page .service-startup-card p,
body.startup-page .timeline-content p,
body.startup-page .case-content p,
body.startup-page .valencia-stat p {
    color: var(--startup-text-secondary) !important;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Brand CTA Section */
.brand-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
}

.brand-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.brand-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.brand-cta-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.brand-cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.brand-cta-text {
    flex: 1;
}

.brand-cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.brand-cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.brand-cta-button {
    flex-shrink: 0;
}

.brand-cta-button .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.brand-cta-button .btn:hover {
    background: transparent !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive for Brand CTA */
@media (max-width: 968px) {
    .brand-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .brand-cta-text h2 {
        font-size: 1.75rem;
    }

    .brand-cta-text p {
        font-size: 1rem;
    }

    .brand-cta-button {
        width: 100%;
    }

    .brand-cta-button .btn {
        width: 100%;
    }
}

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

    .brand-cta-icon {
        width: 60px;
        height: 60px;
    }

    .brand-cta-icon i {
        font-size: 2rem;
    }

    .brand-cta-text h2 {
        font-size: 1.5rem;
    }

    .brand-cta-text p {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
}

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

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--primary-color);
}

body.startup-page .footer-brand span,
.footer-brand span {
    color: white !important;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

body.startup-page .footer-bottom a {
    color: #10b981;
}

body.startup-page .footer-bottom a:hover {
    color: #059669;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappJump 6s ease-in-out infinite;
    animation-delay: 1s;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 1;
}

@keyframes whatsappJump {
    0%, 5%, 10%, 100% {
        transform: translateY(0);
    }
    2.5% {
        transform: translateY(-15px);
    }
    7.5% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

/* Launch Offer Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}


.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.popup-badge i {
    font-size: 1.2rem;
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.popup-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.popup-price-item {
    background: var(--bg-secondary);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.popup-price-item.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    transform: scale(1.05);
}

.popup-price-item.featured .price-tag,
.popup-price-item.featured .price-label {
    color: white;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.popup-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-btn {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .popup-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-width: 500px;
    }

    .popup-close {
        font-size: 1.75rem;
        width: 36px;
        height: 36px;
        top: 0.75rem;
        right: 0.75rem;
    }

    .popup-badge {
        font-size: 0.875rem;
        padding: 0.6rem 1.25rem;
        margin-bottom: 1.25rem;
    }

    .popup-badge i {
        font-size: 1rem;
    }

    .popup-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.85rem;
    }

    .popup-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .popup-prices {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .popup-price-item {
        padding: 1.25rem 1rem;
    }

    .popup-price-item.featured {
        transform: none;
    }

    .price-tag {
        font-size: 1.75rem;
    }

    .price-label {
        font-size: 0.875rem;
    }

    .popup-cta {
        flex-direction: column;
        gap: 0.85rem;
    }

    .popup-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Support for older browsers */
.flexbox .hero-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.no-flexbox .hero-container {
    display: table;
    width: 100%;
}

.no-flexbox .hero-content,
.no-flexbox .hero-visual {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

/* CSS Grid fallback */
.services-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.no-cssgrid .services-grid {
    display: block;
}

.no-cssgrid .service-card {
    display: inline-block;
    width: 32%;
    vertical-align: top;
    margin-right: 2%;
}

/* Older browser support for transforms */
.hero-card {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* Gradient fallbacks */
.btn-primary {
    background: #1E40AF; /* Fallback */
    background: -webkit-linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
}

.hero::before {
    background: rgba(30, 64, 175, 0.05); /* Fallback */
}

/* Backdrop filter fallback */
.header {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.no-backdrop-filter .header {
    background: rgba(255, 255, 255, 0.98);
}

/* CSS custom properties fallback */
.no-custom-properties .btn-primary {
    background: #1E40AF;
    color: white;
}

.no-custom-properties .nav-logo h1 {
    color: #1f2937;
}

.no-custom-properties .nav-logo span {
    color: #1E40AF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }

    .service-startup-card .service-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        white-space: nowrap;
        top: -10px;
        right: 15px;
    }

    /* Startup Hero Mobile Styles */
    .startup-hero-main {
        padding: 100px 0 60px;
    }

    .startup-hero-main .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .startup-hero-main .hero-badge {
        font-size: 0.875rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1.5rem;
    }

    .startup-hero-main .hero-badge i {
        font-size: 0.875rem;
    }

    .startup-hero-main .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .startup-hero-main .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .startup-hero-main .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: center;
    }

    .startup-hero-main .hero-features .feature {
        font-size: 0.95rem;
    }

    .startup-hero-main .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: center;
        justify-content: center;
    }

    .startup-hero-main .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .startup-hero-main .social-proof {
        margin-top: 2rem;
    }

    .startup-hero-main .social-proof p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .startup-hero-main .startup-logos {
        justify-content: center;
        gap: 0.75rem;
    }

    .startup-hero-main .logo-placeholder {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Hero Visual - Show simplified version on tablet */
    .startup-hero-main .hero-visual {
        display: flex;
        margin-top: 2rem;
    }

    .startup-hero-main .startup-showcase {
        transform: scale(0.85);
    }

    .startup-hero-main .floating-icons .float-icon {
        font-size: 1.5rem;
    }

    /* Adjust floating icon positions for mobile */
    .startup-hero-main .float-icon.icon-1 {
        top: 10%;
        left: 5%;
    }

    .startup-hero-main .float-icon.icon-2 {
        top: 50%;
        right: 5%;
    }

    .startup-hero-main .float-icon.icon-3 {
        bottom: 20%;
        left: 10%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .startup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .startup-visual {
        order: -1;
    }
    
    .mvp-showcase {
        justify-content: center;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .startup-stats {
        grid-template-columns: 1fr;
    }
    
    .startup-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-visual {
        height: 150px;
    }
    
    /* Startup page responsive */
    .startup-showcase {
        flex-direction: column;
        gap: 1rem;
    }
    
    .valencia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-startup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .services-startup-grid {
        grid-template-columns: 1fr;
    }
    
    .service-startup-card.featured {
        transform: none;
    }

    .service-startup-card {
        padding: 2rem;
    }

    .service-startup-card .service-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
        white-space: nowrap;
        top: -8px;
        right: 10px;
    }

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

    /* Startup Hero - Smaller Mobile Optimization */
    .startup-hero-main {
        padding: 90px 0 50px;
    }

    .startup-hero-main .hero-container {
        padding: 0 1rem;
    }

    .startup-hero-main .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
        gap: 0.4rem;
    }

    .startup-hero-main .hero-badge i {
        font-size: 0.8rem;
    }

    .startup-hero-main .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .startup-hero-main .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .startup-hero-main .hero-features {
        gap: 0.85rem;
        margin-bottom: 1.75rem;
    }

    .startup-hero-main .hero-features .feature {
        font-size: 0.875rem;
    }

    .startup-hero-main .hero-features .feature i {
        font-size: 1rem;
    }

    .startup-hero-main .hero-cta {
        gap: 0.85rem;
        margin-bottom: 1.75rem;
        align-items: center;
        justify-content: center;
    }

    .startup-hero-main .hero-cta .btn {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
    }

    .startup-hero-main .social-proof {
        margin-top: 1.5rem;
    }

    .startup-hero-main .startup-logos {
        gap: 0.5rem;
    }

    .startup-hero-main .logo-placeholder {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    /* Hero Visual - Hide or minimize on small mobile */
    .startup-hero-main .hero-visual {
        display: none;
    }

    /* Alternative: Show smaller version */
    .startup-hero-main .startup-showcase {
        transform: scale(0.7);
        margin-top: 1rem;
    }

    .startup-hero-main .showcase-phone .phone-frame {
        width: 100px;
        height: 200px;
    }

    .startup-hero-main .showcase-laptop .laptop-frame {
        width: 180px;
        height: 120px;
    }

    .startup-hero-main .floating-icons .float-icon {
        font-size: 1.25rem;
    }

    /* Better icon positioning for smaller screens */
    .startup-hero-main .float-icon.icon-1 {
        top: 8%;
        left: 3%;
    }

    .startup-hero-main .float-icon.icon-2 {
        top: 45%;
        right: 3%;
    }

    .startup-hero-main .float-icon.icon-3 {
        bottom: 15%;
        left: 5%;
    }

    /* Popup - Smaller Mobile Optimization */
    .popup-content {
        padding: 1.5rem 1.25rem;
        width: 96%;
        max-width: 400px;
    }

    .popup-close {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
        top: 0.5rem;
        right: 0.5rem;
    }

    .popup-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .popup-badge i {
        font-size: 0.9rem;
    }

    .popup-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .popup-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .popup-prices {
        gap: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .popup-price-item {
        padding: 1rem 0.85rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

    .price-label {
        font-size: 0.8rem;
    }

    .popup-cta {
        gap: 0.75rem;
    }

    .popup-btn {
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .startup-cta {
        padding: 2rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .mvp-phone {
        width: 100px;
        height: 200px;
    }

    .mvp-laptop {
        width: 160px;
        height: 120px;
    }

    /* Startup Hero - Extra Small Devices */
    .startup-hero-main .hero-container {
        padding: 0 0.75rem;
    }

    .startup-hero-main .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }

    .startup-hero-main .hero-title {
        font-size: 1.5rem;
    }

    .startup-hero-main .hero-subtitle {
        font-size: 0.875rem;
    }

    .startup-hero-main .hero-features .feature {
        font-size: 0.8rem;
    }

    .startup-hero-main .hero-cta .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }

    .startup-hero-main .logo-placeholder {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    /* Popup - Extra Small Devices */
    .popup-content {
        padding: 1.25rem 1rem;
        width: 98%;
        max-width: 320px;
    }

    .popup-close {
        font-size: 1.25rem;
        width: 28px;
        height: 28px;
    }

    .popup-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
        margin-bottom: 0.85rem;
    }

    .popup-content h2 {
        font-size: 1.1rem;
        margin-bottom: 0.65rem;
    }

    .popup-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .popup-prices {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .popup-price-item {
        padding: 0.85rem 0.75rem;
    }

    .price-tag {
        font-size: 1.35rem;
    }

    .price-label {
        font-size: 0.75rem;
    }

    .popup-cta {
        gap: 0.65rem;
    }

    .popup-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-card {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-container {
        height: 60px;
    }
}

/* IE11 specific fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .services-grid {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .service-card {
        -ms-flex: 0 0 32%;
        flex: 0 0 32%;
    }
    
    .hero-container {
        display: -ms-flexbox;
        display: flex;
    }
    
    .hero-content,
    .hero-visual {
        -ms-flex: 1;
        flex: 1;
    }
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .service-card {
        background-clip: padding-box;
    }
    
    .btn {
        -moz-user-select: none;
    }
}

/* Safari specific fixes */
@media not all and (min-resolution: .001dpi) {
    @supports (-webkit-appearance: none) {
        .header {
            -webkit-backdrop-filter: blur(10px);
        }
        
        .hero-card {
            -webkit-transform: rotate(5deg);
        }
    }
}

/* Edge specific fixes */
@supports (-ms-ime-align: auto) {
    .services-grid {
        display: -ms-grid;
        -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    }
    
    .service-card:nth-child(1) {
        -ms-grid-column: 1;
    }
    
    .service-card:nth-child(2) {
        -ms-grid-column: 3;
    }
    
    .service-card:nth-child(3) {
        -ms-grid-column: 5;
    }
}
/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--secondary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-accept {
    background: var(--gradient-primary);
    color: white;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-reject {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.cookie-reject:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Designer Profile Section */
.designer-profile {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.designer-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="profile-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="0.8" fill="%231E40AF" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23profile-pattern)"/></svg>') repeat;
    z-index: 0;
}

.profile-wrapper {
    position: relative;
    z-index: 1;
}

.profile-line-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.profile-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-color) 20%,
        var(--primary-color) 80%,
        transparent 100%
    );
    border-radius: 2px;
    z-index: 0;
}

.profile-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.profile-image-wrapper {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6px;
    box-shadow:
        0 20px 40px rgba(30, 64, 175, 0.2),
        0 0 0 20px rgba(30, 64, 175, 0.05),
        0 0 0 40px rgba(30, 64, 175, 0.03);
    animation: profileFloat 6s ease-in-out infinite;
}

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

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    border: 4px solid white;
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.profile-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.profile-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.profile-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .designer-profile {
        padding: 60px 0;
    }

    .profile-image-wrapper {
        width: 200px;
        height: 200px;
        box-shadow:
            0 15px 30px rgba(30, 64, 175, 0.2),
            0 0 0 15px rgba(30, 64, 175, 0.05),
            0 0 0 30px rgba(30, 64, 175, 0.03);
    }

    .profile-line::before {
        width: 300px;
        height: 300px;
    }

    .profile-name {
        font-size: 2rem;
    }

    .profile-title {
        font-size: 1.25rem;
    }

    .profile-description {
        font-size: 1rem;
    }

    .profile-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .profile-image-wrapper {
        width: 160px;
        height: 160px;
    }

    .profile-name {
        font-size: 1.75rem;
    }

    .profile-title {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}
