:root {
    --primary: #1A5CFF;
    --primary-dark: #1040CC;
    --primary-light: #EEF4FF;
    --dark: #2F2F2F;
    --dark-2: #1A1A1A;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --light: #F3F4F6;
    --border: #E5E7EB;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(26, 92, 255, 0.14);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

img {
    display: block;
    max-width: 100%
}

ul {
    list-style: none
}

a {
    text-decoration: none
}

button {
    font-family: var(--font)
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

.section-pad {
    padding: 96px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all .22s ease;
    white-space: nowrap;
    letter-spacing: -.01em
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: .875rem
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 92, 255, .45)
}

.btn-outline {
    background: 0 0;
    color: rgba(255, 255, 255, .85);
    padding: 10px 20px;
    font-size: .875rem;
    border: 1.5px solid rgba(255, 255, 255, .25)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .5)
}

.btn-white {
    background: var(--white);
    color: var(--primary)
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18)
}

.btn-sm {
    padding: 8px 16px;
    font-size: .8125rem
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem
}

.btn-full {
    width: 100%
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: 0 0;
    transition: background .3s ease, box-shadow .3s ease
}

.navbar.scrolled {
    background: rgba(10, 15, 46, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .07)
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px
}

.nav-brand {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -.5px;
    flex-shrink: 0
}

.brand-ih {
    color: var(--primary)
}

.brand-company {
    color: #fff
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto
}

.nav-links a {
    color: rgba(255, 255, 255, .68);
    font-size: .875rem;
    font-weight: 500;
    transition: color .2s
}

.nav-links a:hover {
    color: #fff
}

.nav-cta {
    flex-shrink: 0
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s ease
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 10px 24px 16px;
    background: rgba(10, 15, 46, .97);
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    color: rgba(255, 255, 255, .72);
    font-size: .9375rem;
    font-weight: 500;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: color .2s
}

.mobile-nav a:last-child {
    border-bottom: none
}

.mobile-nav a:hover {
    color: #fff
}

.mobile-nav .btn {
    margin-top: 10px;
    border-bottom: none;
    padding: 13px 20px
}

.hero {
    min-height: 100vh;
    background: linear-gradient(155deg, #050b1a 0, #081330 38%, #0c1a4a 68%, #080f2c 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 108px 0 72px
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26, 92, 255, .28) 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: 14px 14px;
    mask-image: radial-gradient(ellipse 55% 85% at 82% 48%, black 5%, transparent 62%);
    -webkit-mask-image: radial-gradient(ellipse 55% 85% at 82% 48%, black 5%, transparent 62%);
    pointer-events: none
}

.hero-glow {
    position: absolute;
    top: -18%;
    right: -5%;
    width: 58%;
    height: 72%;
    background: radial-gradient(ellipse, rgba(26, 92, 255, .22) 0%, transparent 68%);
    pointer-events: none
}

.hero-glow-2 {
    position: absolute;
    bottom: -18%;
    left: -8%;
    width: 48%;
    height: 58%;
    background: radial-gradient(ellipse, rgba(90, 50, 210, .14) 0%, transparent 65%);
    pointer-events: none
}

.hero-deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-content {
    animation: heroIn .8s ease both
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 92, 255, .14);
    border: 1px solid rgba(26, 92, 255, .32);
    color: #89b8ff;
    font-size: .8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2.2s ease-in-out infinite
}

@keyframes pulse-dot {

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

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

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.09;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 20px
}

.highlight {
    background: linear-gradient(120deg, #1a5cff 0, #89b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 480px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px
}

.hero-primary-action {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.hero-cta-note {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    text-align: center
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.stat {
    display: flex;
    flex-direction: column
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 2px
}

.stat-label {
    font-size: .73rem;
    color: rgba(255, 255, 255, .45)
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, .15)
}

.hero-visual {
    position: relative;
    height: 460px;
    animation: heroIn 1s ease .2s both
}

@keyframes float-a {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes float-b {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes float-c {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius-lg);
    overflow: hidden
}

.main-card {
    width: 390px;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-a 7s ease-in-out infinite
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.card-dots {
    display: flex;
    gap: 5px
}

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

.dot-red {
    background: #ff5f56
}

.dot-yellow {
    background: #ffbd2e
}

.dot-green {
    background: #27c93f
}

.card-url {
    font-size: .68rem;
    color: rgba(255, 255, 255, .35);
    font-family: monospace
}

.card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.hero-carousel {
    position: relative;
    height: 250px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04)
}

.hero-carousel-track {
    display: flex;
    height: 100%
}

.hero-carousel-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, .16);
    border: 1px solid rgba(255, 255, 255, .08)
}

.hero-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1
}

.hero-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: none;
    cursor: pointer;
    transition: all .22s ease
}

.hero-carousel-dot.active {
    width: 18px;
    background: rgba(26, 92, 255, .92)
}

.hero-carousel-dot:focus {
    outline: 2px solid rgba(26, 92, 255, .45);
    outline-offset: 3px
}

.mock-bar {
    height: 9px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .12)
}

.mock-bar.w75 {
    width: 75%
}

.mock-bar.w60 {
    width: 60%
}

.mock-bar.w80 {
    width: 80%
}

.mock-bar.w50 {
    width: 50%
}

.mock-bar.blue {
    background: rgba(26, 92, 255, .5)
}

.mock-bar.dim {
    background: rgba(255, 255, 255, .1)
}

.mock-bar.mt4 {
    margin-top: 2px
}

.mock-btn-row {
    display: flex;
    gap: 8px;
    margin: 4px 0
}

.mock-btn-el {
    height: 22px;
    border-radius: 5px;
    width: 72px
}

.mock-btn-el.primary {
    background: rgba(26, 92, 255, .55)
}

.mock-btn-el.ghost {
    background: rgba(255, 255, 255, .1);
    width: 58px
}

.mock-cards {
    display: flex;
    gap: 8px
}

.mock-card-item {
    flex: 1;
    height: 44px;
    background: rgba(255, 255, 255, .06);
    border-radius: 7px
}

.side-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius);
    min-width: 168px
}

.side-icon {
    font-size: 1.3rem
}

.side-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.side-sub {
    font-size: .69rem;
    color: rgba(255, 255, 255, .45);
    margin-top: 1px
}

.float-1 {
    top: 10px;
    right: 0;
    animation: float-b 7s ease-in-out 1s infinite
}

.float-2 {
    bottom: 70px;
    left: 0;
    animation: float-c 7s ease-in-out 2s infinite
}

.float-3 {
    bottom: 10px;
    right: 20px;
    animation: float-a 7s ease-in-out .5s infinite
}

.section-header {
    text-align: center;
    margin-bottom: 56px
}

.section-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px
}

.section-tag.light {
    color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .12)
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px
}

.highlight-dark {
    background: linear-gradient(120deg, var(--primary) 0, #1e80ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65
}

.services {
    background: var(--white)
}

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

.service-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color .25s, box-shadow .25s, transform .25s
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px)
}

.service-card.featured {
    background: linear-gradient(145deg, #0f2152 0, #1a3a7a 100%);
    border-color: var(--primary)
}

.service-card.featured h3,
.service-card.featured p {
    color: rgba(255, 255, 255, .88)
}

.service-card.featured p {
    color: rgba(255, 255, 255, .6)
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, .7)
}

.badge-featured {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--primary);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .04em
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 26px
}

.service-card.featured .service-icon {
    background: rgba(26, 92, 255, .18);
    color: #89b8ff
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px
}

.service-card p {
    font-size: .9375rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.service-features li {
    font-size: .875rem;
    color: var(--gray);
    padding-left: 18px;
    position: relative
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700
}

.service-card.featured .service-features li::before {
    color: #89b8ff
}

.why-us {
    background: var(--light)
}

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

.feature-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .25s, box-shadow .25s, transform .25s
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 14px;
    color: var(--primary)
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.feature-item p {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.55
}

.how-it-works {
    background: var(--white)
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: border-color .25s, box-shadow .25s, transform .25s
}

.step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px)
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: .25;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    color: var(--primary)
}

.step h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.step p {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.55
}

.step-connector {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-top: 0;
    opacity: .7
}

.cases {
    background: var(--light)
}

.cases .container {
    max-width: 1200px
}

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

.case-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s
}

.case-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px)
}

.case-preview {
    position: relative;
    padding: 12px 12px 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0
}

.case-preview--ctg {
    background: linear-gradient(140deg, #0a1f0a 0, #1a3a10 60%, #2d5a1a 100%)
}

.case-preview--tattoo {
    background: linear-gradient(140deg, #0d0d0d 0, #1a1a1a 60%, #2a2a2a 100%)
}

.case-preview--beer {
    background: linear-gradient(140deg, #0e1a0a 0, #1a3a10 60%, #2a4a1a 100%)
}

.case-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px
}

.case-url {
    font-size: .65rem;
    font-family: monospace;
    color: rgba(255, 255, 255, .32)
}

.case-mockup {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 14px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.case-mockup-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px 8px 0 0;
    display: block
}

.cm-hero {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cm-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .1)
}

.cm-bar.w75 {
    width: 75%
}

.cm-bar.w55 {
    width: 55%
}

.cm-bar.w40 {
    width: 40%
}

.cm-bar.light {
    background: rgba(255, 255, 255, .12)
}

.cm-bar.accent {
    background: var(--accent, rgba(26, 92, 255, .55))
}

.cm-bar.mt4 {
    margin-top: 2px
}

.cm-btn-row {
    display: flex;
    gap: 8px;
    margin-top: 4px
}

.cm-btn {
    height: 22px;
    width: 80px;
    border-radius: 5px
}

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

.cm-img {
    height: 36px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .08)
}

.cm-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px
}

.cm-card {
    height: 42px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08)
}

.case-tag-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 4px 10px;
    border-radius: 100px;
    margin: 10px 0 12px
}

.case-info {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.case-client {
    display: flex;
    align-items: center;
    gap: 12px
}

.case-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .02em;
    flex-shrink: 0
}

.case-client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2
}

.case-client-loc {
    font-size: .78rem;
    color: var(--gray-light);
    margin-top: 1px
}

.case-desc {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.case-tags li {
    font-size: .72rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 4px;
    transition: gap .2s, opacity .2s
}

.case-link:hover {
    gap: 10px;
    opacity: .8
}

@media (max-width:768px) {
    .cases-grid {
        grid-template-columns: 1fr
    }
}

.cta-section {
    position: relative;
    padding: 96px 0;
    background: linear-gradient(140deg, #080e28 0, #0f1e52 40%, #1040cc 75%, #0b1640 100%);
    overflow: hidden
}

.cta-bg-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(26, 92, 255, .22) 0, transparent 70%);
    pointer-events: none
}

.cta-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -.5px
}

.cta-content>p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 40px;
    line-height: 1.65
}

.cta-whatsapp-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 8px
}

.btn-whatsapp {
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.0625rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease
}

.btn-whatsapp svg {
    flex-shrink: 0;
    color: #25d366
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35)
}

.form-note {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .38);
    text-align: center;
    margin-top: 0
}

.footer {
    background: var(--dark-2);
    padding: 64px 0 32px
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 24px
}

.footer-logo {
    display: block;
    font-size: 1.5rem !important;
    margin-bottom: 12px
}

.footer-brand p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.6
}

.footer-col {
    display: flex;
    flex-direction: column
}

.footer-col h5,
.footer-contact h5 {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 14px
}

.footer-col a {
    color: rgba(255, 255, 255, .58);
    font-size: .9rem;
    padding: 5px 0;
    transition: color .2s
}

.footer-col a:hover {
    color: #fff
}

.footer-contact {
    display: flex;
    flex-direction: column
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .58);
    font-size: .9rem;
    padding: 5px 0;
    transition: color .2s
}

.footer-contact a:hover {
    color: #fff
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .07);
    border-radius: 8px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 !important;
    transition: background .2s !important
}

.social-links a:hover {
    background: var(--primary) !important
}

.footer-cities {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap
}

.footer-cities-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255, 255, 255, .28);
    white-space: nowrap;
    flex-shrink: 0
}

.footer-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 4px
}

.footer-cities-list span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35)
}

.footer-cities-list span:not(:last-child)::after {
    content: '·';
    margin-left: 4px;
    color: rgba(255, 255, 255, .15)
}

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

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .28)
}

.animate-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-subtitle {
        margin: 0 auto 32px
    }

    .hero-actions {
        justify-content: center
    }

    .hero-stats {
        justify-content: center
    }

    .hero-visual {
        display: none
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:768px) {
    .nav-links {
        display: none
    }

    .nav-cta {
        display: none
    }

    .menu-toggle {
        display: flex
    }

    .section-pad {
        padding: 72px 0
    }

    .hero {
        padding: 94px 0 64px
    }

    .hero-title {
        letter-spacing: -1px
    }

    .hero-actions {
        flex-direction: column;
        align-items: center
    }

    .btn-lg {
        width: 100%;
        max-width: 320px
    }

    .hero-stats {
        gap: 16px
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .steps-wrapper {
        flex-direction: column;
        align-items: center
    }

    .step {
        max-width: 100%;
        width: 100%
    }

    .step-connector {
        transform: rotate(90deg)
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}

.for-small {
    background: var(--white)
}

.for-small-simple {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.for-small-lead {
    font-size: 1.0625rem;
    color: var(--gray);
    line-height: 1.75
}

.for-small-pills {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    text-align: left
}

.fs-pill {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    transition: border-color .22s, box-shadow .22s
}

.fs-pill:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow)
}

.fs-pill>i {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px
}

.fs-pill div {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.fs-pill strong {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--dark)
}

.fs-pill span {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.5
}