* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background: #050b14;
    color: #f5f7fa;
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
}
img {
    max-width: 100%;
    display: block;
}
:root {
    --bg: #050b14;
    --bg-secondary: #07111e;
    --card: rgba(255,255,255,.045);
    --card-hover: rgba(255,255,255,.075);
    --text: #f5f7fa;
    --muted: #9ba9bb;
    --primary: #2f81ff;
    --primary-light: #5ba5ff;
    --green: #20d889;
    --border: rgba(255,255,255,.09);
    --container: 1180px;
    --radius: 20px;
}
.container {
    width: min(var(--container),calc(100% - 40px));
    margin: auto;
}
.section {
    padding: 110px 0;
}

.section-header {
    max-width: 720px;
    margin-bottom: 55px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid rgba(47,129,255,.25);
    background: rgba(47,129,255,.08);
    border-radius: 100px;
    color: #71b1ff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}
.section-tag i {
    font-size: 7px;
}
.section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}
.section-description {
    color: var(--muted);
    font-size: 17px;
    max-width: 650px;
}
.background-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(47,129,255,.11);
    filter: blur(110px);
    pointer-events: none;
    top: -250px;
    right: -150px;
    z-index: -1;
}
.background-glow-2 {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(32,216,137,.06);
    filter: blur(110px);
    pointer-events: none;
    bottom: -250px;
    left: -150px;
    z-index: -1;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .3s;
}
header.scrolled {
    background: rgba(5,11,20,.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.navbar {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.7px;
}
.logo span {
    color: var(--primary-light);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: #b9c5d3;
    font-size: 14px;
    font-weight: 500;
    transition: .25s;
}
.nav-links a:hover {
    color: white;
}
.nav-cta {
    padding: 11px 18px;
    border-radius: 10px;
    background: var(--primary);
    color: white !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--primary-light);
}
.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    font-size: 23px;
    cursor: pointer;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(32,216,137,.07);
    border: 1px solid rgba(32,216,137,.18);
    color: #7ce9b8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}
.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -3px;
    margin-bottom: 25px;
}
.hero h1 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            #4d9aff,
            #74b6ff,
            #46df9a
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-description {
    max-width: 600px;
    color: #9eacbd;
    font-size: 18px;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 21px;
    border-radius: 11px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow:
        0 10px 35px
        rgba(47,129,255,.22);
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
}
.btn-secondary {
    border-color: var(--border);
    background: rgba(255,255,255,.03);
    color: #d7dee7;
}
.btn-secondary:hover {
    background: rgba(255,255,255,.07);
}
.hero-trust {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #77869a;
    font-size: 12px;
}
.hero-trust i {
    color: var(--green);
}
.hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.website-showcase {
    position: relative;
    width: 100%;
    max-width: 650px;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.laptop {
    position: relative;
    width: 510px;
    z-index: 2;
}
.laptop-screen {
    position: relative;
    width: 100%;
    padding: 8px;
    border-radius: 15px 15px 8px 8px;
    background: #18283a;
    border: 1px solid rgba(255,255,255,.13);
    box-shadow:
        0 35px 70px rgba(0,0,0,.42),
        0 0 60px rgba(47,129,255,.08);
}
.laptop-screen::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 4px;
    border-radius: 10px;
    background: #07101b;
    z-index: 10;
}
.browser-bar {
    height: 31px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 12px;
    background: #101d2c;
    border-radius: 8px 8px 0 0;
}
.browser-dots {
    display: flex;
    gap: 4px;
}
.browser-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #506175;
}
.browser-address {
    flex: 1;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(255,255,255,.04);
    color: #64758a;
    font-size: 7px;
}
.demo-site {
    position: relative;
    overflow: hidden;
    min-height: 315px;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(47,129,255,.20),
            transparent 35%
        ),
        #f8fafc;
    color: #122033;
}
.demo-navbar {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #e7ecf2;
}
.demo-logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 800;
}
.demo-logo span {
    color: #2f81ff;
}
.demo-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 6px;
    color: #6c7888;
}
.demo-menu b {
    padding: 6px 9px;
    border-radius: 5px;
    background: #2f81ff;
    color: white;
    font-size: 6px;
}
.demo-hero {
    min-height: 215px;
    display: grid;
    grid-template-columns: 1fr .85fr;
    align-items: center;
    padding: 20px 25px;
    position: relative;
}
.demo-content {
    position: relative;
    z-index: 5;
}
.demo-content small {
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #2f81ff;
}
.demo-content h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 26px;
    line-height: 1.02;
    letter-spacing: -1px;
    margin: 8px 0;
}
.demo-content h3 strong {
    display: block;
    color: #2f81ff;
}
.demo-content p {
    max-width: 220px;
    color: #7b8795;
    font-size: 7px;
    line-height: 1.6;
    margin-bottom: 13px;
}
.demo-content button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    border-radius: 5px;
    padding: 7px 10px;
    background: #20c976;
    color: white;
    font-size: 7px;
    font-weight: 700;
}
.demo-visual {
    position: relative;
    height: 180px;
}
.demo-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: 20px;
    top: 10px;
    background:
        linear-gradient(
            135deg,
            #dbeaff,
            #eef6ff
        );
    border: 1px solid #d5e5f8;
}
.demo-circle::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 100px;
    right: 35px;
    top: 25px;
    border-radius: 8px;
    background: linear-gradient(160deg,#ffffff,#dfeaf5);
    box-shadow: 0 15px 30px rgba(34,73,120,.15);
    transform: rotate(-8deg);
}
.demo-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 7px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 25px rgba(22,48,78,.15);
    border: 1px solid #e4ebf2;
    font-size: 6px;
    font-weight: 700;
    z-index: 5;
}
.demo-card i {
    color: #2f81ff;
    font-size: 10px;
}
.card-a {
    left: 5px;
    bottom: 30px;
}
.card-b {
    right: 0;
    top: 25px;
}
.card-b i {
    color: #20c976;
}
.demo-bottom {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 25px;
    background: white;
    border-top: 1px solid #e7ecf2;
    color: #687689;
    font-size: 6px;
}
.demo-bottom i {
    color: #20c976;
    margin-right: 3px;
}
.laptop-base {
    position: relative;
    width: 112%;
    height: 16px;
    margin-left: -6%;
    background:
        linear-gradient(
            180deg,
            #25374b,
            #132234
        );
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 30px rgba(0,0,0,.3);
}
.laptop-base::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #0b1521;
    border-radius: 0 0 8px 8px;
}
.phone {
    position: absolute;
    width: 125px;
    height: 255px;
    right: 20px;
    bottom: 45px;
    padding: 6px;
    border-radius: 21px;
    background: #17283a;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 25px 55px rgba(0,0,0,.45);
    z-index: 8;
    transform: rotate(3deg);
}
.phone-speaker {
    position: absolute;
    width: 35px;
    height: 4px;
    border-radius: 10px;
    background: #09131f;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #f7f9fc;
}
.phone-header {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background: white;
    border-bottom: 1px solid #e7ecf2;
}
.phone-logo {
    font-family: "Space Grotesk";
    font-size: 7px;
    font-weight: 800;
}
.phone-logo span {
    color: #2f81ff;
}
.phone-header i {
    font-size: 9px;
    color: #718095;
}
.phone-content {
    padding: 25px 12px;
}
.phone-content small {
    color: #2f81ff;
    font-size: 5px;
    font-weight: 800;
    letter-spacing: .5px;
}
.phone-content h4 {
    font-family: "Space Grotesk";
    font-size: 17px;
    line-height: 1.05;
    margin: 8px 0;
}
.phone-content h4 strong {
    display: block;
    color: #2f81ff;
}
.phone-content p {
    color: #788696;
    font-size: 6px;
    line-height: 1.5;
    margin-bottom: 12px;
}
.phone-content button {
    width: 100%;
    border: 0;
    padding: 8px;
    border-radius: 5px;
    background: #20c976;
    color: white;
    font-size: 6px;
    font-weight: 700;
}
.phone-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
    margin-top: 17px;
}
.phone-cards div {
    height: 35px;
    border-radius: 5px;
    background: #e5ebf2;
}
.showcase-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 11px;
    background: rgba(8,20,34,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
    z-index: 15;
    animation: floatBadge 4s ease-in-out infinite;
}
.showcase-badge strong {
    display: block;
    font-size: 10px;
    color: white;
    line-height: 1.2;
}
.showcase-badge small {
    display: block;
    color: #718195;
    font-size: 7px;
    margin-top: 2px;
}
.badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(47,129,255,.1);
    color: #65a8ff;
    font-size: 12px;
}
.badge-performance {
    left: -5px;
    top: 95px;
}
.badge-responsive {
    right: -5px;
    top: 135px;
    animation-delay: 1s;
}
.badge-responsive .badge-icon {
    background: rgba(32,216,137,.09);
    color: #4fe19e;
}
.badge-whatsapp {
    left: 30px;
    bottom: 15px;
    animation-delay: 2s;
}
.badge-whatsapp .badge-icon {
    background: rgba(32,201,118,.09);
    color: #35d889;
}
@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}
.stats {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.015);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.stat {
    padding: 32px 25px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.stat:last-child {
    border-right: 0;
}
.stat strong {
    font-family: "Space Grotesk";
    font-size: 27px;
}
.stat p {
    color: #78879a;
    font-size: 12px;
    margin-top: 4px;
}
/* .services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}
.service-card {
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    transition: .3s;
}
.service-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    border-color: rgba(47,129,255,.3);
}
.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(47,129,255,.1);
    color: #65a8ff;
    font-size: 19px;
    margin-bottom: 22px;
}
.service-card h3 {
    font-family: "Space Grotesk";
    font-size: 19px;
    margin-bottom: 10px;
}
.service-card p {
    color: #8795a7;
    font-size: 14px;
} */
.benefits {
    background: var(--bg-secondary);
}
.benefits-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.benefits-list {
    display: grid;
    gap: 14px;
}
.benefit {
    display: flex;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,.025);
}
.benefit-icon {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(32,216,137,.08);
    color: var(--green);
}
.benefit h4 {
    font-size: 14px;
    margin-bottom: 3px;
}
.benefit p {
    color: #778699;
    font-size: 12px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns:repeat(2,1fr);
    gap: 25px;
}
.project {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--card);
    transition: .3s;
}
.project:hover {
    transform: translateY(-5px);
    border-color: rgba(47,129,255,.3);
}
.project-image {
    height: 300px;
    background:
        linear-gradient(
            135deg,
            #0c1e34,
            #112d4b
        );
    position: relative;
    overflow: hidden;
}
.project-image::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(47,129,255,.15);
    filter: blur(40px);
    top: -80px;
    right: -50px;
}
.mock-browser {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 15%;
    height: 70%;
    border-radius: 10px;
    background: #f7f9fc;
    box-shadow:
        0 20px 50px rgba(0,0,0,.35);
    z-index: 2;
    overflow: hidden;
}
.mock-top {
    height: 25px;
    background: #e6ebf1;
    display: flex;
    align-items: center;
    padding-left: 9px;
    gap: 4px;
}
.mock-top span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a8b2bf;
}
.mock-content {
    padding: 25px;
    color: #122033;
}
.mock-line {
    width: 60%;
    height: 12px;
    background: #dbe3ec;
    border-radius: 4px;
    margin-bottom: 12px;
}
.mock-line.small {
    width: 40%;
}
.mock-boxes {
    display: grid;
    grid-template-columns:
        repeat(3,1fr);
    gap: 7px;
    margin-top: 25px;
}
.mock-box {
    height: 60px;
    background: #e9eef4;
    border-radius: 5px;
}
.project-info {
    padding: 22px;
}
.project-info h3 {
    font-family: "Space Grotesk";
    font-size: 19px;
    margin-bottom: 5px;
}
.project-info p {
    color: #8290a1;
    font-size: 13px;
    margin-bottom: 17px;
}
.project-link {
    color: #69aaff;
    font-size: 13px;
    font-weight: 600;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}
.process-card {
    position: relative;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card);
}
.process-number {
    font-family: "Space Grotesk";
    font-size: 42px;
    color: rgba(255,255,255,.08);
    margin-bottom: 15px;
}
.process-card h3 {
    font-size: 16px;
    margin-bottom: 7px;
}
.process-card p {
    color: #7f8da0;
    font-size: 13px;
}
.cta {
    padding: 100px 0;
}
.cta-box {
    position: relative;
    overflow: hidden;
    padding: 70px 40px;
    text-align: center;
    border-radius: 25px;
    border: 1px solid rgba(47,129,255,.25);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(47,129,255,.17),
            transparent 60%
        ),
    #081523;
}
.cta-box h2 {
    font-family: "Space Grotesk";
    font-size: clamp(32px,4vw,50px);
    line-height: 1.05;
    margin-bottom: 15px;
}
.cta-box p {
    color: #8796a8;
    max-width: 600px;
    margin:
        auto
        auto
        28px;
}
.faq {
    max-width: 800px;
    margin: auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: 0;
    color: white;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}
.faq-question i {
    color: #6e7e91;
    transition: .3s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .35s;
}
.faq-answer p {
    color: #8190a3;
    font-size: 14px;
    padding-bottom: 22px;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary-light);
}
footer {
    padding: 45px 0;
    border-top: 1px solid var(--border);
    color: #718095;
    font-size: 12px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand {
    font-family: "Space Grotesk";
    color: white;
    font-size: 16px;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    border: 1px solid var(--border);
    transition: .25s;
}
.social-links a:hover {
    color: white;
    border-color: var(--primary);
}
.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #20c976;
    color: white;
    font-size: 25px;
    box-shadow:
        0 12px 35px
        rgba(32,201,118,.3);
    z-index: 900;
    transition: .25s;
}
.whatsapp:hover {
    transform: scale(1.08);
}
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media(max-width: 950px) {
    .nav-links {
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: 15px;
        background: #091523;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-button {
        display: block;
    }
    .hero-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero {
        padding-top: 130px;
    }
    .hero-visual {
        max-width: 700px;
        margin: auto;
    }
    .services-grid {
        grid-template-columns:
            repeat(2,1fr);
    }
    .process-grid {
        grid-template-columns:
            repeat(2,1fr);
    }
    .stats-grid {
        grid-template-columns:
            repeat(2,1fr);
    }
    .stat:nth-child(2) {
        border-right: 0;
    }
    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }
}
@media(max-width: 650px) {
    .container {
        width: min(var(--container),calc(90% - 28px));
    }
    .section {
        padding: 75px 0;
    }
    .hero h1 {
        letter-spacing: -2px;
    }
    .hero-description {
        font-size: 16px;
        width: 100%;
        max-width: 400px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
    .services-grid,
    .portfolio-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns:1fr 1fr;
    }
    .stat {
        padding:25px 10px;
    }
    .hero-visual {
        min-height: 390px;
        margin-top: 10px;

                width: 100%;
        max-width: 400px;
    }
    .website-showcase {
        min-height: 380px;
        transform: scale(.68);
        transform-origin: center center;
        width: 650px;
        max-width: none;
    }
    .badge-performance {
        left: 15px;
    }
    .badge-responsive {
        right: 15px;
    }
    .badge-whatsapp {
        left: 45px;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .whatsapp {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
    .cta-box {
        padding:50px 20px;
    }
}
.section {
    padding: 110px 0;
    position: relative;
}
.about {
    background:linear-gradient(180deg,transparent,rgba(8,24,40,.45),transparent);
}
.about-grid {
    display: grid;
    grid-template-columns:.78fr 1.22fr;
    gap: 80px;
    align-items: center;
}
.profile-wrap {
    position: relative;
    width:min(100%,410px);
    margin: auto;
}
.profile-wrap::before {
    content: "";
    position: absolute;
    inset: -18px;
    border:1px solid rgba(47,128,237,.22);
    border-radius: 34px;
    transform: rotate(-3deg);
}
.profile-wrap::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -45px;
    bottom: -45px;
    border-radius: 50%;
    background:rgba(34,211,238,.16);
    filter:blur(35px);
    z-index: 0;
}
.profile-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solidrgba(255,255,255,.13);
    background: #0b1727;
    box-shadow: 0 35px 90pxrgba(0,0,0,.45);
}
.profile-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.96)contrast(1.02);
}
.profile-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 15px 17px;
    border:1px solid rgba(255,255,255,.11);
    background:rgba(5,11,20,.78);
    backdrop-filter: blur(14px);
    border-radius: 16px;
}
.profile-caption strong {
    display: block;
    font-size: 1rem;
}
.profile-caption span {
    color: #aebdce;
    font-size: .78rem;
}
.about-copy h2 {
    font-size:clamp(2.2rem,4vw,3.7rem);
    line-height: 1.05;
    letter-spacing: -.05em;
    margin-bottom: 20px;
}
.about-copy h2 span {
    color: #60a5fa;
}
.about-copy > p {
    color: var(--muted);
    max-width: 650px;
    margin-bottom: 24px;
}
.about-points {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}
.about-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cdd8e5;
    font-size: .92rem;
}
.about-point i {
    margin-top: 5px;
    color: #4ade80;
}
@media (max-width: 900px) {
    .section {
        padding: 80px 0;
    } 
    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .profile-wrap {
        max-width: 390px;
    }
}

@media (max-width: 620px) {
    .about-copy h2 {
        font-size: 2.45rem;
    }
}
