/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #f5f5f5;
    --blue: #0d69b5;
    --grey: #1a1a1a;
    --text-muted: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
}

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

/* ─── HEADINGS ──────────────────────────────────────────────── */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--blue);
}

/* ─── LISTS ───────────────────────────────────────────────── */

ul{
    font-family: 'Inter', sans-serif;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-block;
    background-color: var(--blue);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 14px 36px;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--blue);
}

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

.hero-btns .btn {
    text-align: center;
}

.header-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
}

.header-btns .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ─── LANGUAGE SWITCHER ─────────────────────────────────────── */
.lang-switcher {
    display: flex;
    border: 1px solid var(--blue);
    overflow: hidden;
    flex-shrink: 0;
}

.lang-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 7px 13px;
    color: var(--text-muted);
    transition: background-color 0.2s, color 0.2s;
}

.lang-btn + .lang-btn {
    border-left: 1px solid var(--blue);
}

.lang-btn:hover {
    background-color: var(--blue);
    color: var(--black);
}

.lang-btn.active {
    background-color: var(--blue);
    color: var(--black);
}

/* ─── HEADER ────────────────────────────────────────────────── */
header {
    padding: 24px 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--black);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {

    display: flex;
    align-items: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.logo span{
    color: var(--blue)
}

.logo img{
    width: 70px;
    border-radius: 50px;
    margin-right: 20px;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--blue);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    column-gap: 80px;
    row-gap: 36px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ─── DEVICE MOCKUPS ────────────────────────────────────────── */
.hero-devices-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.hero-devices-label {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
    color: var(--white);
    text-align: center;
}

.hero-devices {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 32px;
}

/* Desktop */
.device-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.device-desktop-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: var(--grey);
    border: 12px solid #2e2e2e;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 0 0 1px #444;
}

.device-desktop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.device-desktop-neck {
    width: 20%;
    height: 16px;
    background-color: #2a2a2a;
    border-left: 1px solid #444;
    border-right: 1px solid #444;
}

.device-desktop-base {
    width: 45%;
    height: 8px;
    background-color: #2e2e2e;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #444;
}

/* Mobile */
.device-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 26%;
    background-color: #2e2e2e;
    border-radius: 36px;
    padding: 18px 12px;
    box-shadow: 0 0 0 1px #444;
    gap: 12px;
}

.device-mobile-speaker {
    width: 36%;
    height: 5px;
    background-color: #444;
    border-radius: 4px;
}

.device-mobile-screen {
    width: 100%;
    aspect-ratio: 9/16;
    background-color: var(--grey);
    border-radius: 4px;
    overflow: hidden;
}

.device-mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.device-mobile-home {
    width: 30%;
    height: 5px;
    background-color: #555;
    border-radius: 4px;
}

/* ─── HERO PREVIEW CROSSFADE ────────────────────────────────── */
.hero .device-desktop-screen img,
.hero .device-mobile-screen img {
    transition: opacity 0.45s ease;
}

.work-image img {
    cursor: pointer;
}

/* ─── TRUST STRIP ───────────────────────────────────────────── */
.trust-strip {
    padding: 28px 0;
    background-color: var(--grey);
    border-bottom: 1px solid #2a2a2a;
}

.trust-strip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 40px;
}

.trust-strip-grid span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-strip-grid span i {
    color: var(--blue);
    font-size: 0.95rem;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    border-bottom: 3px solid var(--blue);
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 56px;
    text-align: center;
}

.how-it-works-steps {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 0 32px 28px;
    border-left: 2px solid #252525;
    position: relative;
}

.hiw-step:last-child {
    border-left: 2px solid transparent;
}

.hiw-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 36px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
}

.hiw-step-header {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    text-align: left;
    font-family: inherit;
    color: inherit;
}

.hiw-step-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hiw-step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--blue);
}

.hiw-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.hiw-optional {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hiw-arrow {
    color: var(--blue);
    font-size: 1rem;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.hiw-step.open .hiw-arrow {
    transform: rotate(180deg);
}

.hiw-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.hiw-step.open .hiw-body {
    grid-template-rows: 1fr;
}

.hiw-body-inner {
    overflow: hidden;
    padding-top: 14px;
}

.hiw-step p {
    color: var(--text-muted);
    margin: 0 0 10px;
}

.hiw-step p:last-child {
    margin-bottom: 0;
}

/* ─── PROBLEM ───────────────────────────────────────────────── */

.problems {
    border-bottom: 3px solid var(--blue);
    padding: 80px 0;
}

.problems h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 48px;
}

.problem {
    border: 1px solid #252525;
    border-radius: 8px;
    margin-bottom: 12px;
}

.problem:last-child {
    margin-bottom: 0;
}

.problem-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: inherit;
}

.problem-header span {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    color: var(--blue);
    line-height: 1.2;
}

.problem-arrow {
    font-size: 1.2rem;
    color: var(--blue);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.problem.open .problem-arrow {
    transform: rotate(180deg);
}

.problem-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.problem.open .problem-body {
    grid-template-rows: 1fr;
}

.problem-body-inner {
    overflow: hidden;
    padding: 0 24px;
}

.problem-body-inner p {
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 16px;
}

.problem.open .problem-body-inner {
    padding-bottom: 32px;
}

/* ─── OFFER ─────────────────────────────────────────────────── */
.offer {
    padding: 100px 0;
    background-color: var(--grey);
    border-bottom: 3px solid var(--blue);
}

.offer h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
    text-align: center;
}

.offer ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.offer ul li {
    background-color: var(--black);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px 24px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.offer ul li i {
    color: var(--blue);
    font-size: 1.3rem;
    min-width: 46px;
    height: 46px;
    background: rgba(13, 105, 181, 0.12);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Toggle hidden on desktop — collapsible only activates on mobile */
.offer-toggle {
    display: none;
}

.pricing-tabs {
    display: none;
}

/* ─── PRICING ───────────────────────────────────────────────── */
.pricing {
    padding: 100px 0;
    border-bottom: 3px solid var(--blue);
    text-align: center;
}

.pricing h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pricing > .container > p {
    color: var(--text-muted);
    margin-bottom: 56px;
    font-size: 1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto 32px;
}

.pricing-card {
    background-color: var(--grey);
    border: 1px solid #333;
    padding: 48px 40px;
    text-align: left;
}

.pricing-card.featured {
    border-color: var(--blue);
    border-width: 2px;
}


.optional-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 12px;
}

.card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.launch-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #111;
    background: #f5c000;
    border-radius: 4px;
    padding: 5px 12px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: badge-pulse 2.4s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 192, 0, 0.45); }
    50%       { box-shadow: 0 0 0 7px rgba(245, 192, 0, 0); }
}

.pricing-card.featured.limited {
    border-color: #f5c000;
}

.pricing-card.limited .price {
    color: #f5c000;
}

.pricing-card.limited .price-notes li::before {
    color: #f5c000;
}

.offer-scarcity {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #f5c000;
    margin-top: 14px;
    margin-bottom: 6px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
}

.price .per {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}

.price-divider {
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 300;
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.trust-notes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.trust-notes span {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.trust-notes span::before {
    content: "— ";
    color: var(--blue);
}

.price-notes {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.price-notes li {
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    display: flex;
    align-items: baseline;
}

.price-notes li::before {
    flex-shrink: 0;
}

.price-notes li::before {
    content: "•";
    color: var(--blue);
    margin-right: 8px;
}

.price-card-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    margin-top: 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: opacity 0.2s;
}

.price-card-cta:hover {
    opacity: 0.85;
}

.price-card-cta.btn-yellow {
    background: #f5c000;
    color: #111;
}

.price-card-cta.btn-blue {
    background: var(--blue);
    color: #111;
}

.price-value-note {
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto 32px;
    max-width: 760px;
    font-style: italic;
}

/* ─── WORK EXAMPLE ──────────────────────────────────────────── */
.work {
    padding: 100px 0;
    border-bottom: 3px solid var(--blue);
}

.work h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
}

.work-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.work-image {
    overflow: hidden;
    border: 1px solid #333;
    background-color: var(--grey);
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.work-image img:hover {
    transform: scale(1.03);
}

/* ─── CONTACT / CTA ─────────────────────────────────────────── */
.contact {
    padding: 120px 0;
    border-bottom: 3px solid var(--blue);
    text-align: center;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-whatsapp-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 18px 48px;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
    margin-bottom: 16px;
}

.btn-whatsapp-primary:hover {
    opacity: 0.85;
}

.btn-whatsapp-primary i {
    font-size: 1.3rem;
}

.contact-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-btns .btn-whatsapp-primary,
.contact-btns .btn-email-primary {
    width: 340px;
    justify-content: center;
}

.btn-email-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--blue);
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 18px 48px;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.btn-email-primary:hover {
    opacity: 0.85;
}

.btn-email-primary i {
    font-size: 1.3rem;
}

.whatsapp-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 32px !important;
}

.contact-location {
    color: #555;
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0 !important;
}

.contact-prompt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px !important;
    margin-top: -16px !important;
}

/* ─── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

/* ─── SOCIALS ───────────────────────────────────────────────── */
.socials {
    padding: 100px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.socials h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
}

.socials-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: var(--grey);
    border: 1px solid #2a2a2a;
    padding: 28px 36px;
    color: var(--white);
    text-decoration: none;
    min-width: 120px;
    transition: border-color 0.2s, color 0.2s;
}

.social-item:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.social-item i {
    font-size: 1.8rem;
}

.social-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
    padding: 32px 0;
    border-top: 1px solid #222;
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ─── LEGAL LANG DIVIDER ────────────────────────────────────── */
.legal-lang-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 64px 0;
}

.legal-lang-divider::before,
.legal-lang-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--blue);
}

.legal-lang-divider span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ─── LEGAL PAGES ───────────────────────────────────────────── */
.legal {
    padding: 80px 0 120px;
}

.legal h1 {
    font-size: 2.6rem;
    margin-bottom: 56px;
    color: var(--white);
}

.legal h2 {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--blue);
    margin-top: 48px;
    margin-bottom: 12px;
}

.legal h3 {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-top: 28px;
    margin-bottom: 8px;
}

.legal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 720px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    max-width: 720px;
}

.legal ul li::before {
    content: "–";
    color: var(--blue);
    position: absolute;
    left: 0;
}

.legal a {
    color: var(--blue);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

.legal .legal-part-heading {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 72px;
    margin-bottom: 4px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ─── PORTFOLIO ─────────────────────────────────────────────── */
.portfolio {
    padding: 100px 0 0;
    border-bottom: 3px solid var(--blue);
}

.portfolio h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    text-align: center;
}

.portfolio > .container > p {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 56px;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.portfolio-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding: 64px max(48px, 6vw);
    border-top: 1px solid #2a2a2a;
    background-color: var(--grey);
}

.portfolio-card:nth-child(even) {
    background-color: var(--black);
}

.portfolio-devices {
    flex: 0 1 58%;
    min-width: 0;
}

/* ── Hero preview cycling fade ── */
#hero-desktop-img,
#hero-mobile-img { transition: opacity 0.8s ease-in-out; }

.portfolio-slider {
    width: 100%;
}

/* ── Desktop: both slides visible side by side ── */
.portfolio-slider-track {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    width: 100%;
}

.portfolio-slide:first-child {
    flex: 1;
    min-width: 0;
}

.portfolio-slide:first-child .device-desktop {
    width: 100%;
}

.portfolio-slide:last-child {
    flex: 0 0 26%;
}

.portfolio-slide:last-child .device-mobile {
    width: 100%;
}

/* ── Dots: hidden on desktop ── */
.portfolio-slider-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    border: 1.5px solid var(--blue);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: var(--blue);
}

/* ── Preview toggle (Desktop / Mobile buttons) — hidden on desktop ── */
.preview-toggle {
    display: none;
    background: var(--grey);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 16px;
}

.preview-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 9px 16px;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.preview-btn.active {
    background: var(--blue);
    color: var(--white);
}

/* hide scrollbar on track always */
.portfolio-slider-track::-webkit-scrollbar { display: none; }

.portfolio-card-info {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.portfolio-card-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
}

.portfolio-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-top: -12px;
}

.portfolio-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    text-align: center;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-devices-wrapper {
        grid-column: 1;
        grid-row: auto;
        align-self: auto;
    }

    .hero-text {
        text-align: center;
    }

    .hero-btns {
        width: 100%;
    }

    h2 {
        font-size: 1.6rem;
    }

    .problem-header span {
        font-size: 1.1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    header {
        padding: 10px 0;
    }

    .logo {
        font-size: 0.75rem;
    }

    .logo img {
        width: 40px;
        margin-right: 0;
    }

    .logo div {
        display: none;
    }

    .header-btns .btn {
        padding: 10px 5px;
        font-size: 0.65rem;
        text-align: center;
    }

    .offer ul {
        grid-template-columns: 1fr;
    }

    .offer-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: var(--black);
        border: 1px solid #2a2a2a;
        border-radius: 8px;
        padding: 18px 20px;
        color: var(--white);
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        margin-bottom: 0;
    }

    .offer-toggle-arrow {
        color: var(--blue);
        font-size: 1rem;
        transition: transform 0.35s ease;
    }

    .offer-toggle.open .offer-toggle-arrow {
        transform: rotate(180deg);
    }

    .offer-collapsible {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.4s ease;
    }

    .offer-collapsible.open {
        grid-template-rows: 1fr;
    }

    .offer-collapsible-inner {
        overflow: hidden;
    }

    .offer-collapsible-inner ul {
        padding-top: 12px;
    }

    .pricing-tabs {
        display: flex;
        background: var(--grey);
        border: 1px solid #333;
        border-radius: 8px;
        padding: 4px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .pricing-tab {
        flex: 1;
        background: none;
        border: none;
        padding: 10px 16px;
        color: var(--text-muted);
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        cursor: pointer;
        border-radius: 6px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .pricing-tab.active {
        background: var(--blue);
        color: var(--white);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing-card {
        display: none;
        padding: 32px 24px;
    }

    .pricing-card.active {
        display: block;
    }

    .price-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .price-divider {
        display: none;
    }

    .price {
        font-size: 2.4rem;
    }

    .work-gallery {
        grid-template-columns: 1fr;
    }

    .hero-devices {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .device-desktop {
        width: 100%;
    }

    .device-mobile {
        width: 46%;
    }

    .social-item span {
        display: none;
    }

    .social-item {
        padding: 20px 24px;
        min-width: unset;
    }

    .trust-strip-grid {
        gap: 10px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-strip-grid span {
        font-size: 0.72rem;
    }

.header-btns .btn-outline {
        display: none;
    }

    .footer-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-size: 0.72rem;
    }

    .portfolio-card {
        flex-direction: column;
        gap: 32px;
        padding: 48px 24px;
    }

    .portfolio-devices {
        flex: none;
        width: 100%;
    }

    /* ── Mobile: show/hide toggle (no slider) ── */
    .portfolio-slider-track {
        overflow: visible;
        gap: 0;
    }

    .portfolio-slide {
        display: none;
        flex: none !important;
        width: 100%;
        align-items: flex-end;
        justify-content: center;
    }

    .portfolio-slide.active {
        display: flex;
    }

    .portfolio-slide:first-child .device-desktop {
        width: 84%;
    }

    .portfolio-slide:last-child .device-mobile {
        width: 52%;
    }

    /* ── Show preview toggle on mobile ── */
    .preview-toggle {
        display: flex;
    }

    .portfolio-card-info {
        width: 100%;
    }

    .portfolio-btn {
        width: 100%;
        display: block;
        text-align: center;
    }
}
