* { margin: 0; padding: 0; box-sizing: border-box; }

a { text-decoration: none;color:#000; }

:root {
    --bg: #f5f0eb;
    --ink: #111;
    --accent: #e33c5a;
    --accent2: #4d6bff;
    --gray: #888;
    --line: #ddd;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.4;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: var(--bg);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.04em;
    text-decoration: none;
    color: var(--ink);
}

.logo span { color: var(--accent); }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--ink);
    font-size: 28px;
    z-index: 110;
}

nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    transition: color .2s;
}

nav a:hover { color: var(--ink); }

.nav-cta {
    padding: 10px 28px;
    border-radius: 999px;
    background: var(--ink);
    font-size: 12px;
    font-weight: 700;
    transition: transform .2s !important;
}

.nav-cta:hover { transform: translateY(-2px); }

/* ── SECTIONS ── */
section {
    padding: 0;
    overflow: hidden;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 48px;
}

.label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
}

.hero-left {
    padding: 80px 48px 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    line-height: .88;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}

.hero-left h1 .accent {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-underline-offset: 8px;
}

.hero-left p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 400px;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 38px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: transform .2s;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
    background: var(--ink);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-whatsapp {
    background: #359a46;
    color: #fff;
}

.hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 48px;
}

.hero-right .box {
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    min-height: 200px;
    text-align: center;
    padding: 24px;
}

.hero-right .box-1 {
    background: var(--ink);
    color: #fff;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    padding: 48px;
}
.box-1 .top-icon { font-size: 32px; color: rgba(255,255,255,.3); margin-bottom: auto; }
.box-1 .bottom-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.box-1 .bottom-content .text { max-width: 400px; }
.box-1 h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 4px; color: #fff; }
.box-1 p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.5; margin-bottom: 0; }
.box-1 .btn-box { padding: 18px 44px; border-radius: 999px; border: 0; background: var(--accent); color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s; flex-shrink: 0; }
.box-1 .btn-box:hover { transform: translateY(-2px); }
.box-2 { background: var(--accent); color: #fff; }
.box-3 { background: #e8e0d8; color: var(--ink); }

.hero-right .box i { font-size: 32px; margin-bottom: 12px; display: block; }

/* ── MARQUEE ── */
.marquee {
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    padding: 16px 0;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-track span i { color: var(--accent); margin-right: 8px; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 48px;
    background: var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.svc {
    background: var(--bg);
    padding: 48px 36px;
    transition: background .2s;
}

.svc:hover { background: #ece5de; }

.svc .num {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.svc h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.svc p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

/* ── TECH ── */
.tech-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tech-item {
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid var(--ink);
    font-size: 14px;
    font-weight: 700;
    transition: all .2s;
}

.tech-item:hover {
    background: var(--ink);
    color: #fff;
}

/* ── WORK ── */
.work-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    margin-top: 48px;
    background: var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.work-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    background: var(--bg);
    padding: 0;
}

.work-row .info {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-row .info .tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.work-row .info h3 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.work-row .info p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

.work-row .thumb {
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

/* ── ABOUT ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-split .big-num {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: .8;
    color: var(--accent);
    margin-bottom: 16px;
}

.about-split h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-split p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-item .num {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--ink);
}

.stat-item .label {
    color: var(--gray);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

/* ── CONTACT ── */
.contact-banner {
    background: var(--ink);
    color: #fff;
    border-radius: 24px;
    padding: 80px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-banner h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.contact-banner h2 .accent { color: var(--accent); }

.contact-banner p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    max-width: 360px;
    margin-top: 12px;
}

.contact-banner .btn { color: #fff; flex-shrink: 0; }

/* ── FAQ ACCORDION ── */
.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    border-radius: 0;
    background: transparent;
    transition: border-color .2s;
}

.faq-item:hover { border-bottom-color: rgba(0,0,0,.18); }

.faq-item[open] { border-bottom-color: var(--ink); }

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .icon {
    font-size: 18px;
    color: var(--accent);
    transition: transform .25s;
    flex-shrink: 0;
}

.faq-item[open] summary .icon { transform: rotate(180deg); }

.faq-item .answer {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
}

.faq-item .answer p { margin-bottom: 12px; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ── BLOG ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.blog-card {
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 20px;
    padding: 0;
    background: var(--bg);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.blog-card .thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 18px 18px 0 0;
}

.blog-card .top {
    padding: 28px 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-card .date {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: .9;
    color: var(--accent);
}

.blog-card .date span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

.blog-card .cat {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--bg);
    border: 2px solid var(--ink);
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.blog-card .body {
    padding: 20px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h4 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card .read {
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap .2s;
}

.blog-card .read:hover { gap: 14px; }

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ── FOOTER ── */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px;
    font-size: 12px;
    color: var(--gray);
    border-top: 1px solid var(--line);
}

footer .social { display: flex; gap: 20px; }
footer .social a { color: var(--gray); font-size: 16px; transition: color .2s; }
footer .social a:hover { color: var(--ink); }

@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { padding: 24px 48px 48px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .work-row { grid-template-columns: 1fr; }
    .work-row .info { padding: 40px 32px; }
    .about-split { grid-template-columns: 1fr; gap: 40px; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .contact-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
}

@media (max-width: 768px) {
    .svc{ background: #ece5de; }
    .box-1 .bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    nav { padding: 20px 24px; flex-wrap: wrap; }
    .hamburger { display: block; }
    nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 28px 0 12px;
    background: var(--bg);
    border-top: 2px solid var(--ink);
    margin-top: 16px;
    }
    nav ul li {
    width: 100%;
    }
    nav ul .nav-cta {
    width: 100%;
    text-align: center;
    display: block;
    }
    nav ul.open { display: flex; }
    .section-inner { padding: 80px 24px; }
    .hero-left { padding: 40px 24px; }
    .hero-right { padding: 24px; grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
}