:root {
    --sws-dark: #071827;
    --sws-dark-2: #0f172a;
    --sws-blue: #2563eb;
    --sws-cyan: #22d3ee;
    --sws-light: #f8fafc;
    --sws-white: #ffffff;
    --sws-text: #0f172a;
    --sws-muted: #64748b;
    --sws-border: rgba(148, 163, 184, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--sws-text);
    background: var(--sws-light);
}

.sws-navbar {
    background: rgba(7, 24, 39, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.navbar-brand {
    letter-spacing: -0.03em;
}

.nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #ffffff !important;
}

.btn-sws-outline {
    border: 1px solid rgba(34, 211, 238, 0.5);
    color: #ffffff;
    border-radius: 999px;
    padding: 9px 18px;
}

.btn-sws-outline:hover {
    background: rgba(34, 211, 238, 0.12);
    color: #ffffff;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 30%),
        linear-gradient(135deg, #071827 0%, #0f172a 55%, #111827 100%);
    color: #ffffff;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
}

.hero-glow-one {
    background: var(--sws-blue);
    top: 12%;
    right: 10%;
}

.hero-glow-two {
    background: var(--sws-cyan);
    bottom: 10%;
    left: 5%;
}

.hero-content,
.hero-preview {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    color: #a5f3fc;
    border: 1px solid rgba(34, 211, 238, 0.25);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
}

.hero-text {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn-sws-primary {
    background: linear-gradient(135deg, var(--sws-blue), var(--sws-cyan));
    border: 0;
    color: #ffffff;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 700;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.32);
}

.btn-sws-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.42);
}

.btn-sws-light {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 700;
}

.btn-sws-light:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.language-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-pills span {
    padding: 7px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    font-weight: 700;
}

.preview-browser {
    position: relative;
    padding: 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.browser-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 26px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.preview-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 130px;
    margin-bottom: 18px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.9);
    color: var(--sws-text);
    padding: 20px;
    border-radius: 22px;
}

.preview-card small {
    display: block;
    color: var(--sws-muted);
    font-weight: 700;
    margin-bottom: 6px;
}

.preview-card h3 {
    margin: 0;
    font-weight: 800;
}

.preview-status {
    background: #dcfce7;
    color: #166534;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.8rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.floating-card {
    position: absolute;
    z-index: 3;
    padding: 12px 18px;
    background: #ffffff;
    color: var(--sws-text);
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    animation: float 4s ease-in-out infinite;
}

.floating-card-one {
    top: 8%;
    right: -10px;
}

.floating-card-two {
    bottom: 8%;
    left: -10px;
    animation-delay: 1s;
}

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

.section-light,
.section-white,
.section-dark {
    padding: 100px 0;
}

.section-light {
    background: var(--sws-light);
}

.section-white {
    background: var(--sws-white);
}

.section-dark {
    background: var(--sws-dark);
    color: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading span,
.section-mini-title {
    display: inline-block;
    color: var(--sws-blue);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-heading h2,
.contact-box h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.section-heading p,
.contact-box p {
    color: var(--sws-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-heading.light p {
    color: rgba(255, 255, 255, 0.72);
}

.service-card,
.demo-card,
.process-item,
.contact-box {
    border-radius: 28px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--sws-border);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
    transition: 0.28s ease;
    height: 100%;
}

.service-card:hover,
.demo-card:hover,
.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 75px rgba(15, 23, 42, 0.12);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.2));
    color: var(--sws-blue);
    font-weight: 900;
    margin-bottom: 22px;
}

.service-card h3,
.demo-card h3,
.process-item h3 {
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.service-card p,
.demo-card p,
.process-item p {
    color: var(--sws-muted);
    line-height: 1.75;
    margin: 0;
}

.demo-tag {
    display: inline-block;
    padding: 7px 12px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.demo-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--sws-blue);
    font-weight: 800;
    text-decoration: none;
}

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

.process-item {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

.process-item strong {
    display: block;
    color: var(--sws-cyan);
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.process-item p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--sws-border);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--sws-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    background: #22c55e;
    color: #ffffff;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.35);
}

.whatsapp-float:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.sws-footer {
    padding: 34px 0;
    background: #ffffff;
    border-top: 1px solid var(--sws-border);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp 0.85s ease forwards;
}

.reveal-delay {
    animation-delay: 0.2s;
}

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

@media (max-width: 991px) {
    .sws-navbar {
        background: rgba(7, 24, 39, 0.96);
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding-top: 130px !important;
    }

    .process-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .section-light,
    .section-white,
    .section-dark {
        padding: 72px 0;
    }

    .service-card,
    .demo-card,
    .process-item,
    .contact-box {
        padding: 24px;
        border-radius: 24px;
    }

    .whatsapp-float {
        left: 16px;
        right: 16px;
        text-align: center;
    }
}

.package-card {
    position: relative;
    height: 100%;
    padding: 34px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--sws-border);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
    transition: 0.28s ease;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.13);
}

.package-card.featured {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 35%),
        linear-gradient(135deg, #071827, #0f172a);
    color: #ffffff;
    border-color: rgba(34, 211, 238, 0.25);
}

.package-label {
    display: inline-block;
    padding: 8px 13px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 800;
    font-size: 0.82rem;
    margin-bottom: 22px;
}

.package-card.featured .package-label {
    background: rgba(34, 211, 238, 0.15);
    color: #a5f3fc;
    border: 1px solid rgba(34, 211, 238, 0.28);
}

.package-card h3 {
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.package-card p {
    color: var(--sws-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.package-card.featured p {
    color: rgba(255, 255, 255, 0.72);
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}

.package-card li {
    position: relative;
    padding-left: 28px;
    color: var(--sws-text);
    font-weight: 600;
}

.package-card.featured li {
    color: rgba(255, 255, 255, 0.86);
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-weight: 900;
}

.btn-sws-package {
    width: 100%;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 800;
    color: var(--sws-blue);
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.btn-sws-package:hover {
    background: var(--sws-blue);
    color: #ffffff;
}

.why-section {
    position: relative;
    overflow: hidden;
}

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

.why-item {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--sws-border);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
    transition: 0.28s ease;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.11);
}

.why-item strong {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.2));
    color: var(--sws-blue);
    margin-bottom: 18px;
}

.why-item h3 {
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.why-item p {
    margin: 0;
    color: var(--sws-muted);
    line-height: 1.7;
}

@media (max-width: 767px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 26px;
        border-radius: 26px;
    }
}

.feature-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
    padding: 6px 0;
}

.feature-checks label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--sws-border);
    border-radius: 14px;
    background: #ffffff;
    color: var(--sws-text);
    font-weight: 600;
    cursor: pointer;
}

.feature-checks input {
    width: 16px;
    height: 16px;
    accent-color: var(--sws-blue);
}

.message-wrapper {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
}

.sws-alert {
    max-width: 760px;
    margin: 0 auto;
    border-radius: 18px;
    border: 0;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.16);
    pointer-events: auto;
}

@media (max-width: 575px) {
    .feature-checks {
        grid-template-columns: 1fr;
    }
}

.form-error {
    margin-top: 6px;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-error-box {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-form .form-control {
    min-height: 52px;
}

.contact-form textarea.form-control {
    min-height: 120px;
}

.flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
    flex-shrink: 0;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .navbar-nav {
    padding-right: 0;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .language-pills,
html[dir="rtl"] .browser-dots {
    justify-content: flex-start;
}

html[dir="rtl"] .section-heading {
    direction: rtl;
}

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea,
html[dir="rtl"] .contact-form select {
    text-align: right;
}

.sws-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sws-blue), var(--sws-cyan));
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.brand-text {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.04em;
}

@media (max-width: 575px) {
    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        font-size: 0.76rem;
    }

    .brand-text {
        font-size: 0.98rem;
    }
}

.legal-hero {
    min-height: 100vh;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 30%),
        var(--sws-light);
}

.legal-box {
    max-width: 920px;
    margin: 0 auto;
    padding: 44px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid var(--sws-border);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.legal-box h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.legal-box > p {
    color: var(--sws-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.legal-content {
    display: grid;
    gap: 24px;
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 850;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal-content p {
    color: var(--sws-muted);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 575px) {
    .legal-hero {
        padding: 120px 0 72px;
    }

    .legal-box {
        padding: 26px;
        border-radius: 26px;
    }
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--sws-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

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

@media (max-width: 767px) {
    .footer-links {
        justify-content: flex-start;
    }
}

