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

:root {
    --bg: #07090E;
    --bg2: #0A0D14;
    --surface: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.07);
    --blue: #0A84FF;
    --cyan: #00D4FF;
    --grad: linear-gradient(135deg, #0A84FF, #00D4FF);
    --text: #E8EDF5;
    --muted: #6B7B8F;
    --syne: 'Open Sans', sans-serif;
    --body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 4px;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

/* ── UTILS ── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 132, 255, 0.08);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.8)
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad);
    color: #fff;
    font-family: var(--syne);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 0 0 0 rgba(10, 132, 255, 0);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(10, 132, 255, .35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--muted);
    font-family: var(--body);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .04);
}

/* ── FADE IN ── */
.fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade.visible {
    opacity: 1;
    transform: none;
}

.fade-d1 {
    transition-delay: .1s;
}

.fade-d2 {
    transition-delay: .2s;
}

.fade-d3 {
    transition-delay: .3s;
}

.fade-d4 {
    transition-delay: .4s;
}

/* ──────────────────────────────────────────────
     NAVBAR
  ────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background .4s, padding .4s, border-color .4s;
    padding: 22px 0;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(7, 9, 14, .88);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom-color: var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(10, 132, 255, .35);
}

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

.logo-text {
    font-family: var(--syne);
    font-weight: 800;
    font-size: 18px;
    color: var(--text);
}

.logo-text span {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
    letter-spacing: .01em;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    font-family: var(--syne);
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(10, 132, 255, .25);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 132, 255, .35);
}

/* ──────────────────────────────────────────────
     HERO
  ────────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}

.hero-orb1 {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(10, 132, 255, .12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-orb2 {
    position: absolute;
    bottom: 5%;
    right: 15%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, .07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 32px;
}

h1 {
    font-family: var(--syne);
    font-weight: 900;
    font-size: clamp(44px, 7vw, 80px);
    line-height: 1.04;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 26px;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 72px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.stat {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-val {
    font-family: var(--syne);
    font-weight: 900;
    font-size: 36px;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 400;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll svg {
    opacity: .4;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(6px)
    }
}

/* ──────────────────────────────────────────────
     SECTION LABELS
  ────────────────────────────────────────────── */
section {
    padding: 110px 0;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px;
    display: block;
}

.section-title {
    font-family: var(--syne);
    font-weight: 900;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--text);
    margin-bottom: 18px;
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.7;
    font-weight: 300;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-sub {
    margin: 0 auto;
}

/* ──────────────────────────────────────────────
     SERVICES
  ────────────────────────────────────────────── */
#servicos {
    background: var(--bg2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: var(--grad);
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(10, 132, 255, .35);
}

.service-card:hover::before {
    opacity: .04;
}

.service-card:hover {
    box-shadow: 0 24px 60px rgba(10, 132, 255, .1);
}

.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(10, 132, 255, .1);
    border: 1px solid rgba(10, 132, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--cyan);
    position: relative;
}

.svc-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.svc-title {
    font-family: var(--syne);
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--text);
}

.svc-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

.svc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-list li {
    font-size: 12.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────
     WHY US
  ────────────────────────────────────────────── */
#porque {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    transition: background .25s, border-color .25s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .12);
}

.benefit-icon {
    color: var(--cyan);
    margin-bottom: 16px;
}

.benefit-title {
    font-family: var(--syne);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

.promise-box {
    background: linear-gradient(160deg, rgba(10, 132, 255, .07) 0%, rgba(0, 212, 255, .03) 100%);
    border: 1px solid rgba(10, 132, 255, .2);
    border-radius: 24px;
    padding: 40px;
}

.promise-box h3 {
    font-family: var(--syne);
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 10px;
}

.promise-box p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.65;
}

.promise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10, 132, 255, .3);
}

.check-icon svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
}

/* ──────────────────────────────────────────────
     PORTFOLIO
  ────────────────────────────────────────────── */
#portfolio {
    background: var(--bg2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio-grid .project-thumb {
    height: 200px;
    position: relative;
}

.portfolio-grid .project-thumb img {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: calc(100% - 28px);
    object-fit: cover;
    object-position: top;
}

.project-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, .15);
    box-shadow: 0 28px 64px rgba(0, 0, 0, .4);
}

.project-thumb {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-thumb .browser-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-r {
    background: rgba(255, 90, 90, .6);
}

.dot-y {
    background: rgba(255, 200, 80, .6);
}

.dot-g {
    background: rgba(60, 220, 120, .6);
}

.project-initials {
    font-family: var(--syne);
    font-weight: 900;
    font-size: 52px;
    color: rgba(255, 255, 255, .07);
    user-select: none;
    letter-spacing: -.04em;
    position: relative;
    z-index: 1;
}

.project-line {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad);
    opacity: .5;
    transition: width .3s, opacity .3s;
}

.project-card:hover .project-line {
    width: 70px;
    opacity: 1;
}

.project-body {
    padding: 20px 22px;
    background: rgba(7, 9, 14, .6);
}

.project-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(10, 132, 255, .1);
    border: 1px solid rgba(10, 132, 255, .2);
    border-radius: 100px;
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.project-title {
    font-family: var(--syne);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 6px;
}

.project-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}

.portfolio-cta p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
}

/* ──────────────────────────────────────────────
     ABOUT
  ────────────────────────────────────────────── */
#sobre {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 18px;
}

.about-text p strong {
    color: var(--text);
    font-weight: 600;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    transition: border-color .25s;
}

.metric-card:hover {
    border-color: rgba(10, 132, 255, .3);
}

.metric-val {
    font-family: var(--syne);
    font-weight: 900;
    font-size: 34px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.metric-sub {
    font-size: 11.5px;
    color: var(--muted);
}

/* ──────────────────────────────────────────────
     CONTACT
  ────────────────────────────────────────────── */
#contato {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

#contato::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(10, 132, 255, .07) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.form-box {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px;
}

.form-box h3 {
    font-family: var(--syne);
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 8px;
}

.form-box>p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--body);
    font-size: 14px;
    font-weight: 400;
    transition: border-color .2s, background .2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, .18);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(10, 132, 255, .5);
    background: rgba(255, 255, 255, .06);
}

.field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236B7B8F' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.field select option {
    background: #0D1117;
}

.field textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: var(--syne);
    font-weight: 700;
    font-size: 15px;
    padding: 17px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .2s;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, .3);
    background: #1ebe5d;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
}

/* Sidebar */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-box {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
}

.side-box h4 {
    font-family: var(--syne);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 16px;
}

.side-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--muted);
}

.wa-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(37, 211, 102, .06);
    border: 1px solid rgba(37, 211, 102, .15);
    border-radius: 20px;
    padding: 22px 26px;
    text-decoration: none;
    transition: background .25s, border-color .25s;
}

.wa-box:hover {
    background: rgba(37, 211, 102, .1);
    border-color: rgba(37, 211, 102, .25);
}

.wa-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .25);
    transition: transform .2s;
}

.wa-box:hover .wa-icon {
    transform: scale(1.08);
}

.wa-text strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 2px;
}

.wa-text span {
    font-size: 12.5px;
    color: var(--muted);
}

.metric-highlight {
    background: linear-gradient(135deg, rgba(10, 132, 255, .08) 0%, rgba(0, 212, 255, .04) 100%);
    border: 1px solid rgba(10, 132, 255, .2);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}

.metric-highlight .big {
    font-family: var(--syne);
    font-weight: 900;
    font-size: 48px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-highlight p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
}

/* ──────────────────────────────────────────────
     FOOTER
  ────────────────────────────────────────────── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    font-size: 13px;
    color: var(--muted);
}

/* ──────────────────────────────────────────────
     RESPONSIVE
  ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0 0 24px;
        width: 100%;
    }

    .stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    section {
        padding: 72px 0;
    }
}

/* ──────────────────────────────────────────────
     SUCCESS STATE
  ────────────────────────────────────────────── */
.success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 0;
}

.success-state.show {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(10, 132, 255, .3);
}

.success-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 2.5;
}

.success-state h3 {
    font-family: var(--syne);
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 8px;
}

.success-state p {
    font-size: 14px;
    color: var(--muted);
    max-width: 320px;
}

/* ──────────────────────────────────────────────
     NEDS-LIKE ABOUT SECTION
  ────────────────────────────────────────────── */
.neds-about {
    background: transparent;
    padding: 120px 0;
    overflow: hidden;
}

.about-neds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--blue);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    border: 1px solid var(--border);
    padding: 12px;
    overflow: hidden;
}

.about-image-wrapper .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 20px;
}

.about-p strong {
    color: var(--text);
    font-weight: 600;
}

.tech-stack-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
}

.tech-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-instagram, .btn-whatsapp-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-family: var(--syne);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-instagram {
    background: linear-gradient(135deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D);
}
.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.btn-whatsapp-about {
    background: #25D366;
}
.btn-whatsapp-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

@media (max-width: 900px) {
    .about-neds-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .tech-stack-row {
        justify-content: center;
    }
    
    .about-actions {
        justify-content: center;
    }
}