/* SoftByrdy Design System & Stylesheet */

:root {
    --bg-color: #080c14;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --primary: #00f2fe;
    --primary-alt: #4facfe;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --glow-cyan: rgba(0, 242, 254, 0.15);
    --glow-purple: rgba(168, 85, 247, 0.15);
    --font-sans: 'Outfit', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Global Responsive Images & SVGs */
img, svg {
    max-width: 100%;
    height: auto;
}

/* Glowing Background Blobs */
.glow-bg {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.3;
}

.glow-1 {
    top: -15vw;
    right: -10vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-2 {
    top: 40vw;
    left: -15vw;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
}

.glow-3 {
    bottom: -10vw;
    right: 10vw;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
}

/* Grid overlay for tech look */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.004) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.004) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    flex-grow: 1;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -10px rgba(0, 242, 254, 0.08);
}

/* Headings & Text */
h1, h2, h3 {
    font-family: var(--font-heading);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 30%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Page Headers */
.page-hero {
    padding: 140px 0 60px 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
    color: #080c14;
    box-shadow: 0 4px 20px var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 12, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(8, 12, 20, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-primary);
    text-decoration: none;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-quick);
    position: relative;
    padding: 0.5rem 0;
}

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

/* Subtle line indicator under active/hover nav link */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-alt));
    transition: var(--transition-quick);
}

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

.nav-cta {
    background: rgba(0, 242, 254, 0.08);
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 254, 0.25);
    font-weight: 600;
}

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

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
    color: #080c14;
    border-color: transparent;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-quick);
}

/* Hero Section (Acasă) */
.hero {
    padding: 180px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    mask-image: radial-gradient(circle, rgba(0,0,0,0.85) 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,0.85) 20%, transparent 65%);
    filter: blur(8px) opacity(0.35);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    animation: slow-zoom-rotate 30s linear infinite;
}

@keyframes slow-zoom-rotate {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.main-mockup {
    width: 100%;
    max-width: 440px;
    height: 320px;
    padding: 1.2rem;
    position: relative;
}

.mockup-line {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}

.title-line {
    height: 24px;
    width: 55%;
    margin-bottom: 1.2rem;
}

.text-line {
    height: 14px;
    width: 100%;
    margin-bottom: 2.5rem;
}

.text-line.short { width: 45%; }

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.mockup-box {
    height: 90px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.floating-card-1 {
    position: absolute;
    top: -25px;
    right: -15px;
    padding: 1.2rem;
    width: 170px;
    text-align: center;
}

.floating-card-2 {
    position: absolute;
    bottom: -35px;
    left: -15px;
    padding: 1.2rem;
    width: 190px;
    text-align: center;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; background: rgba(0, 242, 254, 0.15); }
    50% { opacity: .4; background: rgba(0, 242, 254, 0.03); }
}

/* Overview Section (Acasă) */
.overview {
    padding: 80px 0;
    position: relative;
}

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

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.stat-item {
    padding: 2rem;
    text-align: center;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

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

/* Services Grids (servicii.html & Home summary) */
.features {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: #080c14;
}

.feature-icon.bg-cyan { background: var(--primary); box-shadow: 0 4px 15px var(--glow-cyan); }
.feature-icon.bg-purple { background: var(--accent-purple); box-shadow: 0 4px 15px var(--glow-purple); }
.feature-icon.bg-pink { background: var(--accent-pink); box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2); }

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    flex-grow: 1;
}

.features-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* Portfolio Section (portofoliu.html) */
.portfolio {
    padding: 60px 0 100px 0;
}

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

.portfolio-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-img-container {
    position: relative;
    height: 200px;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-img-placeholder {
    width: 80%;
    height: 80%;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img-placeholder {
    transform: scale(1.05);
    border-color: var(--primary);
}

.portfolio-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.portfolio-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.portfolio-tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

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

/* Pricing Grid */
.pricing-section {
    padding: 60px 0 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.03) 0%, transparent 60%), var(--bg-card);
    box-shadow: 0 15px 40px -10px rgba(0, 242, 254, 0.12);
}

.pricing-card.featured .featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
    color: #080c14;
    padding: 0.35rem 1.3rem;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
        font-family: var(--font-mono);
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-card .price-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 45px;
}

.pricing-card .price-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 242, 254, 0.04);
    border-left: 2px solid var(--primary);
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
}

.pricing-card .price-note a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 242, 254, 0.4);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* About Page (despre.html) */
.about-section {
    padding: 60px 0 100px 0;
}

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

.about-img-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    border: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.tech-stack-title {
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 3rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.tech-item {
    padding: 2rem 1rem;
    text-align: center;
}

.tech-item h4 {
    font-size: 1.1rem;
    margin-top: 0.8rem;
    color: var(--text-primary);
}

.tech-item p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Contact Page (contact.html) */
.contact-section {
    padding: 60px 0 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info-panel {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.01);
}

.contact-info-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.contact-info-panel p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.contact-detail-card .icon {
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.contact-detail-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-card p,
.contact-detail-card a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-detail-card a:hover {
    color: var(--primary);
}

.contact-form-panel {
    padding: 3rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.08);
}

.form-group select option {
    background-color: var(--bg-color);
    color: var(--text-primary);
}

.form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Legal Pages (GDPR & Cookies) */
.legal-section {
    padding: 60px 0 100px 0;
}

.legal-content {
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer Style (Adapted from incaltaminteindetaliu.softbyrdy.com) */
.footer {
    background: rgba(5, 8, 15, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.2rem;
}

.brand-moto {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    max-width: 280px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-quick);
}

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

.footer-top h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-top h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-top ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-top ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.footer-top ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-info a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

.alert-p {
    padding: 0.8rem;
    background: rgba(0, 242, 254, 0.04);
    border: 1px dashed rgba(0, 242, 254, 0.15);
    border-radius: 8px;
    color: var(--primary) !important;
}

.footer-legal-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-legal-info .company-name {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-legal-info p {
    margin-bottom: 0.4rem;
}

.legal-links {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}

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

.anpc-badges-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.anpc-badge-link img {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition-quick);
}

.anpc-badge-link img:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.developer-credit a {
    color: var(--primary);
    text-decoration: none;
}

.developer-credit a:hover {
    text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 1000;
    max-width: 600px;
    margin-left: auto;
    padding: 1.5rem;
}

.cookie-banner-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-banner-icon {
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.cookie-banner-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-banner-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-banner-actions .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* FAQ Section (Acasă) */
.faq-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-info {
    position: sticky;
    top: 120px;
}

.faq-info h2 {
    font-size: 2.8rem;
    margin: 1rem 0 1.5rem 0;
    line-height: 1.15;
}

.faq-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.faq-item:hover {
    border-color: rgba(0, 242, 254, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.04);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 40px -10px rgba(0, 242, 254, 0.12);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-quick);
}

.faq-trigger span {
    padding-right: 1.5rem;
    line-height: 1.4;
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger:hover .faq-icon {
    color: var(--primary);
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--bg-color);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    overflow: hidden;
}

.faq-content p {
    padding: 0 2rem 1.6rem 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-content p {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stat-grid {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-info {
        position: relative;
        top: 0;
        text-align: center;
    }
    
    .faq-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header-container {
        height: 70px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(8, 12, 20, 0.95);
        border-bottom: 1px solid var(--border-color);
        padding: 2.5rem;
        flex-direction: column;
        gap: 1.5rem;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-card-1 {
        right: 10px;
        top: -10px;
        width: 130px;
        padding: 0.7rem;
    }
    
    .floating-card-2 {
        left: 10px;
        bottom: -20px;
        width: 140px;
        padding: 0.7rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .brand-moto {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-top h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .anpc-badges-container {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    /* FAQ responsive styles for mobile */
    .faq-trigger {
        padding: 1.2rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .faq-trigger span {
        padding-right: 1rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-content p {
        padding: 0 1.5rem 1.4rem 1.5rem;
        font-size: 0.95rem;
    }
}
