@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #01020a;
    --bg-soft: #080a1f;
    --panel: rgba(7, 10, 30, 0.76);
    --panel-strong: rgba(10, 12, 35, 0.92);
    --line: rgba(154, 220, 255, 0.26);
    --text: #f7fbff;
    --muted: #b7c3d9;
    --cyan: #20d9ff;
    --blue: #4d91ff;
    --violet: #c77dff;
    --pink: #ff8ce8;
    --shadow: 0 0 46px rgba(32, 217, 255, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    padding-top: 92px;
    background:
        radial-gradient(ellipse at 18% 18%, rgba(75, 145, 255, 0.34), transparent 34rem),
        radial-gradient(ellipse at 82% 12%, rgba(199, 125, 255, 0.34), transparent 32rem),
        radial-gradient(ellipse at 58% 72%, rgba(32, 217, 255, 0.18), transparent 28rem),
        linear-gradient(135deg, #000 0%, #020313 42%, #08031c 72%, #01020a 100%);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle, rgba(255,255,255,0.9) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(154,220,255,0.72) 0 1px, transparent 1.6px),
        radial-gradient(circle, rgba(255,140,232,0.62) 0 1px, transparent 1.7px),
        linear-gradient(118deg, transparent 0 38%, rgba(99, 76, 255, 0.14) 48%, rgba(32, 217, 255, 0.12) 56%, transparent 68%);
    background-position: 0 0, 42px 58px, 120px 22px, center;
    background-size: 130px 130px, 190px 190px, 260px 260px, cover;
    opacity: 0.74;
    animation: galaxy-drift 24s linear infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 52% 18%, rgba(255,255,255,0.16), transparent 11rem),
        radial-gradient(ellipse at 38% 34%, rgba(32,217,255,0.16), transparent 22rem),
        radial-gradient(ellipse at 68% 28%, rgba(255,140,232,0.13), transparent 24rem),
        linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.58));
    pointer-events: none;
}

section {
    scroll-margin-top: 112px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(2, 4, 18, 0.84), rgba(10, 4, 30, 0.78)),
        rgba(0, 0, 0, 0.74);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow:
        0 0 28px rgba(32, 217, 255, 0.38),
        0 0 58px rgba(199, 125, 255, 0.22);
}

.menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 12px 16px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.menu a:hover {
    color: var(--text);
    background: rgba(32, 217, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(32, 217, 255, 0.18);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 92px);
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(64px, 9vw, 112px) 20px;
}

.hero::before {
    content: "";
    width: min(68vw, 760px);
    height: min(42vw, 420px);
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background:
        radial-gradient(ellipse at 50% 45%, rgba(255,255,255,0.2), transparent 16%),
        radial-gradient(ellipse at 42% 48%, rgba(32,217,255,0.24), transparent 42%),
        radial-gradient(ellipse at 64% 46%, rgba(199,125,255,0.22), transparent 48%),
        linear-gradient(92deg, transparent, rgba(255,255,255,0.06), transparent);
    filter: blur(12px);
    opacity: 0.92;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.18) 20.4%, transparent 21%),
        linear-gradient(120deg, transparent 62%, rgba(32,217,255,0.16) 62.3%, transparent 63%);
    background-size: 540px 280px, 760px 360px;
    background-position: 76% 20%, 18% 62%;
    opacity: 0.45;
    pointer-events: none;
}

.hero > * {
    position: relative;
}

.hero-logo {
    width: clamp(150px, 22vw, 240px);
    height: clamp(150px, 22vw, 240px);
    margin: 0 auto 30px;
    border-radius: 32px;
    object-fit: cover;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.12),
        0 0 52px rgba(32, 217, 255, 0.52),
        0 0 112px rgba(199, 125, 255, 0.34),
        0 0 160px rgba(255, 140, 232, 0.18);
}

.hero h1,
.servicos h2,
.sobre h2 {
    font-size: clamp(34px, 6vw, 70px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    background: linear-gradient(100deg, #ffffff 6%, var(--cyan) 42%, var(--violet) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 46px rgba(32, 217, 255, 0.22);
}

.hero p {
    width: min(680px, 100%);
    margin: 24px auto 38px;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
}

button,
.hero button {
    border: 0;
    color: #020204;
    background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--violet));
    border-radius: 999px;
    padding: 16px 28px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    box-shadow:
        var(--shadow),
        0 0 34px rgba(199, 125, 255, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

button:hover,
.hero button:hover {
    transform: translateY(-2px);
    filter: saturate(1.1);
    box-shadow: 0 0 58px rgba(32, 217, 255, 0.34);
}

.ai-promo {
    width: min(1180px, calc(100% - 36px));
    margin: -28px auto 0;
    padding: 0 0 clamp(42px, 7vw, 72px);
}

.ai-promo-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    overflow: hidden;
    padding: clamp(28px, 5vw, 44px);
    border: 1px solid rgba(32, 217, 255, 0.34);
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 14% 18%, rgba(32, 217, 255, 0.2), transparent 38%),
        radial-gradient(ellipse at 82% 36%, rgba(255, 140, 232, 0.18), transparent 42%),
        linear-gradient(135deg, rgba(7, 10, 30, 0.9), rgba(12, 6, 36, 0.82));
    box-shadow:
        0 28px 90px rgba(0,0,0,0.58),
        0 0 70px rgba(32, 217, 255, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
}

.ai-promo-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 24%, rgba(255,255,255,0.28) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 28%, rgba(154,220,255,0.22) 0 1px, transparent 2px),
        linear-gradient(110deg, transparent 0 60%, rgba(255,255,255,0.12) 62%, transparent 66%);
    opacity: 0.72;
    pointer-events: none;
}

.ai-promo-copy,
.promo-cta {
    position: relative;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 15px;
    border: 1px solid rgba(32, 217, 255, 0.28);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(0, 0, 0, 0.28);
    font-size: 13px;
    font-weight: 800;
}

.ai-promo h2 {
    max-width: 780px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
}

.ai-promo p {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    padding: 16px 24px;
    color: #020204;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--pink));
    box-shadow:
        0 0 42px rgba(32, 217, 255, 0.32),
        0 0 38px rgba(255, 140, 232, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.48);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 58px rgba(32, 217, 255, 0.44),
        0 0 48px rgba(255, 140, 232, 0.26);
}

.servicos,
.sobre {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(64px, 9vw, 104px) 0;
    text-align: center;
}

.servicos h2,
.sobre h2 {
    margin-bottom: 26px;
    font-size: clamp(30px, 4vw, 48px);
}

.section-lead {
    width: min(680px, 100%);
    margin: -8px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.card {
    background:
        radial-gradient(ellipse at top left, rgba(32,217,255,0.12), transparent 48%),
        radial-gradient(ellipse at bottom right, rgba(199,125,255,0.14), transparent 46%),
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026)),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow:
        0 20px 70px rgba(0,0,0,0.52),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.card {
    min-height: 218px;
    padding: 30px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,0.16) 0 1px, transparent 2px),
        radial-gradient(circle at 76% 28%, rgba(154,220,255,0.16) 0 1px, transparent 2px),
        linear-gradient(135deg, rgba(32, 217, 255, 0.16), transparent 42%, rgba(199, 125, 255, 0.14));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(32, 217, 255, 0.42);
    box-shadow: 0 28px 80px rgba(0,0,0,0.58), 0 0 42px rgba(32, 217, 255, 0.18);
}

.card:hover::before {
    opacity: 1;
}

.card h3,
.card p {
    position: relative;
}

.card h3 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 21px;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #ffffff;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.34), transparent 34%),
        linear-gradient(135deg, var(--blue), var(--violet) 58%, var(--pink));
    box-shadow:
        0 0 28px rgba(32, 217, 255, 0.28),
        0 0 44px rgba(199, 125, 255, 0.22);
}

.service-icon i {
    font-size: 22px;
}

.card h3::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.card p,
.sobre p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.sobre p {
    max-width: 880px;
    margin: 0 auto 18px;
}

.about-summary,
.about-panel,
.about-values article {
    background:
        radial-gradient(ellipse at top left, rgba(32,217,255,0.12), transparent 48%),
        radial-gradient(ellipse at bottom right, rgba(199,125,255,0.14), transparent 46%),
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026)),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow:
        0 20px 70px rgba(0,0,0,0.52),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.about-summary {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 44px);
}

.about-summary p {
    max-width: 760px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding: 14px 22px;
    color: #020204;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--pink));
    box-shadow:
        0 0 38px rgba(32, 217, 255, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.46);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 52px rgba(32, 217, 255, 0.42);
}

.about-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    align-items: center;
    gap: clamp(24px, 4vw, 42px);
    margin-top: 10px;
    padding: clamp(28px, 5vw, 46px);
    text-align: left;
}

.about-copy p {
    max-width: none;
    margin: 0 0 18px;
}

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

.about-highlight {
    min-height: 240px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 26px;
    text-align: center;
    border: 1px solid rgba(32, 217, 255, 0.22);
    border-radius: 8px;
    background:
        radial-gradient(ellipse at center, rgba(32,217,255,0.18), transparent 62%),
        rgba(0, 0, 0, 0.22);
}

.about-highlight i {
    color: var(--cyan);
    font-size: 38px;
    filter: drop-shadow(0 0 18px rgba(32, 217, 255, 0.55));
}

.about-highlight strong {
    color: var(--text);
    font-size: 25px;
}

.about-highlight span {
    color: var(--muted);
    line-height: 1.55;
}

.about-subtitle {
    margin: clamp(38px, 6vw, 62px) 0 22px;
    color: var(--text);
    font-size: clamp(22px, 3vw, 30px);
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto clamp(38px, 6vw, 62px);
}

.about-list span {
    padding: 11px 15px;
    color: var(--muted);
    border: 1px solid rgba(32, 217, 255, 0.22);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.26);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-values article {
    padding: 30px;
    text-align: left;
}

.about-values h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 21px;
}

.about-values p {
    max-width: none;
    margin: 0;
}

.about-values ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.about-values li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(32, 217, 255, 0.65);
}

.pricing-section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(64px, 9vw, 104px) 0;
    text-align: center;
}

.pricing-section h2 {
    margin-bottom: 26px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    background: linear-gradient(100deg, #ffffff 6%, var(--cyan) 42%, var(--violet) 92%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 46px rgba(32, 217, 255, 0.22);
}

.pricing-intro,
.pricing-card,
.pricing-note,
.revenue-grid > div {
    background:
        radial-gradient(ellipse at top left, rgba(32,217,255,0.12), transparent 48%),
        radial-gradient(ellipse at bottom right, rgba(199,125,255,0.14), transparent 46%),
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026)),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow:
        0 20px 70px rgba(0,0,0,0.52),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.pricing-intro {
    margin: 40px auto 28px;
    padding: clamp(24px, 4vw, 34px);
    text-align: left;
}

.pricing-intro p {
    max-width: 860px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.founder-promo {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 22px;
    align-items: stretch;
    margin: 28px 0 34px;
    padding: clamp(24px, 4vw, 34px);
    text-align: left;
    border: 1px solid rgba(255, 140, 232, 0.32);
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(255,140,232,0.18), transparent 42%),
        radial-gradient(ellipse at 86% 50%, rgba(32,217,255,0.16), transparent 44%),
        linear-gradient(135deg, rgba(10, 8, 34, 0.92), rgba(6, 12, 32, 0.86));
    box-shadow:
        0 24px 80px rgba(0,0,0,0.54),
        0 0 58px rgba(255, 140, 232, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.founder-promo h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

.founder-promo p {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.founder-deals {
    display: grid;
    gap: 12px;
}

.founder-deals div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(32, 217, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
}

.founder-deals strong,
.founder-deals span {
    display: block;
}

.founder-deals strong {
    color: var(--text);
}

.founder-deals span {
    color: var(--cyan);
    font-weight: 900;
    text-align: right;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    text-align: left;
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(32, 217, 255, 0.46);
    box-shadow:
        0 28px 80px rgba(0,0,0,0.58),
        0 0 46px rgba(32, 217, 255, 0.18);
}

.pricing-card.featured {
    border-color: rgba(199, 125, 255, 0.55);
    box-shadow:
        0 22px 80px rgba(0,0,0,0.56),
        0 0 64px rgba(199, 125, 255, 0.18);
}

.plan-badge {
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #020204;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    font-size: 12px;
    font-weight: 900;
}

.pricing-card h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 24px;
}

.price {
    margin: 0 0 22px;
    color: var(--text);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    line-height: 1;
}

.price span {
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
}

.pricing-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.pricing-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.pricing-card li::before {
    content: "\f00c";
    color: var(--cyan);
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 900;
    margin-top: 2px;
    filter: drop-shadow(0 0 10px rgba(32, 217, 255, 0.6));
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 14px 20px;
    color: #020204;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--pink));
    box-shadow:
        0 0 38px rgba(32, 217, 255, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.46);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 52px rgba(32, 217, 255, 0.42);
}

.implementation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.implementation-card .price {
    font-size: clamp(28px, 3vw, 34px);
}

.pricing-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-top: 24px;
    padding: 28px;
    text-align: left;
}

.pricing-note .service-icon {
    margin-bottom: 0;
}

.pricing-note h3 {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 22px;
}

.pricing-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.pricing-note strong {
    color: var(--text);
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.revenue-grid > div {
    padding: 24px;
    text-align: left;
}

.revenue-grid strong,
.revenue-grid span {
    display: block;
}

.revenue-grid strong {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 17px;
}

.revenue-grid span {
    color: var(--muted);
    line-height: 1.55;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin: 40px auto 8px;
}

.contact-card {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    color: var(--text);
    text-align: center;
    text-decoration: none;
    background:
        radial-gradient(ellipse at top, rgba(255,255,255,0.08), transparent 48%),
        radial-gradient(ellipse at bottom right, rgba(199,125,255,0.13), transparent 48%),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow:
        0 20px 70px rgba(0,0,0,0.48),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(32, 217, 255, 0.46);
    box-shadow:
        0 28px 80px rgba(0,0,0,0.58),
        0 0 46px rgba(32, 217, 255, 0.18);
}

.contact-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 0 34px rgba(32, 217, 255, 0.22);
}

.contact-icon i {
    font-size: 28px;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon.email {
    background: linear-gradient(135deg, var(--blue), var(--violet));
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4 56%, var(--pink));
}

.contact-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

footer {
    padding: 34px 20px;
    text-align: center;
    color: var(--muted);
    background:
        linear-gradient(90deg, rgba(2,4,18,0.9), rgba(8,3,25,0.86)),
        rgba(0,0,0,0.74);
    border-top: 1px solid var(--line);
}

.fade-up {
    animation: fade-up 0.75s ease both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes galaxy-drift {
    from {
        background-position: 0 0, 42px 58px, 120px 22px, center;
    }
    to {
        background-position: 130px 130px, 232px 248px, 380px 282px, center;
    }
}

@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-panel,
    .about-values {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .implementation-grid,
    .revenue-grid {
        grid-template-columns: 1fr;
    }

    .founder-promo {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 82px;
    }

    header {
        height: 82px;
    }

    .logo img {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .menu-toggle {
        display: grid;
    }

    .menu {
        position: fixed;
        inset: 0;
        height: 100vh;
        justify-content: center;
        flex-direction: column;
        gap: 18px;
        background:
            radial-gradient(circle at top, rgba(32,217,255,0.24), transparent 22rem),
            rgba(0,0,0,0.96);
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .menu a {
        color: var(--text);
        font-size: 22px;
        padding: 14px 26px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        min-height: calc(100vh - 82px);
    }

    .ai-promo {
        margin-top: 0;
    }

    .ai-promo-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-cta {
        width: 100%;
    }

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

    .card {
        min-height: auto;
        text-align: center;
    }

    .card h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .about-panel,
    .about-values article {
        text-align: center;
    }

    .about-values .service-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-intro,
    .pricing-card,
    .pricing-note,
    .revenue-grid > div {
        text-align: center;
    }

    .pricing-note {
        grid-template-columns: 1fr;
    }

    .pricing-note .service-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card li {
        justify-content: center;
    }

    .founder-promo {
        text-align: center;
    }

    .founder-deals div {
        flex-direction: column;
        justify-content: center;
    }

    .founder-deals span {
        text-align: center;
    }

}

@media (max-width: 480px) {
    .hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero button {
        width: 100%;
    }
}
