:root {
    --bg: #07110f;
    --bg-2: #0c1715;
    --panel: rgba(255, 255, 255, 0.075);
    --panel-strong: rgba(255, 255, 255, 0.12);
    --text: #f7fbf8;
    --muted: #aab8b2;
    --line: rgba(255, 255, 255, 0.14);
    --gold: #d7b56d;
    --mint: #45d6a3;
    --teal: #0ea5a4;
    --rose: #e66c85;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(69, 214, 163, 0.18), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(215, 181, 109, 0.14), transparent 28rem),
        linear-gradient(135deg, #07110f 0%, #0d1718 45%, #141009 100%);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    animation: page-in 0.7s ease both;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
    z-index: -1;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.anchor-section {
    scroll-margin-top: 92px;
}

.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(7, 17, 15, 0.78);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
    background: rgba(7, 17, 15, 0.94);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.navbar-container {
    max-width: 1200px;
    min-height: 78px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(215, 181, 109, 0.55);
    box-shadow: 0 0 0 5px rgba(215, 181, 109, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo:hover .logo-image {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 0 5px rgba(215, 181, 109, 0.14), 0 12px 32px rgba(0, 0, 0, 0.22);
}

.logo-accent {
    color: var(--gold);
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    color: var(--muted);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: var(--radius);
    background: #22c55e;
    color: #04120a;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 38px rgba(34, 197, 94, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(34, 197, 94, 0.34);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: var(--text);
}

.hero,
.page-header {
    padding: 128px 0 76px;
}

.hero-content,
.footer-content,
.pricing-container,
.services-grid,
.portfolio-showcase,
.process-steps,
.response-grid,
.reasons-grid,
.tech-categories,
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(520px, 0.95fr) minmax(420px, 0.82fr);
    gap: clamp(42px, 5vw, 86px);
    align-items: center;
}

.hero-text,
.page-header-content,
.cta-inner {
    animation: fade-up 0.75s ease both;
}

.hero-showcase {
    animation: fade-up 0.9s ease 0.08s both;
}

.hero-text {
    position: relative;
}

.hero-text::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 3px;
    left: 0;
    top: -26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.page-header-content {
    position: relative;
}

.page-header-content::after {
    content: "";
    display: block;
    width: 110px;
    height: 3px;
    margin: 28px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 18px var(--mint);
}

.hero-title,
.page-header h1 {
    max-width: 780px;
    font-size: clamp(2.5rem, 3.15vw, 3.45rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-subtitle,
.page-header p,
.section-subtitle {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
    margin-top: 22px;
}

.hero-subtitle {
    max-width: 620px;
}

.hero-buttons,
.cta-buttons,
.form-actions-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn,
button,
.btn-wa-direct,
.btn-secondary-call {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn-wa-direct:hover,
.btn-secondary-call:hover {
    transform: translateY(-2px);
}

.btn-primary,
.btn-wa-direct {
    background: linear-gradient(135deg, var(--gold), #f4df9d);
    color: #151006;
    box-shadow: 0 18px 48px rgba(215, 181, 109, 0.22);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.btn-primary:hover::after {
    transform: translateX(120%);
}

.btn-secondary,
.btn-secondary-call {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: var(--text);
}

.btn-large {
    min-height: 56px;
    padding: 0 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
}

.stat {
    padding: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.stat h3 {
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
}

.stat p,
p,
li {
    color: var(--muted);
}

.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 0;
    justify-self: end;
    overflow: hidden;
}

.hero-showcase img {
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
}

.browser-frame {
    width: 100%;
    max-width: 520px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: float-soft 5s ease-in-out infinite;
}

.browser-top {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid var(--line);
}

.browser-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gold);
}

.browser-top span:nth-child(2) {
    background: var(--mint);
}

.browser-top span:nth-child(3) {
    background: var(--rose);
}

.browser-body {
    padding: 22px;
}

.dashboard-header,
.launch-card,
.contact-method-row,
.response-card,
.reason,
.service-detail,
.process-step,
.pricing-card,
.service-card,
.portfolio-item,
.contact-info,
.contact-form-wrapper {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.dashboard-header {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
}

.mini-logo-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #07110f, #0ea5a4);
    border: 1px solid rgba(215, 181, 109, 0.55);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
}

.dashboard-header small,
.method-label {
    display: block;
    color: var(--muted);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 18px 0;
}

.metric-grid div {
    min-height: 96px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(69, 214, 163, 0.1);
    border: 1px solid rgba(69, 214, 163, 0.2);
}

.metric-grid b {
    display: block;
    font-size: 1.45rem;
    color: var(--mint);
}

.metric-grid span {
    color: var(--muted);
    font-size: 0.86rem;
}

.preview-lines {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.preview-lines span {
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04));
}

.preview-lines span:nth-child(2) {
    width: 82%;
}

.preview-lines span:nth-child(3) {
    width: 64%;
}

.preview-lines span:nth-child(4) {
    width: 92%;
}

.launch-card {
    padding: 22px;
}

.launch-card b {
    display: block;
    margin-bottom: 14px;
}

.launch-card a {
    color: var(--gold);
    font-weight: 900;
}

.floating-proof {
    position: absolute;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: rgba(7, 17, 15, 0.84);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    color: var(--text);
    font-weight: 900;
    animation: float-soft 4s ease-in-out infinite;
}

.proof-one {
    top: 64px;
    right: -12px;
}

.proof-two {
    left: -12px;
    bottom: 130px;
    animation-delay: 0.45s;
}

.proof-three {
    right: 38px;
    bottom: 34px;
    animation-delay: 0.9s;
}

.trust-strip {
    max-width: 1200px;
    margin: 0 auto 36px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 800;
}

.services-preview,
.featured-work,
.process-section,
.pricing-section,
.contact-section,
.response-section,
.choose-us-section,
.technologies,
.cta-section,
.services-detailed,
.service-process {
    padding: 86px 0;
}

.section-title {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(2rem, 3.25vw, 3.15rem);
    line-height: 1.04;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    margin: 20px auto 44px;
}

.services-preview > .section-eyebrow,
.featured-work > .section-eyebrow,
.pricing-section > .section-eyebrow,
.process-section > .section-eyebrow,
.cta-section .section-eyebrow,
.response-section > .section-title,
.choose-us-section > .section-title,
.technologies > .section-title {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: fit-content;
}

.pricing-section {
    padding: 56px 0 76px;
    text-align: center;
}

.pricing-section > .section-eyebrow {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 auto 16px !important;
    justify-content: center;
}

.pricing-section .section-title {
    max-width: 760px;
    font-size: clamp(2rem, 3vw, 2.85rem);
}

.pricing-section .section-subtitle {
    max-width: 640px;
    margin: 18px auto 24px;
}

.pricing-section .pricing-container {
    margin-top: 24px;
    text-align: left;
}

.services-grid,
.portfolio-showcase,
.pricing-container,
.process-steps,
.response-grid,
.reasons-grid,
.tech-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.process-steps {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.portfolio-info,
.pricing-card,
.process-step,
.response-card,
.reason,
.service-detail,
.contact-info,
.contact-form-wrapper {
    padding: 26px;
}

.service-card,
.portfolio-item,
.pricing-card,
.process-step,
.response-card,
.reason,
.service-detail {
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover,
.portfolio-item:hover,
.pricing-card:hover,
.process-step:hover,
.response-card:hover,
.reason:hover,
.service-detail:hover {
    transform: translateY(-5px);
    border-color: rgba(215, 181, 109, 0.46);
    background: var(--panel-strong);
}

.service-icon,
.step-number,
.package-label {
    color: var(--gold);
    font-weight: 900;
}

.service-card h3,
.portfolio-info h3,
.pricing-card h3,
.process-step h3,
.response-card h3,
.reason h3,
.service-detail h2,
.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.15;
}

.portfolio-item {
    overflow: hidden;
}

.portfolio-image {
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    background: #0c1715;
}

.portfolio-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.portfolio-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 17, 15, 0.02), rgba(7, 17, 15, 0.78));
}

.portfolio-image span {
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tech {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(215, 181, 109, 0.13);
    color: var(--gold);
    border: 1px solid rgba(215, 181, 109, 0.2);
    font-size: 0.82rem;
    font-weight: 800;
}

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

.page-header-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-header h1 {
    margin: 0 auto;
}

.page-header p {
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(215, 181, 109, 0.18), rgba(255, 255, 255, 0.08));
    border-color: rgba(215, 181, 109, 0.55);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--gold);
    color: #151006;
    font-size: 0.76rem;
    font-weight: 900;
}

.price {
    margin: 10px 0;
    color: var(--text);
    font-size: 2.1rem;
    font-weight: 900;
}

.price span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.features-list,
.service-features,
.footer-section ul {
    list-style: none;
}

.features-list,
.service-features {
    display: grid;
    gap: 12px;
}

.features-list li,
.service-features li {
    padding-left: 20px;
    position: relative;
}

.features-list li::before,
.service-features li::before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    left: 0;
    top: 0.72em;
    border-radius: 50%;
    background: var(--mint);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 22px;
    text-align: left;
}

.contact-info,
.contact-form-wrapper {
    backdrop-filter: blur(18px);
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-method-row {
    display: flex;
    gap: 14px;
    padding: 16px;
}

.method-icon-box,
.response-icon,
.reason-icon,
.service-detail-icon {
    color: var(--gold);
    font-weight: 900;
}

.contact-cta {
    margin-top: 24px;
}

.contact-cta h3 {
    margin-bottom: 8px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

label {
    color: var(--text);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 12px 14px;
    font: inherit;
}

textarea {
    resize: vertical;
}

select option {
    color: #07110f;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(215, 181, 109, 0.5);
    border-color: transparent;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.checkbox-label input {
    width: auto;
    min-height: auto;
}

.form-note {
    width: 100%;
    font-size: 0.92rem;
    text-align: center;
}

.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(215, 181, 109, 0.12), transparent 26rem),
        linear-gradient(90deg, rgba(69, 214, 163, 0.05), transparent 45%, rgba(215, 181, 109, 0.06));
    pointer-events: none;
}

.cta-inner {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-inner p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    justify-content: center;
}

.footer {
    padding: 68px 0 28px;
    border-top: 1px solid var(--line);
    background: rgba(2, 8, 7, 0.72);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
}

.footer-section h4 {
    margin-bottom: 12px;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--muted);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 34px auto 0;
    padding: 22px 24px 0;
    border-top: 1px solid var(--line);
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 16px 38px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn svg {
    width: 31px;
    height: 31px;
    fill: white;
}

.whatsapp-tooltip {
    opacity: 0;
    transform: translateX(8px);
    transition: 0.2s ease;
    pointer-events: none;
    padding: 9px 12px;
    border-radius: var(--radius);
    background: rgba(7, 17, 15, 0.9);
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1280px) {
    .hero-content {
        max-width: 1180px;
    }

    .hero-title {
        max-width: 720px;
    }
}

@keyframes page-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
    .nav-cta {
        display: none;
    }

    .hero-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        max-width: 620px;
        min-height: auto;
        justify-self: stretch;
        margin: 0 auto;
    }

    .browser-frame {
        max-width: 620px;
        margin: 0 auto;
    }

    .hero-title,
    .page-header h1 {
        max-width: 760px;
        font-size: clamp(2.3rem, 8vw, 4.2rem);
    }

    .services-grid,
    .portfolio-showcase,
    .pricing-container,
    .process-steps,
    .response-grid,
    .reasons-grid,
    .tech-categories,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .navbar-container {
        min-height: 68px;
        padding: 0 16px;
    }

    .hero-text::before {
        width: 82px;
        top: -20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: rgba(7, 17, 15, 0.96);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero,
    .page-header {
        padding: 118px 0 64px;
    }

    .hero-content {
        gap: 34px;
    }

    .hero-title,
    .page-header h1 {
        font-size: clamp(2.1rem, 12vw, 3.1rem);
        line-height: 1.05;
    }

    .hero-subtitle,
    .page-header p,
    .section-subtitle {
        font-size: 1rem;
    }

    .browser-body {
        padding: 18px;
    }

    .hero-content,
    .footer-content,
    .pricing-container,
    .services-grid,
    .portfolio-showcase,
    .process-steps,
    .response-grid,
    .reasons-grid,
    .tech-categories,
    .contact-container {
        padding: 0 16px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn,
    .btn-wa-direct,
    .btn-secondary-call {
        width: 100%;
    }

    .hero-stats,
    .services-grid,
    .portfolio-showcase,
    .pricing-container,
    .process-steps,
    .response-grid,
    .reasons-grid,
    .tech-categories,
    .footer-content,
    .form-grid-2col,
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin: 0 16px 24px;
    }

    .floating-proof {
        position: static;
        display: inline-flex;
        margin: 10px 8px 0 0;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }

    .contact-info,
    .contact-form-wrapper,
    .service-card,
    .portfolio-item,
    .pricing-card,
    .process-step,
    .response-card,
    .reason {
        padding: 22px;
    }
}

@media (max-width: 430px) {
    .logo-text {
        display: none;
    }

    .hero-title,
    .page-header h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }
}
