/* =========================================
RESET & VARIABLES
========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #000000b0;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
img { max-width: 100%; display: block; height: auto; }

:root {
    --black: #111111;
    --gray: #6f7278;
    --light-gray: #f6f6f4;
    --border: #e9e9e7;
    --blue: #0066cc;
    --blue-dark: #0052a3;
    --white: #ffffff;
    --container: 1180px;
    --radius: 24px;
}

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
section { padding: 110px 0; }

.section-label { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
h2 { font-size: clamp(32px, 5vw, 62px); line-height: 1.08; letter-spacing: -2px; font-weight: 700; color: var(--black); }
.section-description { color: var(--gray); font-size: 16px; max-width: 570px; margin-top: 22px; }

/* HEADER */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,.05); transition: .3s;
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 60px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 13px; font-weight: 500; color: #55585e; transition: .2s; }
.nav-links a:hover { color: #111; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.language { display: flex; align-items: center; padding: 3px; border: 1px solid var(--border); background: white; border-radius: 10px; }
.language button { border: 0; background: transparent; padding: 6px 8px; border-radius: 7px; font-size: 11px; font-weight: 700; color: #8b8e93; cursor: pointer; transition: .2s; }
.language button.active { background: #111; color: white; }
.nav-cta { padding: 11px 17px; border-radius: 10px; background: #111; color: white; font-size: 12px; font-weight: 700; white-space: nowrap; transition: .25s; }
.nav-cta:hover { background: var(--blue); transform: translateY(-2px); }
.menu { display: none; border: 0; background: none; font-size: 24px; cursor: pointer; padding: 5px; color: #111; }

/* HERO */
.hero { padding-top: 150px; padding-bottom: 90px; overflow: hidden; background: radial-gradient(circle at 85% 25%, rgba(40,100,255,.08), transparent 28%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-content { max-width: 650px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border: 1px solid var(--border); border-radius: 100px; font-size: 11px; font-weight: 600; color: #62656b; margin-bottom: 25px; background: white; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #35c982; flex-shrink: 0; }
.hero h1 { font-size: clamp(40px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -3px; color: var(--black); }
.hero h1 span.accent { color: #ff9500; } 
.hero-description { color: var(--gray); font-size: 17px; max-width: 550px; margin-top: 25px; }
.hero-buttons { display: flex; align-items: center; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; border-radius: 12px; font-size: 13px; font-weight: 700; transition: .25s; text-align: center; }
.btn-black { background: #111; color: white; }
.btn-black:hover { background: var(--blue); transform: translateY(-3px); }
.btn-white { border: 1px solid var(--border); background: white; color: #111; }
.btn-white:hover { border-color: #cfcfcf; transform: translateY(-3px); }

/* HERO VISUAL */
.hero-visual { height: 520px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; position: relative; }
.hero-visual::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.09); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 1; }
.hero-visual::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.09); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 1; }
.circle-line { position: absolute; width: 120%; height: 1px; background: rgba(0, 0, 0, 0.09); top: 50%; left: -10%; transform: translateY(-50%); pointer-events: none; z-index: 1; }
.hero-device-img { height: 75%; width: auto; object-fit: contain; position: relative; z-index: 10; transform: rotate(12deg); filter: drop-shadow(15px 25px 35px rgba(0,0,0,0.15)); transition: .4s ease; }
.hero-visual:hover .hero-device-img { transform: rotate(8deg) translateY(-6px); }
.visual-card { position: absolute; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 16px; padding: 12px 15px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06); z-index: 15; }
.visual-card strong { display: block; font-size: 13px; font-weight: 800; color: var(--black); }
.visual-card span { display: block; color: #85888d; font-size: 10px; margin-top: 2px; }
.visual-card.one { top: 30px; left: 0px; }
.visual-card.three { top: 40px; right: -20px; }
.visual-card.two { bottom: 20px; right: -10px; }

/* SERVICES (СЕТКА НА 5 КОЛОНОК) */
.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 40px;
}

.service-card-clean {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    position: relative;
}

.service-card-clean:hover {
    transform: translateY(-4px);
    border-color: #d0d0d0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.service-card-clean .card-image-wrap {
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: #f7f7f7;
    position: relative;
}

.service-card-clean .card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.service-card-clean:hover .card-image-wrap img {
    transform: scale(1.18);
}

.service-card-clean .card-number {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    font-size: 10px;
    font-weight: 700;
    color: #111;
    padding: 2px 6px;
    border-radius: 5px;
    z-index: 2;
}

.service-card-clean .card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.service-card-clean .card-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.service-card-clean .card-content p {
    font-size: 11px;
    color: #666;
    line-height: 1.35;
    margin-bottom: 10px;
}

.service-card-clean .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #111;
    border-top: 1px solid #f2f2f2;
    padding-top: 8px;
    margin-top: auto;
}

.service-card-clean .card-arrow {
    transition: transform 0.2s ease;
    color: #888;
}

.service-card-clean:hover .card-arrow {
    transform: translateX(4px);
    color: #111;
}

/* ABOUT & 3D SETUP */
.about {
    padding: 90px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.setup-tilt-container {
    perspective: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 30px 0;
}

.setup-scene {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    transform: rotateX(12deg) rotateY(0deg);
}

.monitor-device {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
}

.monitor-screen-box {
    width: 100%;
    max-width: 480px;
    height: 280px;
    background: #111113;
    border-radius: 14px;
    border: 4px solid #d1d1d6;
    padding: 6px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.monitor-camera {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 50%;
    z-index: 5;
}

.monitor-glare {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 20;
}

.setup-tilt-container:hover .monitor-glare { opacity: 1; }

.mon-content {
    text-align: center;
    margin: auto 0;
}

.mon-logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff9500;
}

.mon-logo span { color: #ffa533; }

.mon-sub {
    font-size: 12px;
    color: #86868b;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.monitor-stand-neck {
    width: 45px;
    height: 65px;
    background: linear-gradient(90deg, #aeaeb2 0%, #d1d1d6 50%, #aeaeb2 100%);
    position: relative;
    z-index: 2;
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.15);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.monitor-stand-base {
    width: 180px;
    height: 16px;
    background: linear-gradient(180deg, #e5e5ea 0%, #aeaeb2 100%);
    border-radius: 8px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 2px 2px rgba(255,255,255,0.8);
    transform: rotateX(75deg);
    transform-origin: top center;
    margin-top: -3px;
}

.desk-surface {
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.apple-keyboard {
    width: 240px;
    height: 70px;
    background: linear-gradient(180deg, #dfdfe4 0%, #c5c5ca 100%);
    border-radius: 7px;
    padding: 3px 4px;
    display: flex;
    flex-direction: column;
    gap: 1.5px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.16), inset 0 1px 1px rgba(255,255,255,0.95);
    transform: translateZ(30px) rotateX(-20deg);
    border: 1px solid #b5b5ba;
}

.kb-row {
    display: flex;
    gap: 1.5px;
    justify-content: center;
    width: 100%;
}

.kb-row.f-row { height: 14%; }
.kb-row:not(.f-row) { height: 21.5%; }

.kb-key {
    background: #fbfbfd;
    border-radius: 1.5px;
    height: 100%;
    flex-grow: 1;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), inset 0 -1px 1px rgba(0,0,0,0.05);
}

.kb-key.wide { flex-grow: 1.6; }
.kb-key.enter { flex-grow: 1.8; background: #f2f2f7; }
.kb-key.space { flex-grow: 6.5; }

.apple-mouse {
    width: 34px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5ea 100%);
    border-radius: 16px 16px 13px 13px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12), inset 0 2px 3px rgba(255,255,255,0.9);
    transform: translateZ(25px) rotateX(-20deg);
    border: 1px solid #d1d1d6;
    position: relative;
    align-self: center;
}

.apple-mouse::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 10px;
    background: #c7c7cc;
    border-radius: 1.5px;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.about-item {
    background: #ffffff;
    border: 1px solid #e5e5ea;
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.about-item:hover {
    border-color: #d1d1d6;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.about-check {
    width: 24px;
    height: 24px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 3px;
}

.about-item p {
    font-size: 13px;
    color: #6e6e73;
    margin: 0;
    line-height: 1.4;
}

/* PROCESS WITH PHOTOS */
.process-grid-photo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.process-card-photo {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.process-card-photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 102, 204, 0.2);
}

.process-image-box {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    background: #f5f5f7;
}

.process-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-card-photo:hover .process-image-box img {
    transform: scale(1.05);
}

.process-step-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    color: #1d1d1f;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    z-index: 2;
}

.process-card-body {
    padding: 14px 14px 16px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.process-card-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.process-card-body p {
    font-size: 12px;
    color: #6e6e73;
    line-height: 1.4;
    margin: 0;
}

/* GOOGLE REVIEWS */
.google-reviews-section {
    background: #ffffff;
    padding: 100px 0 80px 0;
}

.reviews-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.google-badge-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 18px;
}

.google-badge-box .stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 14px;
}

.google-badge-box strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
}

.google-badge-box span {
    color: #64748b;
    font-size: 13px;
}

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

.review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 15px;
}

.review-user h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.review-user span {
    font-size: 12px;
    color: #94a3b8;
}

.review-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 18px;
    flex-grow: 1;
}

.google-source-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.btn-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-all-reviews:hover {
    background: #0066cc;
    transform: translateY(-2px);
}

/* СЕКЦИЯ "GDZIE JESTEŚMY" */
.wwa-section { background: #f7f8fa; padding: 110px 0; }
.wwa-wrap { max-width: 1200px; margin: 0 auto; display: flex; gap: 60px; flex-wrap: wrap; align-items: stretch; padding: 0 20px; }
.wwa-left { flex: 1 1 320px; }
.wwa-left h2 { font-size: clamp(32px, 5vw, 44px); font-weight: 800; margin: 0 0 40px; letter-spacing: -1.5px; color: var(--black); }
.wwa-block { margin-bottom: 36px; }
.wwa-block h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; color: var(--black); }
.wwa-block p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--gray); }
.wwa-block a { color: var(--black); text-decoration: none; font-weight: 500; }
.wwa-block a:hover { text-decoration: underline; color: var(--blue); }
.wwa-right { flex: 1 1 420px; min-height: 480px; }
.wwa-right iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,.08); }

/* CTA CONTAINER & FORM */
.cta {
    padding: 90px 0;
    background: #ffffff;
}

.cta-container {
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    position: relative;
}

.cta-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    height: 100%;
}

.cta-info .section-label {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.cta-info h2 {
    color: #1d1d1f;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.cta-info p {
    color: #6e6e73;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.work-hours {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #1d1d1f;
    font-weight: 500;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.work-hours .dot {
    width: 8px;
    height: 8px;
    background-color: #34c759;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.2);
}

.quick-messengers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.messenger-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.messenger-btn.telegram { background-color: #0088cc; color: #ffffff; }
.messenger-btn.whatsapp { background-color: #25d366; color: #ffffff; }
.messenger-btn.phone { background-color: #ffffff; color: #1d1d1f; border: 1px solid #d2d2d7; }
.messenger-btn:hover { transform: translateY(-2px); opacity: 0.95; }

.cta-form-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-row-group-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.form-row-group-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.form-row {
    margin-bottom: 12px;
}

.form-row label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6e6e73;
    margin-bottom: 5px;
    letter-spacing: 0.2px;
}

.input-wrapper {
    position: relative;
    border-radius: 12px;
    background-color: #f5f5f7;
    border: 1px solid #e5e5ea;
    transition: all 0.2s ease;
}

.input-wrapper:focus-within {
    background-color: #ffffff;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 14px;
    font-size: 13px;
    color: #1d1d1f;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #aeaeb2;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2386868b%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 9px;
    padding-right: 32px;
}

.form-select option {
    background: #ffffff;
    color: #111111;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit-btn {
    width: 100%;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background-color: #0077ed;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.25);
}

/* SUCCESS TOAST */
.success-toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #161616;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 24px 34px;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 340px;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.success-toast.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.success-toast-icon {
    width: 42px;
    height: 42px;
    background: #35c982;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(53, 201, 130, 0.4);
}
.success-toast-text strong { display: block; font-size: 16px; color: #fff; letter-spacing: -0.3px; }
.success-toast-text span { display: block; font-size: 13px; color: #a2a5aa; margin-top: 4px; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 60px 0 25px; background: #fafafa; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer-description { color: var(--gray); font-size: 12px; max-width: 280px; margin-top: 12px; }
.footer-column h4 { font-size: 11px; margin-bottom: 14px; letter-spacing: 1px; color: #111; }
.footer-column a { display: block; color: var(--gray); font-size: 11px; margin-bottom: 8px; transition: color .2s; }
.footer-column a:hover { color: #111; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; color: #a0a3a7; font-size: 10px; flex-wrap: wrap; gap: 10px; }

/* ANIMATION */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MEDIA QUERIES */
@media (max-width: 1200px) {
    .services-grid-clean { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .hero-grid, .about-grid, .cta-container, .wwa-wrap { grid-template-columns: 1fr; gap: 40px; }
    .services-grid-clean { grid-template-columns: repeat(2, 1fr); }
    .form-row-group-3, .form-row-group-2 { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-header-wrap { flex-direction: column; align-items: flex-start; }
    .hero-visual { height: 440px; }
    .wwa-right, .wwa-right iframe { min-height: 360px; }
    .cta-container { padding: 35px 24px; }
}
@media (max-width: 768px) {
    .container { width: calc(100% - 24px); }
    section { padding: 70px 0; }
    .wwa-section { padding: 70px 0; }
    header { background: rgba(255,255,255,.95); }
    .nav { height: 68px; }
    .logo-img { height: 34px; }
    .nav-links { display: none; position: fixed; left: 12px; right: 12px; top: 76px; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; background: white; border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 20px 40px rgba(0,0,0,.12); z-index: 1001; }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 12px; font-size: 14px; border-radius: 8px; }
    .nav-links a:hover { background: var(--light-gray); }
    .menu { display: block; }
    .nav-cta { display: none; }
    .hero { padding-top: 110px; padding-bottom: 60px; }
    .hero h1 { font-size: 38px; letter-spacing: -2px; }
    .hero-description { font-size: 15px; }
    .hero-visual { height: 380px; }
    .services-header { display: block; margin-bottom: 35px; }
    .cta-container { padding: 30px 20px; }
    .success-toast { left: 20px; right: 20px; bottom: 20px; min-width: auto; }
}
@media (max-width: 576px) {
    .services-grid-clean,
    .process-grid-photo { grid-template-columns: 1fr; }
    .setup-scene { transform: scale(0.85); }
}
@media (max-width: 420px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .language button { padding: 5px 6px; font-size: 10px; }
}