/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fustat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.4rem 0.5rem;
}

.navbar.scrolled {
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 40px;
    overflow: visible;
    width: 32px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-logo {
    width: 150px;
}

.logo-icon {
    height: 36px;
    width: 36px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 4px;
}

.logo-text {
    height: 18px;
    width: auto;
    display: block;
    object-fit: contain;
    position: absolute;
    left: 10px;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo-text {
    clip-path: inset(0 0 0 0);
    left: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item:last-child .nav-link {
    background: white;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.nav-item:last-child .nav-link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero section styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    text-align: left;
    padding-left: 3rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
}

.hero-email-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.hero-email-input::placeholder {
    color: #999;
}

.hero-submit-btn {
    padding: 1rem 2.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-submit-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-circles-grid {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.connect-line {
    stroke: #e0e0e0;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.5;
}

.central-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2),
                0 0 0 8px rgba(102, 126, 234, 0.1);
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-circle .emoji {
    font-size: 3rem;
}

.circle-1 {
    width: 220px;
    height: 220px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #e8d5c4;
}

.circle-2 {
    width: 140px;
    height: 140px;
    top: 20px;
    right: 0;
    background: #ffa726;
}

.circle-3 {
    width: 160px;
    height: 160px;
    top: 180px;
    left: 0;
    background: #667eea;
}

.circle-4 {
    width: 120px;
    height: 120px;
    top: 200px;
    right: 40px;
    background: #000;
}

.circle-5 {
    width: 180px;
    height: 180px;
    bottom: 80px;
    left: 50px;
    background: #e0e0e0;
}

.circle-6 {
    width: 140px;
    height: 140px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #c8e6c9;
}

.circle-7 {
    width: 160px;
    height: 160px;
    bottom: 60px;
    right: 0;
    background: #ffd54f;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    width: 0;
    height: 20px;
    opacity: 0;
    margin-left: 0;
    transition: width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
    overflow: hidden;
}

.btn:hover .btn-icon {
    width: 20px;
    opacity: 1;
    margin-left: 0.5rem;
}

.btn-text {
    white-space: nowrap;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: #f8f9fa;
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.15) 10%, 
        rgba(0, 0, 0, 0.25) 20%, 
        rgba(0, 0, 0, 0.2) 30%, 
        rgba(0, 0, 0, 0.3) 40%, 
        rgba(0, 0, 0, 0.15) 50%, 
        rgba(0, 0, 0, 0.25) 60%, 
        rgba(0, 0, 0, 0.2) 70%, 
        rgba(0, 0, 0, 0.3) 80%, 
        rgba(0, 0, 0, 0.15) 90%, 
        transparent 100%
    );
    filter: blur(1px);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    padding-right: 2rem;
    border-right: 2px solid rgba(0, 0, 0, 0.15);
}

.about-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.why-choose-us {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.why-choose-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-feature-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
}

.feature-icon {
    background: #d3d3d3;
    border-radius: 12px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2.5;
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid rgba(0, 0, 0, 0.15);
        padding-bottom: 2rem;
    }
    
    .about {
        padding: 4rem 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: #0a0a0a;
    position: relative;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trustpilot-logo {
    max-width: 350px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
    background: white;
    padding: 0.35rem 0.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.testimonials-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.3s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star-filled {
    width: 24px;
    height: 24px;
    stroke: #00b67a;
    fill: #00b67a;
    stroke-width: 0;
}

.star-half-wrapper {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.star-empty {
    width: 24px;
    height: 24px;
    stroke: #00b67a;
    fill: none;
    stroke-width: 2;
}

.star-half-fill {
    width: 24px;
    height: 24px;
    stroke: #00b67a;
    fill: #00b67a;
    stroke-width: 0;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(0 50% 0 0);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: #f8f9fa;
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    background: rgba(74, 222, 128, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(74, 222, 128, 0.3);
    box-shadow: 0 8px 32px rgba(74, 222, 128, 0.15);
}

.contact-icon i {
    width: 24px;
    height: 24px;
    color: #4ade80;
    stroke-width: 2.5;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 1rem 2rem;
    background: rgba(74, 222, 128, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #1a1a1a;
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 8px 32px rgba(74, 222, 128, 0.2);
}

.submit-btn:disabled {
    background: rgba(150, 150, 150, 0.3);
    border-color: rgba(150, 150, 150, 0.4);
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.submit-btn:not(:disabled):hover {
    background: rgba(74, 222, 128, 0.5);
    border-color: rgba(74, 222, 128, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.3);
}

.submit-btn i {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ade80;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    font-size: 0.95rem;
}

.footer-contact i {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 222, 128, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(74, 222, 128, 0.4);
    border-color: rgba(74, 222, 128, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.2);
}

.social-icon i {
    width: 20px;
    height: 20px;
    color: #4ade80;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUnderline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        max-width: 95%;
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        width: calc(100% - 2rem);
        max-width: 400px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 1.5rem 0;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        width: auto;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 0.75rem;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-logo h1 {
        font-size: 1.2rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}
