:root {
    --ink: #161616;
    --paper: #fff8ec;
    --paper-2: #ffeede;
    --muted: #4b4540;
    --pink: #ff5d8f;
    --cyan: #2ec4b6;
    --yellow: #ffd23f;
    --blue: #4d61ff;
    --orange: #ff8c42;
    --purple: #9b5de5;
    --border: #161616;
    --radius: 14px;
    --line: 3px;
    --hard: 6px 6px 0 var(--ink);
    --hard-sm: 4px 4px 0 var(--ink);
    --hard-lg: 10px 10px 0 var(--ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background-color: var(--paper);
    background-image:
        radial-gradient(var(--ink) 1.4px, transparent 1.6px),
        radial-gradient(var(--ink) 1.4px, transparent 1.6px);
    background-size: 34px 34px;
    background-position: 0 0, 17px 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { width: min(1160px, 92%); margin: 0 auto; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.eyebrow {
    display: inline-block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
    background: var(--yellow);
    border: var(--line) solid var(--ink);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    box-shadow: var(--hard-sm);
}
.eyebrow.light { background: var(--cyan); color: var(--ink); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: var(--line) solid var(--ink);
    box-shadow: var(--hard-sm);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--hard); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn-primary { background: var(--pink); color: var(--ink); }
.btn-ghost { background: #fff; color: var(--ink); }
.btn.full { width: 100%; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    border-bottom: var(--line) solid var(--ink);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 0.95rem;
    border: var(--line) solid var(--ink);
    box-shadow: var(--hard-sm);
    transform: rotate(-4deg);
}
.brand-name { font-size: 1.05rem; max-width: 16ch; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    color: var(--ink);
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute; left: 0; bottom: -4px;
    width: 0; height: 3px; background: var(--pink);
    transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 0.6rem 1.1rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* Hero */
.hero {
    position: relative;
    padding: 5.5rem 0 5rem;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute; top: 60px; right: -40px;
    width: 160px; height: 160px;
    background: var(--cyan);
    border: var(--line) solid var(--ink);
    border-radius: 50%;
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute; bottom: -30px; left: 38%;
    width: 0; height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--yellow);
    transform: rotate(18deg);
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); font-weight: 700; }
.lead {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 42ch;
    margin: 1.4rem 0 2rem;
    background: #fff;
    border: var(--line) solid var(--ink);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    box-shadow: var(--hard-sm);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stats div {
    background: #fff;
    border: var(--line) solid var(--ink);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    box-shadow: var(--hard-sm);
}
.hero-stats strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; }
.hero-stats span { color: var(--muted); font-size: 0.85rem; }

.hero-visual { position: relative; height: 380px; }
.glass-card {
    position: absolute;
    background: #fff;
    border: var(--line) solid var(--ink);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: var(--hard);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: float 6s ease-in-out infinite;
}
.card-1 { top: 20px; left: 0; background: var(--yellow); }
.card-2 { top: 150px; right: 0; flex-direction: column; align-items: flex-start; gap: 0.5rem; background: var(--cyan); animation-delay: 1.5s; }
.card-3 { bottom: 10px; left: 40px; flex-direction: column; align-items: flex-start; gap: 0.1rem; background: var(--pink); animation-delay: 3s; transform: rotate(-3deg); }
.card-3 strong { font-family: "Space Grotesk", sans-serif; font-size: 1.7rem; }
.card-3 span { font-weight: 500; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); }
.dot.green { background: var(--ink); }
.bar { width: 180px; height: 12px; background: #fff; border: var(--line) solid var(--ink); border-radius: 999px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--blue); }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
.card-3 { --r: -3deg; }

/* Logos */
.logos {
    padding: 1.8rem 0;
    background: var(--ink);
    color: var(--paper);
    border-top: var(--line) solid var(--ink);
    border-bottom: var(--line) solid var(--ink);
}
.logos-label { text-align: center; font-family: "Space Grotesk", sans-serif; font-size: 0.85rem; margin-bottom: 1.1rem; color: var(--yellow); }
.logos-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.logos-row span {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    font-size: 1rem;
}
.logos-row span:nth-child(2) { color: var(--pink); }
.logos-row span:nth-child(3) { color: var(--cyan); }
.logos-row span:nth-child(4) { color: var(--yellow); }
.logos-row span:nth-child(5) { color: var(--orange); }

/* Sections */
.section { padding: 5.5rem 0; position: relative; }
.section-alt { background: var(--paper-2); border-top: var(--line) solid var(--ink); border-bottom: var(--line) solid var(--ink); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 700; }
.section-head p { color: var(--muted); margin-top: 0.85rem; font-size: 1.1rem; }

/* Grid */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
    background: #fff;
    border: var(--line) solid var(--ink);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--hard);
    transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--hard-lg); }
.service .icon {
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border: var(--line) solid var(--ink);
    border-radius: 12px;
    box-shadow: var(--hard-sm);
}
.service:nth-child(6n+1) .icon { background: var(--yellow); }
.service:nth-child(6n+2) .icon { background: var(--cyan); }
.service:nth-child(6n+3) .icon { background: var(--pink); }
.service:nth-child(6n+4) .icon { background: var(--blue); }
.service:nth-child(6n+5) .icon { background: var(--orange); }
.service:nth-child(6n) .icon { background: var(--purple); }
.service h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service p { color: var(--muted); font-size: 0.95rem; }

/* About */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.about-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); margin-bottom: 1rem; }
.about-copy p { color: var(--muted); margin-bottom: 1rem; }
.check-list { list-style: none; margin-top: 1.5rem; display: grid; gap: 0.8rem; }
.check-list li { position: relative; padding-left: 2.2rem; font-weight: 600; }
.check-list li::before {
    content: "✓";
    position: absolute; left: 0; top: 1px;
    color: var(--ink); background: var(--cyan);
    width: 1.5rem; height: 1.5rem;
    border: 2px solid var(--ink);
    border-radius: 6px;
    display: grid; place-items: center;
    font-size: 0.8rem; font-weight: 800;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-box {
    background: #fff;
    border: var(--line) solid var(--ink);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--hard);
}
.stat-box:nth-child(1) { background: var(--yellow); }
.stat-box:nth-child(2) { background: var(--cyan); }
.stat-box:nth-child(3) { background: var(--pink); }
.stat-box:nth-child(4) { background: var(--blue); color: #fff; }
.stat-box strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.5rem; }
.stat-box:nth-child(4) span { color: #f1f1f1; }
.stat-box span { color: var(--muted); font-size: 0.9rem; }

/* Why us / cards */
.price { display: flex; flex-direction: column; position: relative; }
.price h3 { font-size: 1.3rem; }
.price-tag { font-family: "Space Grotesk", sans-serif; font-size: 2.2rem; font-weight: 700; margin: 0.5rem 0; }
.price-sub { color: var(--muted); margin-bottom: 1.25rem; }
.price ul { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 1.75rem; flex: 1; }
.price ul li { padding-left: 1.6rem; position: relative; color: #2a2622; font-weight: 500; }
.price ul li::before { content: "▶"; position: absolute; left: 0; color: var(--pink); font-size: 0.7rem; top: 4px; }
.price.featured { background: var(--yellow); }
.badge {
    position: absolute; top: -16px; right: 1.5rem;
    background: var(--ink); color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.75rem; font-weight: 700;
    padding: 0.35rem 0.8rem; border-radius: 999px;
    border: var(--line) solid var(--ink);
    transform: rotate(4deg);
}

/* Team */
.member { text-align: center; }
.avatar {
    width: 78px; height: 78px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: grid; place-items: center;
    color: #fff; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.2rem;
    background: var(--c, var(--blue));
    border: var(--line) solid var(--ink);
    box-shadow: var(--hard-sm);
}
.member:nth-child(1) .avatar { background: var(--pink); color: var(--ink); }
.member:nth-child(2) .avatar { background: var(--cyan); color: var(--ink); }
.member:nth-child(3) .avatar { background: var(--yellow); color: var(--ink); }
.member:nth-child(4) .avatar { background: var(--blue); color: #fff; }
.member h3 { font-size: 1.1rem; }
.member p { color: var(--muted); font-size: 0.9rem; }

/* CTA */
.cta { background: var(--blue); color: #fff; border-top: var(--line) solid var(--ink); border-bottom: var(--line) solid var(--ink); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cta-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.cta-copy p { color: #eef0ff; margin-top: 0.85rem; }
.contact-info { list-style: none; margin-top: 1.75rem; display: grid; gap: 0.8rem; color: #fff; }
.contact-info li {
    background: rgba(255,255,255,0.12);
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    font-weight: 500;
}
.contact-info a { color: var(--yellow); font-weight: 700; }
.contact-info a:hover { color: #fff; }
.contact-form {
    background: #fff;
    border: var(--line) solid var(--ink);
    border-radius: var(--radius);
    padding: 2rem;
    display: grid;
    gap: 1rem;
    box-shadow: var(--hard-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: var(--line) solid var(--ink);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--paper);
    resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #8a837c; }
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: var(--hard-sm);
}
.form-note { font-family: "Space Grotesk", sans-serif; font-size: 0.9rem; color: var(--ink); text-align: center; min-height: 1.2rem; font-weight: 600; }

/* Footer */
.site-footer { background: var(--ink); color: var(--paper); padding: 3.5rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; }
.footer-brand .brand { color: #fff; margin-bottom: 0.9rem; }
.footer-brand .brand-mark { background: var(--pink); color: var(--ink); }
.footer-brand p { color: #c9c3bb; max-width: 32ch; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-cols h4 { color: var(--yellow); margin-bottom: 1rem; font-size: 0.95rem; }
.footer-cols a { display: block; color: #c9c3bb; margin-bottom: 0.6rem; font-size: 0.9rem; transition: color 0.2s; }
.footer-cols a:hover { color: var(--cyan); }
.footer-bottom {
    display: flex; justify-content: space-between;
    border-top: 2px solid #3a3530;
    margin-top: 2.5rem; padding-top: 1.5rem;
    font-size: 0.85rem; color: #948d85;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner, .about-inner, .cta-inner, .footer-inner { grid-template-columns: 1fr; }
    .hero-visual { height: 300px; order: -1; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 76px; left: 0; right: 0;
        background: var(--paper); padding: 1.5rem 5%;
        gap: 1.25rem; border-bottom: var(--line) solid var(--ink);
    }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 560px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .brand-name { font-size: 0.95rem; }
    .footer-cols { grid-template-columns: 1fr; }
}
