/* CSS Variables - RoboMarketing Brand Colors */
:root {
    --primary: #4169E1;
    --primary-dark: #2F4A7D;
    --primary-light: #6B8DE8;
    --primary-lighter: #9BB5F0;
    --primary-lightest: #CCDDFF;
    --secondary: #777777;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow: rgba(65, 105, 225, 0.1);
    --shadow-lg: rgba(65, 105, 225, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
    padding-top: 80px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-resolution: 120dpi) {
    .hero-title {
        font-size: clamp(1.8rem, 5.5vw, 3.8rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 2.3vw, 1.25rem);
    }
}

@media (min-width: 1400px) {
    .hero-content {
        max-width: min(1200px, 85vw);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
    }
}

.btn-primary, .btn-secondary {
    min-width: min-content;
    white-space: nowrap;
}

.form-group input,
.form-group select,
.form-group textarea {
    max-width: 100%;
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 1rem 0.5rem;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
}

.app {
    position: relative;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Matrix Rain Canvas - DOAR pentru hero section */
#matrix-rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

/* Floating Particles - DOAR pentru hero section */
#floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-100px) translateX(25px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) translateX(-25px) scale(0.8);
        opacity: 1;
    }
    75% {
        transform: translateY(-150px) translateX(50px) scale(1.5);
        opacity: 0.6;
    }
}

/* Glitch Text Effects */
.glitch-text {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.glitch-text.glitching {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 #ff0000, -0.05em -0.025em 0 #00ff00, 0.025em 0.05em 0 #0000ff;
    }
    15% {
        text-shadow: 0.05em 0 0 #ff0000, -0.05em -0.025em 0 #00ff00, 0.025em 0.05em 0 #0000ff;
    }
    16% {
        text-shadow: -0.05em -0.025em 0 #ff0000, 0.025em 0.025em 0 #00ff00, -0.05em -0.05em 0 #0000ff;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 #ff0000, 0.025em 0.025em 0 #00ff00, -0.05em -0.05em 0 #0000ff;
    }
    50% {
        text-shadow: 0.025em 0.05em 0 #ff0000, 0.05em 0 0 #00ff00, 0 -0.05em 0 #0000ff;
    }
    99% {
        text-shadow: 0.025em 0.05em 0 #ff0000, 0.05em 0 0 #00ff00, 0 -0.05em 0 #0000ff;
    }
    100% {
        text-shadow: none;
    }
}

/* Text Glow Effect */
.text-glow {
    animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(65, 105, 225, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(65, 105, 225, 0.8), 0 0 30px rgba(65, 105, 225, 0.6);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-logo {
    width: 50px;
    height: 50px;
    animation: logoGlow 3s ease-in-out infinite;
}

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

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(65, 105, 225, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(65, 105, 225, 0.8));
    }
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 0px rgba(65, 105, 225, 0);
    }
    50% {
        text-shadow: 0 0 10px rgba(65, 105, 225, 0.5);
    }
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
    opacity: 0;
}

.nav-links a:nth-child(1) { --i: 1; }
.nav-links a:nth-child(2) { --i: 2; }
.nav-links a:nth-child(3) { --i: 3; }
.nav-links a:nth-child(4) { --i: 4; }

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

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px) scale(1.05);
}

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

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

.nav-links a::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: ping 1s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    animation: slideDown 0.4s ease-out;
    display: none;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
    transform: translateX(10px);
    background: rgba(65, 105, 225, 0.05);
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    min-height: calc(100dvh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, 
      rgba(65, 105, 225, 0.05) 0%, 
      rgba(255, 255, 255, 0.95) 50%, 
      rgba(47, 74, 125, 0.05) 100%);
    overflow: hidden;
    z-index: 1;
    padding: 2rem 2rem;
    box-sizing: border-box; 
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 25% 25%, rgba(65, 105, 225, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(47, 74, 125, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
    z-index: 3;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 0%, 100% 100%;
    }
    50% {
        background-position: 100% 100%, 0% 0%;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(90deg, transparent 0px, rgba(65, 105, 225, 0.03) 1px, transparent 1px),
      linear-gradient(0deg, transparent 0px, rgba(47, 74, 125, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 3;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    max-width: min(1200px, 90vw);
    padding: 1rem;
    position: relative;
    z-index: 10;
    animation: heroFadeIn 1.5s ease-out;
    width: 100%;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    max-width: 100%;
    word-wrap: break-word;
}

.hero-title .text-primary {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: min(600px, 80vw);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    position: relative;
    z-index: 10;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 3s infinite;
    z-index: 20;
}

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

.scroll-arrow {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 2px solid rgba(65, 105, 225, 0.3);
    border-radius: 50%;
    background: rgba(65, 105, 225, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow:hover {
    transform: scale(1.2);
    background: rgba(65, 105, 225, 0.2);
    border-color: var(--primary);
}

.scroll-arrow svg {
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(65, 105, 225, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(65, 105, 225, 0.3);
}

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

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
    transform: translateX(5px) rotate(15deg);
}

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

.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: ping 2s infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PROBLEMS SECTION - Aliniat cu tema site-ului */
.problems-section {
    background: var(--surface);
    position: relative;
    padding: 6rem 0;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(65, 105, 225, 0.05) 0%, transparent 50%);
    animation: backgroundShift 12s ease-in-out infinite;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 5;
    margin-bottom: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: cardSlideUp 0.8s ease-out;
    animation-delay: calc(var(--i, 0) * 0.15s);
    animation-fill-mode: both;
}

.problem-card:nth-child(1) { --i: 0; }
.problem-card:nth-child(2) { --i: 1; }
.problem-card:nth-child(3) { --i: 2; }
.problem-card:nth-child(4) { --i: 3; }

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ff6b6b;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.problem-card:hover::before {
    transform: scaleY(1);
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 107, 0.2);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 36, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(238, 90, 36, 0.2) 100%);
}

.problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.problem-card:hover h3 {
    color: #ff6b6b;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.problem-stat {
    background: rgba(255, 107, 107, 0.05);
    border-left: 3px solid #ff6b6b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.problem-stat strong {
    color: #ff6b6b;
    font-weight: 600;
}

.problem-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 107, 0.1);
    position: relative;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-question {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 100%;
}

.problem-question strong {
    color: #ff6b6b;
}

.problem-cta .btn-primary {
    margin: 0 auto;
    display: inline-flex;
    width: auto;
    max-width: 90%;
}

.problem-question {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.problem-question strong {
    color: #ff6b6b;
}

/* About Section */
.about-section {
    background: var(--background);
    position: relative;
    padding: 6rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 80%, rgba(65, 105, 225, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(47, 74, 125, 0.05) 0%, transparent 50%);
    animation: backgroundShift 12s ease-in-out infinite;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 5;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: cardFloat 0.8s ease-out;
    animation-delay: calc(var(--i, 0) * 0.15s);
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
}

.solution-card:nth-child(1) { --i: 0; }
.solution-card:nth-child(2) { --i: 1; }
.solution-card:nth-child(3) { --i: 2; }
.solution-card:nth-child(4) { --i: 3; }

@keyframes cardFloat {
    from {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(65, 105, 225, 0.2);
    box-shadow: 0 20px 40px rgba(65, 105, 225, 0.3);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.solution-card:hover .solution-icon {
    transform: scale(1.2) rotate(360deg);
}

.gradient-red {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4169E1 0%, #2F4A7D 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #26de81 0%, #20bf6b 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #a55eea 0%, #8854d0 100%);
}

.solution-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, currentColor 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.solution-card:hover .solution-icon::before {
    opacity: 0.2;
}

.solution-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.solution-card:hover h3 {
    color: var(--primary);
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.solution-card p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-card p a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Why Section */
.why-section {
    background: var(--surface);
    position: relative;
    padding: 6rem 0;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      conic-gradient(from 0deg at 50% 50%, rgba(65, 105, 225, 0.05), rgba(47, 74, 125, 0.05), rgba(65, 105, 225, 0.05));
    animation: conicRotate 8s linear infinite;
}

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

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.why-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) rotateY(-15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--i, 0) * 0.1s);
    animation-fill-mode: both;
}

.why-point:nth-child(1) { --i: 0; }
.why-point:nth-child(2) { --i: 1; }
.why-point:nth-child(3) { --i: 2; }
.why-point:nth-child(4) { --i: 3; }
.why-point:nth-child(5) { --i: 4; }

.why-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.why-point:hover::before {
    transform: scaleY(1);
}

.why-point:hover {
    transform: translateX(15px) scale(1.02);
    background: rgba(65, 105, 225, 0.05);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-point:hover .why-icon {
    transform: rotate(360deg) scale(1.2);
}

.why-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.why-icon.yellow {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.why-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.why-icon.purple {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.why-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.why-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-point:hover .why-icon::before {
    opacity: 0.1;
}

.why-point h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.why-point:hover h3 {
    color: var(--primary);
}

.why-point p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Stats Card */
.stats-card {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px) rotateY(15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: statsGlow 6s ease-in-out infinite;
}

@keyframes statsGlow {
    0%, 100% {
        background-position: 20% 20%;
    }
    25% {
        background-position: 80% 20%;
    }
    50% {
        background-position: 80% 80%;
    }
    75% {
        background-position: 20% 80%;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 5;
}

.stat {
    text-align: center;
    transition: all 0.4s ease;
}

.stat:hover {
    transform: scale(1.15) translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: iconSpin 10s linear infinite;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
}

.animated-counter {
    display: inline-block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 6rem 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      repeating-linear-gradient(45deg, rgba(65, 105, 225, 0.02) 0px, rgba(65, 105, 225, 0.02) 1px, transparent 1px, transparent 25px),
      repeating-linear-gradient(135deg, rgba(47, 74, 125, 0.02) 0px, rgba(47, 74, 125, 0.02) 1px, transparent 1px, transparent 25px);
    animation: patternMove 10s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 25px 25px, -25px -25px;
    }
}

/* Blueprint Section */
.blueprint-section {
    background: var(--surface);
    position: relative;
    padding: 6rem 0;
}

.blueprint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(ellipse at top, rgba(65, 105, 225, 0.15) 0%, transparent 70%),
      radial-gradient(ellipse at bottom, rgba(47, 74, 125, 0.15) 0%, transparent 70%);
    animation: ellipseMove 8s ease-in-out infinite;
}

@keyframes ellipseMove {
    0%, 100% {
        background-position: center top, center bottom;
    }
    50% {
        background-position: center bottom, center top;
    }
}

.blueprint-form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    animation: formSlideUp 0.8s ease-out 0.2s both;
}

@keyframes formSlideUp {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Founder Section */
.founder-section {
    position: relative;
    padding: 6rem 0;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(0deg, rgba(65, 105, 225, 0.02) 0px, transparent 1px),
      linear-gradient(90deg, rgba(47, 74, 125, 0.02) 0px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 12s ease-in-out infinite;
}

@keyframes gridShift {
    0%, 100% {
        background-size: 60px 60px;
        transform: translate(0, 0);
    }
    50% {
        background-size: 80px 80px;
        transform: translate(20px, 20px);
    }
}

.founder-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.founder-avatar {
    animation: avatarEntrance 1s ease-out;
}

@keyframes avatarEntrance {
    from {
        opacity: 0;
        transform: translateX(-80px) rotateY(-15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.avatar-circle {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.avatar-circle:hover {
    transform: scale(1.05) rotate(5deg);
}

.avatar-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    animation: avatarGlow 5s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% {
        background-position: 20% 20%;
    }
    25% {
        background-position: 80% 20%;
    }
    50% {
        background-position: 80% 80%;
    }
    75% {
        background-position: 20% 80%;
    }
}

.avatar-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

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

.founder-content {
    animation: contentSlideIn 1s ease-out 0.3s both;
}

@keyframes contentSlideIn {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.founder-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 0px rgba(65, 105, 225, 0);
    }
    50% {
        text-shadow: 0 0 15px rgba(65, 105, 225, 0.4);
    }
}

.founder-role {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.founder-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary);
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out 0.9s both;
}

.founder-content blockquote:hover {
    transform: scale(1.02) translateX(15px);
}

/* Pulse Wave Separator */
.pulse-separator {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(65, 105, 225, 0.02) 50%, 
        rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
}

.pulse-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-wave {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(65, 105, 225, 0.3);
    border-radius: 50%;
    animation: pulseExpand 3s ease-out infinite;
}

.pulse-wave:nth-child(2) {
    animation-delay: 1s;
}

.pulse-wave:nth-child(3) {
    animation-delay: 2s;
}

@keyframes pulseExpand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

.pulse-icon {
    position: relative;
    z-index: 10;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(47, 74, 125, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.2);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.pulse-icon svg {
    filter: drop-shadow(0 0 8px rgba(65, 105, 225, 0.4));
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        background-position: 20% 50%, 80% 50%;
    }
    25% {
        background-position: 50% 20%, 50% 80%;
    }
    50% {
        background-position: 80% 50%, 20% 50%;
    }
    75% {
        background-position: 50% 80%, 50% 20%;
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 5;
    animation: ctaSlideUp 0.8s ease-out;
}

@keyframes ctaSlideUp {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: ctaTitleGlow 4s ease-in-out infinite;
}

@keyframes ctaTitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
    }
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(45deg, rgba(65, 105, 225, 0.1) 25%, transparent 25%),
      linear-gradient(-45deg, rgba(65, 105, 225, 0.1) 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, rgba(47, 74, 125, 0.1) 75%),
      linear-gradient(-45deg, transparent 75%, rgba(47, 74, 125, 0.1) 75%);
    background-size: 30px 30px;
    animation: footerPattern 12s linear infinite;
}

@keyframes footerPattern {
    0% {
        background-position: 0 0, 0 0, 15px 15px, 15px 15px;
    }
    100% {
        background-position: 30px 30px, -30px 30px, 45px 45px, -15px 45px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.footer-brand {
    animation: fadeInUp 0.6s ease-out;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: inherit;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    animation: logoGlow 3s ease-in-out infinite;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.footer-subtitle {
    font-size: 0.8rem;
    color: #999;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.2) rotate(360deg);
}

.footer-links,
.footer-contact {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: calc(var(--i, 0) * 0.2s);
    animation-fill-mode: both;
}

.footer-links { --i: 1; }
.footer-contact { --i: 2; }

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.contact-item a {
    color: #ccc;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
    transform: translateX(10px);
}

.contact-item a:hover {
    color: white;
}

.contact-item:hover svg {
    transform: rotate(360deg) scale(1.2);
}

.contact-item svg {
    transition: all 0.4s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    position: relative;
    z-index: 5;
    animation: fadeIn 1s ease-out 0.8s both;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        max-width: min(900px, 95vw);
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 5vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.8vw, 1.4rem);
        margin-bottom: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: 1.5rem;
        max-width: min(600px, 90vw);
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: min(300px, 80vw);
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .cta-button {
        width: 50px;
        height: 50px;
    }
    
    .avatar-circle {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .founder-avatar {
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }
    
    .nav-logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-title {
        font-size: 1rem;
    }
    
    .nav-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 10vw, 2rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 5vw, 1.1rem);
        margin-bottom: 1.2rem;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary.full-width,
    .btn-secondary.large {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .avatar-circle {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .founder-avatar {
        display: flex;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: min(280px, 85vw);
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .pulse-separator {
        height: 150px;
    }
    
    .pulse-icon {
        width: 60px;
        height: 60px;
    }
    
    .pulse-icon svg {
        width: 24px;
        height: 24px;
    }
    
    @keyframes pulseExpand {
        0% {
            width: 80px;
            height: 80px;
            opacity: 1;
        }
        100% {
            width: 400px;
            height: 400px;
            opacity: 0;
        }
    }
}

/* Mobile Hero Adjustments - Must be after base hero styles */
@media (max-width: 640px) {
    .hero {
        min-height: calc(100vh - 80px) !important;
        min-height: calc(100dvh - 80px) !important;
        padding: 1rem 0.5rem !important;
    }
    
    .hero-content {
        margin-top: 1rem !important;
        margin-bottom: 60px !important;
        max-width: min(100%, 95vw) !important;
        padding: 0.5rem !important;
    }
    
    .scroll-indicator {
        bottom: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: calc(100vh - 70px) !important;
        min-height: calc(100dvh - 70px) !important;
        padding: 0.5rem 0.5rem !important;
    }
    
    .hero-content {
        margin-top: 0.5rem !important;
        margin-bottom: 50px !important;
        max-width: 100% !important;
        padding: 0.5rem !important;
    }
    
    .scroll-indicator {
        bottom: 1rem !important;
    }
}

/* Responsive Navigation */
@media (max-width: 640px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (min-width: 641px) {
    .mobile-only {
        display: none;
    }
}

@media (max-width: 640px) {
    .problem-cta {
        padding: 2rem 1rem;
    }
    
    .problem-question {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .problem-cta .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .problem-question {
        font-size: 1rem;
    }
    
    .problem-cta .btn-primary {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Performance Optimizations */
* {
    will-change: auto;
}

#matrix-rain-canvas,
#floating-particles,
.hero::before,
.hero::after {
    will-change: transform, opacity;
}

.solution-card:hover,
.problem-card:hover,
.why-point:hover {
    will-change: transform, box-shadow;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    #matrix-rain-canvas,
    #floating-particles {
        display: none;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #0000ff;
        --text: #000000;
        --background: #ffffff;
        --border: #000000;
    }
}



.founder-avatar {
    width: 150px; /* Adjust as needed */
    height: 150px; /* Adjust as needed */
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--primary-lighter);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.founder-book-badge {
    font-size: 0.95rem;
    color: #4A90E2;
    margin: 0.3rem 0 0.8rem 0;
    font-weight: 500;
}

.founder-book-badge a {
    color: #4A90E2;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.founder-book-badge a:hover {
    color: #2E5C8A;
    border-bottom: 1px solid #4A90E2;
}

.founder-book-badge em {
    font-style: italic;
}

/* ============================================
   CALCULATOR ROI - RoboMarketing
   ============================================ */

.calculator-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.roi-calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.roi-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1.2rem;
}

.input-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.help-text {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.3rem;
    font-style: italic;
}

.calculate-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.5rem;
    box-sizing: border-box;
}

/* Mobile - butoane și mai mici */
@media (max-width: 480px) {
    .calculate-btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
}

.roi-results {
    display: none;
    animation: slideInResults 0.5s ease-out;
}

.roi-results.show {
    display: block;
}

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

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* FORȚEAZĂ 2 coloane pe desktop */
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Tablet - tot 2x2 */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
}

/* Mobile - 1 coloană */
@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}
.result-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.result-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-left-color: #764ba2;
}

.result-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.result-card.highlight .result-icon {
    filter: brightness(2);
}

.result-content {
    flex: 1;
}

.result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-weight: 600;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.result-description {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

.methodology-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    margin-bottom: 1rem;
}

.methodology-box h4 {
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.methodology-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.methodology-box li {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cta-box .btn-secondary {
    background: white;
    color: #667eea;
    margin: 0 0.5rem;
}

.cta-box .btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-box.high-value {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.cta-box.high-value .whatsapp-btn {
    background: white;
    color: #00c853;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-box {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
    border: 1px solid #e2e8f0;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .roi-form {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

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

    .result-value {
        font-size: 1.5rem;
    }

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

@media (max-width: 480px) {
    .roi-form {
        padding: 1.25rem;
    }

    .result-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .result-icon {
        font-size: 2.5rem;
    }

    .result-value {
        font-size: 1.4rem;
    }

    .cta-box {
        padding: 1.25rem;
    }

    .cta-box .btn-secondary {
        width: 100%;
        margin: 0.25rem 0;
    }
}

/* ============================================
   CERTIFICATIONS SECTION - VERSION 2 (REFINED)
   ============================================ */

.certifications-section {
    background: linear-gradient(135deg, #0a0a15 0%, #16213e 50%, #0f172a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Background effects subtile */
.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 245, 212, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(88, 86, 214, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* Grid pentru certificări - MAI MIC, MAI ECHILIBRAT */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto 2.5rem;
    max-width: 950px;
    align-items: center;
}

/* Card pentru fiecare logo - MAI MIC, MAI ELEGANT */
.cert-logo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    max-height: 90px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover effect subtil */
.cert-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 245, 212, 0.06) 0%, 
        rgba(88, 86, 214, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.cert-logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 245, 212, 0.25);
    box-shadow: 
        0 8px 25px rgba(0, 245, 212, 0.1),
        0 0 15px rgba(0, 245, 212, 0.05);
}

.cert-logo-card:hover::before {
    opacity: 1;
}

/* Logo-uri - MAI MICI, MAI LUMINOASE */
.cert-logo-card img {
    width: 100%;
    max-width: 100px;
    max-height: 50px;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%) brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cert-logo-card:hover img {
    filter: grayscale(0%) brightness(1.3) contrast(1);
    transform: scale(1.05);
}

/* Trustindex Container */
.trustindex-container {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

/* ============================================
   CERTIFICATIONS SECTION - WITH LABELS
   ============================================ */

.certifications-section {
    background: linear-gradient(135deg, #0a0a15 0%, #16213e 50%, #0f172a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Background effects subtile */
.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 245, 212, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(88, 86, 214, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* Grid pentru certificări */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto 2.5rem;
    max-width: 1000px;
    align-items: stretch;
}

/* Card pentru fiecare certificare */
.cert-logo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover effect subtil */
.cert-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 245, 212, 0.06) 0%, 
        rgba(88, 86, 214, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.cert-logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 245, 212, 0.25);
    box-shadow: 
        0 8px 25px rgba(0, 245, 212, 0.1),
        0 0 15px rgba(0, 245, 212, 0.05);
}

.cert-logo-card:hover::before {
    opacity: 1;
}

/* Content container */
.cert-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Logo-uri */
.cert-logo-card img {
    width: 100%;
    max-width: 90px;
    max-height: 45px;
    height: auto;
    object-fit: contain;
    filter: grayscale(80%) brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.cert-logo-card:hover img {
    filter: grayscale(0%) brightness(1.3) contrast(1);
    transform: scale(1.05);
}

/* Text sub logo */
.cert-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.cert-logo-card:hover .cert-name {
    color: rgba(0, 245, 212, 0.9);
}

/* Trustindex Container */
.trustindex-container {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1.25rem;
        max-width: 850px;
    }
    
    .cert-logo-card {
        padding: 1.25rem 0.75rem;
        min-height: 120px;
    }
    
    .cert-content {
        gap: 0.65rem;
    }
    
    .cert-logo-card img {
        max-width: 80px;
        max-height: 40px;
    }
    
    .cert-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .certifications-section {
        padding: 4rem 0;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2.5rem auto 2rem;
        max-width: 600px;
    }
    
    .cert-logo-card {
        padding: 1rem 0.5rem;
        min-height: 110px;
    }
    
    .cert-content {
        gap: 0.6rem;
    }
    
    .cert-logo-card img {
        max-width: 70px;
        max-height: 35px;
    }
    
    .cert-name {
        font-size: 0.65rem;
    }
    
    .trustindex-container {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 400px;
    }
    
    .cert-logo-card {
        padding: 0.75rem 0.5rem;
        min-height: 105px;
        border-radius: 10px;
    }
    
    .cert-content {
        gap: 0.5rem;
    }
    
    .cert-logo-card img {
        max-width: 65px;
        max-height: 32px;
    }
    
    .cert-name {
        font-size: 0.625rem;
    }
}