* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Google Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 20px;
    vertical-align: middle;
    line-height: 1;
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
    vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-behavior: smooth;
}

/* Scroll-reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible .card:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible .card:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible .card:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible .card:nth-child(4) { transition-delay: 0.35s; }

.reveal-stagger .card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.reveal-stagger.visible .card {
    opacity: 1;
    transform: translateY(0);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    padding: 24px 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

header.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #FFD700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-left: 24px;
    border-left: 1px solid #262626;
}

.header-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: color 0.25s ease;
}

.header-icon-link:hover {
    color: #FFD700;
}

.header-icon-link .material-symbols-outlined {
    font-size: 20px;
}

.header-icon-link .whatsapp-icon {
    width: 19px;
    height: 19px;
}

.header-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.header-link:hover {
    color: #FFD700;
}

.header-link .material-symbols-outlined {
    font-size: 18px;
}

.cta-btn.cta-btn-sm {
    margin-top: 0;
    padding: 10px 20px;
    font-size: 14px;
}

header.scrolled {
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: #333;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 0.5px;
    transition: letter-spacing 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    letter-spacing: 1px;
    opacity: 0.85;
}

.hero {
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease both;
}

.hero span {
    color: #FFD700;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    color: #ccc;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: #FFD700;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
}

.cta-btn .material-symbols-outlined {
    margin-right: 6px;
    transform: translateY(-1px);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0px rgba(255,215,0,0.0); transform: translateY(0); }
    50% { box-shadow: 0 8px 30px rgba(255,215,0,0.12); transform: translateY(-2px); }
    100% { box-shadow: 0 0 0px rgba(255,215,0,0.0); transform: translateY(0); }
}

.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #111;
    padding: 30px;
    border: 1px solid #222;
    border-radius: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.08);
    border-color: #FFD700;
}

.card h3 {
    color: #FFD700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form input, .form select, .form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

.form button {
    width: 100%;
    padding: 14px;
    background: #FFD700;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

footer {
    padding: 60px 0 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #777;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-wordmark {
    font-size: clamp(56px, 15vw, 220px);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1;
    text-align: center;
    background: linear-gradient(135deg, #FFD700, #fff8dc 45%, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 50px 20px 20px;
    user-select: none;
    white-space: nowrap;
}

.footer-legal {
    padding: 20px 0 30px;
    border-top: 1px solid #222;
}

/* Portfolio */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.25s ease;
}

.card-link:hover {
    opacity: 0.8;
}

.card-link .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.card-link:hover .material-symbols-outlined.arrow {
    transform: translateX(4px);
}

.card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.badge-soon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 15px;
    padding: 4px 10px;
    border: 1px solid #FFD700;
    color: #FFD700;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    animation: pulseGlow 2.5s infinite ease-in-out;
}

.badge-soon .material-symbols-outlined {
    font-size: 14px;
}

.section-intro {
    color: #ccc;
    max-width: 700px;
    margin-bottom: 40px;
}

/* App logo tiles */
.app-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #FFE55C, #B8860B);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover .app-logo {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 12px 26px rgba(255, 215, 0, 0.32);
}

.app-logo .material-symbols-outlined {
    font-size: 28px;
    color: #000;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.app-logo.logo-img {
    background: #1a1a1a;
    padding: 4px;
}

.app-logo.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
}

.app-shots {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.app-shots img {
    height: 90px;
    width: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #222;
    object-fit: cover;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.app-shots a:hover img {
    transform: translateY(-4px);
    border-color: #FFD700;
}

.reveal-stagger.visible .card:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible .card:nth-child(6) { transition-delay: 0.55s; }

/* Product showcase — one full section per product */
.product-block {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 70px 0;
    border-bottom: 1px solid #1a1a1a;
    flex-wrap: wrap;
}

.product-block:last-of-type {
    border-bottom: none;
    padding-bottom: 20px;
}

.product-block.reverse {
    flex-direction: row-reverse;
}

.product-media {
    flex: 1 1 380px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-content {
    flex: 1 1 380px;
    min-width: 280px;
}

.product-media img {
    border-radius: 12px;
    border: 1px solid #222;
    height: 260px;
    width: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.product-media a:hover img {
    transform: translateY(-6px);
    border-color: #FFD700;
}

.product-media.icon-only {
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.app-logo-lg {
    width: 190px;
    height: 190px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE55C, #B8860B);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-block:hover .app-logo-lg {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 24px 60px rgba(255, 215, 0, 0.25);
}

.app-logo-lg .material-symbols-outlined {
    font-size: 88px;
    color: #000;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}

.product-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.product-head .app-logo {
    margin-bottom: 0;
    flex-shrink: 0;
}

.product-head h3 {
    margin-bottom: 0;
    font-size: 32px;
}

.product-content > p {
    color: #ccc;
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 22px;
}

/* Contact form status + honeypot */
.form .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 16px 0 0;
    padding: 14px 16px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 15px;
}

.form-status.is-success {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
    color: #FFD700;
}

.form-status.is-error {
    border-color: #b3261e;
    background: rgba(179, 38, 30, 0.1);
    color: #ff6b6b;
}

.form button[disabled] {
    opacity: 0.6;
    cursor: progress;
}

/* Calendly inline scheduler */
.schedule-block {
    margin-top: 70px;
}

.schedule-block h3 {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 10px;
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
}

/* FAQ accordion */
.faq-list {
    max-width: 820px;
}

.faq-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 10px;
    margin-bottom: 14px;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: #FFD700;
}

.faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "add";
    font-family: "Material Symbols Outlined";
    color: #FFD700;
    font-size: 24px;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "remove";
}

.faq-item .faq-answer {
    padding: 0 24px 22px;
    color: #ccc;
    line-height: 1.7;
}
