* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #00ff88;
    --accent-glow: #00ff8844;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background: var(--secondary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.Crea {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
}

.Crea-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), rgba(0, 255, 136, 0.3));
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 10%;
    animation-delay: 1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
    opacity: 0.3;
}

.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    right: 30%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotate(0deg); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-20px) scale(1.1) rotate(90deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-40px) scale(1) rotate(180deg); 
        opacity: 1; 
    }
    75% { 
        transform: translateY(-20px) scale(0.9) rotate(270deg); 
        opacity: 0.7; 
    }
}

.Crea-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.Crea-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.Crea-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.accent-gradient {
    background: linear-gradient(135deg, var(--accent-color), #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.accent-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), #00cc6a);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 1s both;
}

@keyframes underlineExpand {
    from { width: 0; }
    to { width: 100%; }
}

.Crea-subtitle-emphasis {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.8em;
}

.Crea-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.Crea-cosa {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.Crea-cosa .stat-item {
    text-align: center;
}

.Crea-cosa .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.Crea-cosa .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.Crea-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::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: var(--transition);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-arrow {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--secondary-color);
}

.Crea-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
}

.tech-card {
    position: absolute;
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
    animation: cardFloat 6s ease-in-out infinite;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.tech-card img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.tech-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.card-webflow {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-zapier {
    top: 50px;
    right: 50px;
    animation-delay: 1.5s;
}

.card-notion {
    bottom: 50px;
    left: 50px;
    animation-delay: 3s;
}

.card-airtable {
    bottom: 50px;
    right: 50px;
    animation-delay: 4.5s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.central-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.circle-inner {
    text-align: center;
    color: var(--primary-color);
}

.circle-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.circle-text {
    font-size: 0.9rem;
    font-weight: 700;
}

.connection-line {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    opacity: 0.6;
    animation: lineGlow 3s ease-in-out infinite;
}

.line-1 {
    top: 60%;
    left: 45%;
    width: 80px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    right: 45%;
    width: 80px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

.line-3 {
    bottom: 60%;
    left: 45%;
    width: 80px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.line-4 {
    bottom: 60%;
    right: 45%;
    width: 80px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #00cc6a);
    color: var(--primary-color);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.accent {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.scegliere {
    padding: 100px 0;
    background: #fafafa;
}

.scegliere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.piattaforme {
    padding: 100px 0;
}

.piattaforme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.platform-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.platform-card:hover img {
    transform: scale(1.1);
}

.platform-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.platform-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.benefits {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefits p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.benefits-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.testimonials {
    padding: 100px 0;
    background: #fafafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-weight: bold;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cosa {
    padding: 80px 0;
}

.cosa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--accent-glow);
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: var(--secondary-color);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.7;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    transform: scale(0.8);
    transition: var(--transition);
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.popup p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.popup .btn {
    background: var(--accent-color);
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--secondary-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.error {
    color: #ff4757;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.place-info {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
}

.place-info h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.place-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.place-item:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(10px);
}

.place-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

.place-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.place-details p {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.place-details small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .Crea-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .Crea-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .Crea-buttons {
        justify-content: center;
    }
    
    .scegliere-grid,
    .piattaforme-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cosa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .Crea-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .cosa-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-content {
        padding: 2rem;
        margin: 0 10px;
    }
}

.page-Crea {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.story-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.mission-values {
    padding: 100px 0;
    background: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--accent-color);
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonials-detailed {
    padding: 100px 0;
    background: #fafafa;
}

.detailed-testimonials {
    display: grid;
    gap: 3rem;
}

.testimonial-detailed {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
}

.testimonial-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.rating {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.testimonial-author-detailed {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-detailed img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-info small {
    color: var(--accent-color);
    font-weight: 500;
}

.cta-about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: var(--secondary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.place-Crea {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.place-main {
    padding: 100px 0;
}

.place-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.place-form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.place-form-section p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.place-form {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.place-info-section {
    position: sticky;
    top: 100px;
}

.quick-info {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.quick-info h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.quick-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quick-item:last-child {
    margin-bottom: 0;
}

.quick-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.quick-item p {
    margin: 0;
    line-height: 1.4;
}

.map-section {
    padding: 100px 0;
    background: #fafafa;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.map-placeholder {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-container:hover img {
    transform: scale(1.05);
}

.map-info {
    text-align: center;
    color: var(--secondary-color);
}

.map-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.map-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fat-place {
    padding: 100px 0;
}

.fat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fat-item {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.fat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.fat-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.fat-item p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .place-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .place-info-section {
        position: static;
    }

    .place-form {
        padding: 1.5rem;
    }

    .fat-grid {
        grid-template-columns: 1fr;
    }

    .quick-info {
        margin-top: 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .testimonial-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .map-info h3 {
        font-size: 1.5rem;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }
}

.tems-Crea {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.tems-content {
    padding: 80px 0;
}

.tems-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.tems-sidebar {
    position: sticky;
    top: 100px;
}

.tems-nav {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.tems-nav h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.tems-nav ul {
    list-style: none;
}

.tems-nav ul li {
    margin-bottom: 0.75rem;
}

.tems-nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.tems-nav ul li a:hover {
    color: var(--accent-color);
    background: rgba(0, 255, 136, 0.1);
    padding-left: 1rem;
}

.tems-nav ul li a.active {
    color: var(--primary-color);
    background: var(--accent-color);
    font-weight: 600;
    padding-left: 1rem;
}

.reading-progress {
    position: fixed;
    top: 70px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-color);
    z-index: 999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

.table-scroll-hint {
    position: relative;
}

.scroll-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    padding: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 0 0 10px 10px;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tems-section h2:hover,
.tems-section h3:hover {
    color: var(--accent-color);
    transition: var(--transition);
}

.copy-link-icon {
    opacity: 0;
    margin-left: 0.5rem;
    font-size: 0.8em;
    transition: var(--transition);
}

.tems-section h2:hover .copy-link-icon,
.tems-section h3:hover .copy-link-icon {
    opacity: 1;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin: 1rem 0;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group.focused input,
.form-group.focused textarea,
.form-group.focused select {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-1px);
}

.form-group.filled label {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-menu.active {
    left: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media print {
    .navbar,
    .tems-sidebar,
    .back-to-top,
    .reading-progress {
        display: none !important;
    }
    
    .tems-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tems-main {
        box-shadow: none;
        padding: 0;
    }
    
    .tems-section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .tems-section h2 {
        page-break-after: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .tems-section h2 {
        font-size: 16pt;
    }
    
    .tems-section h3 {
        font-size: 14pt;
    }
}

.performance-hint {
    transform: translateZ(0);
    will-change: transform;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particle {
        animation: none;
    }
}

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.tems-main {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.tems-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.tems-section:last-child {
    margin-bottom: 0;
}

.tems-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.tems-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.tems-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.tems-section ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.tems-section ul li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tems-section ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.tems-section ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.place-info-tems {
    background: #fafafa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

.place-info-tems p {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.place-info-tems p:last-child {
    margin-bottom: 0;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cookie-table table thead {
    background: var(--primary-color);
}

.cookie-table table thead th {
    color: var(--secondary-color);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-table table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-table table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
}

.cookie-table table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    background: rgba(0, 255, 136, 0.1);
}

.tems-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.tems-section a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.tems-highlight {
    background: rgba(0, 255, 136, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

.tems-highlight p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.tems-warning {
    background: rgba(255, 193, 7, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 2rem 0;
}

.tems-warning p {
    margin-bottom: 0;
    color: var(--primary-color);
}

.tems-section ol {
    counter-reset: tems-counter;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.tems-section ol li {
    counter-increment: tems-counter;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.tems-section ol li::before {
    content: counter(tems-counter) '.';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tems-toc {
    background: #fafafa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.tems-toc h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tems-toc ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.tems-toc ul li {
    padding-left: 0;
}

.tems-toc ul li::before {
    display: none;
}

.tems-toc ul li a {
    display: block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
    transition: var(--transition);
}

.tems-toc ul li a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

@media (max-width: 768px) {
    .tems-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tems-sidebar {
        position: static;
        order: 2;
    }

    .tems-main {
        padding: 2rem;
        order: 1;
    }

    .tems-nav {
        padding: 1.5rem;
    }

    .tems-nav ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }

    .tems-nav ul li a {
        text-align: center;
        background: rgba(0, 255, 136, 0.1);
        border-radius: 8px;
        padding: 0.75rem 0.5rem;
    }

    .tems-section h2 {
        font-size: 1.5rem;
    }

    .tems-section h3 {
        font-size: 1.2rem;
    }

    .cookie-table {
        overflow-x: auto;
    }

    .cookie-table table {
        min-width: 600px;
    }

    .cookie-table table thead th,
    .cookie-table table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .tems-toc ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tems-main {
        padding: 1.5rem;
    }

    .tems-nav {
        padding: 1rem;
    }

    .tems-section h2 {
        font-size: 1.3rem;
    }

    .tems-section p,
    .tems-section ul li {
        font-size: 0.95rem;
    }

    .cookie-table table thead th,
    .cookie-table table tbody td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }

    .place-info-tems {
        padding: 1.5rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}