@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&display=swap');

* {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff9ee;
    margin: 0;
    padding: 0;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition:
        padding 0.4s ease,
        transform 0.4s ease,
        opacity 0.4s ease;
    margin: 0;
    border: none;
    border: 3px solid transparent;
    border-radius: 20px;
    margin-top: 10px;
}

.navbar.scrolled {
    transform: scale(0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-color: #c6a59d;
    background-color: rgba(255, 249, 238, 0.95);
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    max-width: 900px;
    backdrop-filter: blur(10px);
    transition: 
        background-color 0.3s cubic-bezier(.4,0,.2,1),
        box-shadow 0.3s cubic-bezier(.4,0,.2,1),
        padding 0.3s cubic-bezier(.4,0,.2,1),
        transform 0.3s cubic-bezier(.4,0,.2,1),
        opacity 0.3s cubic-bezier(.4,0,.2,1),
        border-radius 0.3s cubic-bezier(.4,0,.2,1);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
    margin-right: 100px;
}

.logo-img {
    width: 30px;
    height: 30px;
}

.nav-left h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
}

.nav-links {
    display: flex;
    gap: 32px;
    padding-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #6b7280;
}

.container {
    margin-top: 100px;
    padding: 20px 24px;
    min-height: calc(100vh - 100px);
    background-color: #fff9ee;
    animation: slideUp 0.5s ease-in-out;
}

.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px;
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 40px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #f8f9fa;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.download-button:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.download-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.demo-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    animation: slideUp 0.6s ease-in-out 0.4s both;
    padding: 20px;
}

.demo-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
    line-height: 1.2;
}

.demo-section video {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    background-color: #000000;
}

.video-container {
    display: inline-block;
    position: relative;
    max-width: 1200px;
    width: 100%;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(198, 165, 157, 0.2);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

.play-pause-btn {
    background: #c6a59d;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(198, 165, 157, 0.3);
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(198, 165, 157, 0.4);
}

.play-pause-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background-color: rgba(198, 165, 157, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.progress-bar:hover {
    height: 8px;
    background-color: rgba(198, 165, 157, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c6a59d, #b08d85);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #c6a59d;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-fill::after {
    opacity: 1;
}

.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
    animation: slideUp 0.6s ease-in-out 0.6s both;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
    line-height: 1.2;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    min-width: 120px;
}

.tab-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tab-btn:hover {
    color: #c6a59d;
    transform: translateY(-1px);
}

.tab-btn.active {
    color: #c6a59d;
    background-color: rgba(198, 165, 157, 0.15);
}

.tab-content {
    position: relative;
    min-height: 300px;
}

.tab-pane {
    display: none;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
}

.feature-text {
    flex: 1;
    max-width: 450px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 550px;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}

.tab-pane h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.tab-pane p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tab-pane ul {
    list-style: none;
    padding: 0;
}

.tab-pane li {
    font-size: 1rem;
    color: #374151;
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.tab-pane li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.more-features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
    animation: slideUp 0.6s ease-in-out 0.8s both;
}

.more-features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.more-features-section p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 48px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1) rotate(7deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 24px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.reviews-section p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-section > p{
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 26px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(198, 165, 157, 0.12);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(198, 165, 157, 0.2);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
    justify-content: center;
    padding: 6px 12px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.review-text {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #1f2937;
    margin-bottom: 22px;
    flex-grow: 1;
    font-weight: 400;
}

.reviewer-name {
    font-size: 0.88rem;
    color: #6b7280;
    font-weight: 600;
    text-align: center;
    align-self: flex-end;
    padding: 6px 12px;
    background: rgba(198, 165, 157, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(198, 165, 157, 0.12);
}

/* Call to Action Section */
.cta-section {
    padding: 60px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(198, 165, 157, 0.1);
    text-align: center;
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: #c6a59d;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(198, 165, 157, 0.3);
}

.cta-btn.primary:hover {
    background: #b08d85;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(198, 165, 157, 0.4);
}

.cta-btn.secondary {
    background: #ffffff;
    color: #f97316;
    border-color: #f97316;
}

.cta-btn.secondary:hover {
    background: #f97316;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 20px 16px;
        flex-direction: column;
        gap: 16px;
    }
    
    .navbar.scrolled {
        transform: none;
        max-width: none;
        padding-top: 40px !important;
        margin-top: 0 !important;
        border-color: transparent;
        border-radius: 0;
    }
    
    .nav-left {
        margin-right: 0;
        padding-left: 0;
    }
    
    .nav-left h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 20px;
        padding-right: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 16px;
    }
    
    /* Container Mobile */
    .container {
        margin-top: 140px;
        padding: 20px 16px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 40px;
        margin-bottom: 40px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    /* Hide Video on Mobile */
    .demo-section {
        display: none;
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 40px 16px;
    }
    
    .features-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .tabs {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 16px 20px;
        min-width: 100px;
        font-size: 14px;
    }
    
    .tab-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .feature-text {
        max-width: none;
        text-align: center;
    }
    
    .feature-image {
        min-width: auto;
        order: -1;
    }
    
    .feature-image img {
        max-width: 100%;
        height: auto;
    }
    
    .tab-pane h3 {
        font-size: 1.5rem;
    }
    
    .tab-pane p {
        font-size: 1rem;
    }
    
    /* More Features Mobile */
    .more-features-section {
        padding: 40px 16px;
    }
    
    .more-features-section h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    /* Setup Section Mobile */
    .setup-section {
        padding: 40px 16px;
    }
    
    .setup-section h2 {
        font-size: 2rem;
    }
    
    .setup-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .setup-card {
        padding: 24px 20px;
    }
    
    /* Reviews Section Mobile */
    .reviews-section {
        padding: 40px 16px;
    }
    
    .reviews-section h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .review-card {
        padding: 24px 20px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 40px 16px;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 16px 30px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 16px 12px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .container {
        margin-top: 120px;
        padding: 16px 12px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .features-section h2,
    .more-features-section h2,
    .setup-section h2,
    .reviews-section h2 {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Footer Section */
.footer {
    background: #ffffff;
    border-top: 1px solid rgba(198, 165, 157, 0.1);
    padding: 60px 24px 40px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #374151;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: rgba(198, 165, 157, 0.1);
    transform: translateY(-1px);
}

.social-icon svg {
    transition: fill 0.2s ease;
}

.social-icon:hover svg {
    fill: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.privacy-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 60px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    border-bottom: 2px solid rgba(198, 165, 157, 0.2);
    padding-bottom: 8px;
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 24px 0 12px 0;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 8px;
}

.policy-section ul li::marker {
    color: #c6a59d;
}

.contact-info {
    background: rgba(198, 165, 157, 0.05);
    border: 1px solid rgba(198, 165, 157, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: #c6a59d;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
    .privacy-content {
        padding: 24px 16px;
        margin-top: 140px;
    }
    
    .privacy-content h1 {
        font-size: 2.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.125rem;
    }
    
    .permission-item {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .permission-name {
        font-size: 0.85rem;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        margin-top: 120px;
        padding: 20px 12px;
    }
    
    .privacy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.25rem;
    }
    
    .policy-section h3 {
        font-size: 1rem;
    }
}

.permissions-list {
    margin-top: 24px;
}

.permission-item {
    background: rgba(198, 165, 157, 0.05);
    border: 1px solid rgba(198, 165, 157, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    transition: all 0.2s ease;
}

.permission-item:hover {
    background: rgba(198, 165, 157, 0.08);
    border-color: rgba(198, 165, 157, 0.2);
    transform: translateY(-1px);
}

.permission-name {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Setup Section */
.setup-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
    animation: slideUp 0.6s ease-in-out 1.0s both;
}

.setup-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.setup-section > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.setup-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

.setup-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.setup-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.setup-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.setup-card:hover .setup-icon svg {
    transform: scale(1.1);
}

.setup-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.setup-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Setup Section */
@media (max-width: 768px) {
    .setup-section {
        padding: 60px 16px;
    }
    
    .setup-section h2 {
        font-size: 2rem;
    }
    
    .setup-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .setup-card {
        padding: 24px 20px;
    }
    
    .setup-features {
        padding: 24px 20px;
    }
}