:root {
    --primary: #0070f3;
    --primary-glow: radial-gradient(rgba(0, 112, 243, 0.4), rgba(0, 112, 243, 0));
    --bg: #000000;
    --card-bg: #0a0a0a;
    --card-border: #1a1a1a;
    --text: #ffffff;
    --text-muted: #888888;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2 {
    filter: drop-shadow(0 0 15px rgba(0, 112, 243, 0.4)) drop-shadow(0 0 5px rgba(0, 112, 243, 0.6));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.logo-img {
    height: 90px;
    width: auto;
    filter: brightness(1.1);
    transition: var(--transition);
    will-change: transform;
    mix-blend-mode: lighten;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 112, 243, 0.8));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-top: 4px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text);
}

/* Hero */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}


.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 4rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    display: block;
    background: none;
    -webkit-text-fill-color: initial;
    color: transparent;
}

.reveal-text .word {
    display: inline-block;
    white-space: nowrap;
}

.reveal-text .letter {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 15px, 0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal-text .letter.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.cursor {
    display: inline-block;
    color: #a855f7;
    animation: blink 0.8s infinite;
    font-weight: 300;
    margin-left: 4px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #dfdfdf;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-btns-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-whatsapp-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #22c55e;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.btn-gradient:hover,
.btn-whatsapp-glow:hover {
    transform: scale(1.05);
}

.hero-trust-indicators {
    margin-bottom: 4rem;
    color: #aaa;
    font-size: 0.95rem;
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 1rem 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.hero-preview-banner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

.preview-icon {
    background: #4f46e5;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.preview-text {
    display: flex;
    flex-direction: column;
}

.preview-text strong {
    color: #fff;
    font-size: 1.1rem;
}

.preview-text span {
    color: #888;
    font-size: 0.9rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, #000000, #050505);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text h2 span {
    color: var(--primary);
    white-space: nowrap;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.about-feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, #0d0d0d 0%, #050505 100%);
    border: 1px solid var(--card-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(0, 112, 243, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    background: rgba(0, 112, 243, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.service-price span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.service-features li {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: "\e04d";
    /* Phosphor check icon code */
    font-family: "Phosphor";
    color: var(--primary);
    font-weight: bold;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-card:hover .btn-service {
    background: var(--primary);
    border-color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.mobile-text {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .btn-nav {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .nav-actions {
        gap: 0.5rem;
        flex-direction: row-reverse;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--card-border);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }


}

/* Contact Section Redesigned */
.contact {
    padding: 120px 0;
    background: #000;
}

.section-header h2.gradient-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.contact-container {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-card {
    background: #0a0a0c;
    border: 1px solid #1a1a1c;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-item-card:hover {
    border-color: #2a2a2c;
    background: #0d0d0f;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-info p {
    color: #888;
    font-size: 1rem;
    margin-bottom: 0;
}

.btn-whatsapp-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #25d366;
    color: #000;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-modern:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.btn-email-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-email-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #555;
}

.hours-list {
    color: #888;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--card-border);
    background: #000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 2rem;
}

footer .logo-img {
    height: 120px;
    mix-blend-mode: lighten;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Modal & Generator */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #0d0d0f;
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 32px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 112, 243, 0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

.step h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.step p {
    color: #888;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.step input,
.step textarea,
.step select {
    width: 100%;
    background: #1a1a1c;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    outline: none;
    transition: var(--transition);
}

.step input:focus,
.step textarea:focus {
    border-color: var(--primary);
}

.step-btns {
    display: flex;
    gap: 1rem;
}

.btn-next,
.btn-finish {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.btn-prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    color: #888;
    border: 1px solid #333;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-next:hover,
.btn-finish:hover {
    filter: brightness(1.2);
}

/* Loader Animation */
.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 112, 243, 0.1);
    border-left-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#loading-step {
    text-align: center;
}

.loading-status {
    display: block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
}

/* Preview Page */
.preview-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 3000;
    overflow-y: auto;
    color: #fff;
    font-family: var(--font-main);
}

.container-preview {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.preview-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-nav button {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition) !important;
}

.preview-nav button:hover {
    background: #222;
}

.preview-nav span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0070f3;
    background: rgba(0, 112, 243, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.preview-hero {
    padding: 100px 0;
    text-align: center;
}

.preview-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #888);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preview-hero p {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.preview-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.prev-feature {
    background: #0d0d0f;
    border: 1px solid #1a1a1c;
    padding: 2.5rem;
    border-radius: 24px;
}

.prev-feature i {
    font-size: 2.5rem;
    color: #0070f3;
    margin-bottom: 1.5rem;
}

.prev-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.prev-feature p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.preview-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #050505;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #0d0d0f;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #888;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item:hover {
    border-color: var(--primary);
}


/* Process Section Enhanced */
.process {
    padding: 120px 0;
    background: #000;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
    margin-top: 5rem;
    position: relative;
}

.process-line {
    display: none;
}

/* Linhas conectoras no desktop */
@media (min-width: 992px) {
    .process-line {
        display: block;
        position: absolute;
        grid-column: 1 / -1;
        left: 50px;
        right: 50px;
        height: 2px;
        background: linear-gradient(to right, rgba(0, 112, 243, 0), var(--primary), rgba(0, 112, 243, 0));
        z-index: 0;
        opacity: 0.3;
        top: 40px;
        pointer-events: none;
    }

    .process-line.line-1 {
        grid-row: 1;
    }

    .process-line.line-2 {
        grid-row: 2;
    }
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-header {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #0a0a0c;
    border: 2px solid rgba(0, 112, 243, 0.3);
    color: #fff;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-number span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: -5px;
}

.step-number i {
    font-size: 1.8rem;
    margin-top: 5px;
}

.process-step:hover .step-number {
    border-color: var(--primary);
    transform: translateY(-10px) rotate(5deg);
    background: #0d0d0f;
    box-shadow: 0 15px 40px rgba(0, 112, 243, 0.2);
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.process-step p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    background: #0d0d0f;
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.why-card p {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #000;
}

.portfolio h2 {
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    font-weight: 800;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-card {
    position: relative;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-grid.single-card {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 4rem auto 0;
}

.portfolio-card {
    display: block;
    text-decoration: none;
}

.portfolio-card.card-logo {
    background: #fff;
}

.portfolio-card.card-logo img {
    object-fit: contain;
    padding: 2rem;
}

.portfolio-card.card-logo .portfolio-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    nav {
        height: 80px;
    }

    .logo-img {
        height: 44px;
        max-width: 45vw;
        object-fit: contain;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .menu-toggle {
        padding: 5px;
        font-size: 1.8rem;
    }

    .mobile-only {
        display: block;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        max-width: 95vw;
        margin: 0 auto 1.5rem;
        line-height: 1.1;
        text-align: center;
        padding: 0 5px;
    }

    .portfolio h2 {
        font-size: 2.2rem;
    }

    .portfolio-card {
        height: 250px;
    }

    .hero {
        padding: 130px 0 70px;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 100%;
    }

    .process {
        padding: 80px 0;
    }

    .final-cta {
        padding: 80px 0;
    }

    .modal-content {
        padding: 3rem 1.25rem 2rem;
        margin: 10px;
        max-height: 85vh;
        overflow-y: auto;
        width: 92%;
        border-radius: 24px;
    }

    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 2rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .hero-btns-group {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .trust-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(to bottom, #050505, #000);
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

.final-cta p {
    font-size: 1.15rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.modal-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.modal-contact-grid .contact-item-card {
    margin-bottom: 0;
}

/* Floating Arrow */
.floating-arrow-down {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    font-size: 2.5rem;
    color: #3b82f6;
    /* Techy blue */
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.8)) drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}