:root {
    --primary: #22c7ff;
    --primary-dark: #009ed4;
    --secondary: #775cff;
    --dark: #06101d;
    --dark-two: #0a1728;
    --dark-three: #101f33;
    --text: #ffffff;
    --muted: #aab8cb;
    --border: rgba(255, 255, 255, 0.09);
    --card: rgba(255, 255, 255, 0.045);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    --radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

section {
    scroll-margin-top: 110px;
}

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

.section {
    padding: 120px 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.section-heading h2,
.about-content h2,
.faq-heading h2,
.contact-content h2 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-heading h2 span,
.about-content h2 span,
.faq-heading h2 span,
.contact-content h2 span {
    color: var(--primary);
}

.section-heading p,
.faq-heading p {
    max-width: 650px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.header.scrolled {
    background: rgba(6, 16, 29, 0.92);
    border-color: var(--border);
    backdrop-filter: blur(20px);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar a {
    position: relative;
    color: #dce7f5;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.navbar a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.navbar a:hover {
    color: var(--primary);
}

.navbar a:hover::after {
    width: 100%;
}

.navbar .nav-button {
    padding: 13px 22px;
    color: var(--dark);
    background: var(--primary);
    border-radius: 10px;
}

.navbar .nav-button:hover {
    color: var(--dark);
    background: #ffffff;
    transform: translateY(-2px);
}

.menu-btn {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.menu-btn span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 180px 0 100px;
    background:
        radial-gradient(circle at 85% 15%, rgba(34, 199, 255, 0.16), transparent 32%),
        radial-gradient(circle at 10% 80%, rgba(119, 92, 255, 0.13), transparent 35%),
        linear-gradient(135deg, #06101d 0%, #0a1728 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    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: 60px 60px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-one {
    top: 140px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: rgba(34, 199, 255, 0.16);
}

.hero-glow-two {
    left: -160px;
    bottom: 40px;
    width: 320px;
    height: 320px;
    background: rgba(119, 92, 255, 0.14);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 16px;
    color: #cfefff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(34, 199, 255, 0.09);
    border: 1px solid rgba(34, 199, 255, 0.22);
    border-radius: 100px;
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(52px, 6.8vw, 94px);
    line-height: 0.98;
    letter-spacing: -4px;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-content > p {
    max-width: 680px;
    margin-top: 30px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.primary-button {
    color: var(--dark);
    background: var(--primary);
    border: 1px solid var(--primary);
}

.primary-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.secondary-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

.secondary-button:hover {
    color: var(--primary);
    border-color: rgba(34, 199, 255, 0.55);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 48px;
}

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

.hero-feature strong {
    color: #ffffff;
    font-size: 21px;
}

.hero-feature span {
    color: var(--muted);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: relative;
    z-index: 2;
    width: min(100%, 470px);
    overflow: hidden;
    background: rgba(12, 29, 49, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.visual-card-header {
    display: flex;
    gap: 8px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.visual-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.visual-card-body {
    padding: 40px;
}

.analytics-title {
    color: var(--muted);
    font-size: 15px;
}

.analytics-number {
    margin-top: 20px;
    color: var(--primary);
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -3px;
}

.analytics-label {
    margin-top: 5px;
    color: #dce7f5;
    font-size: 16px;
}

.chart {
    height: 190px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-top: 40px;
    padding: 20px 0 0;
    border-bottom: 1px solid var(--border);
}

.chart span {
    flex: 1;
    min-width: 18px;
    background: linear-gradient(180deg, var(--primary), rgba(34, 199, 255, 0.13));
    border-radius: 8px 8px 0 0;
    box-shadow: 0 0 25px rgba(34, 199, 255, 0.1);
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 20px;
    background: rgba(8, 21, 37, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(15px);
}

.floating-card-one {
    top: 70px;
    right: -20px;
}

.floating-card-two {
    left: -30px;
    bottom: 80px;
}

.floating-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--dark);
    font-weight: 900;
    background: var(--primary);
    border-radius: 12px;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    margin-bottom: 5px;
    font-size: 14px;
}

.floating-card small {
    color: var(--muted);
    font-size: 12px;
}

/* Brand Strip */

.brand-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #081422;
}

.brand-strip-content {
    padding: 32px 0;
    text-align: center;
}

.brand-strip-content p {
    color: var(--muted);
    line-height: 1.6;
}

.brand-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 34px;
    margin-top: 22px;
}

.brand-items span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services */

.services-section {
    background: var(--dark);
}

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

.service-card {
    position: relative;
    min-height: 350px;
    padding: 34px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.35s ease;
}

.service-card:hover {
    border-color: rgba(34, 199, 255, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.service-number {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(255, 255, 255, 0.12);
    font-size: 42px;
    font-weight: 800;
}

.service-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    background: rgba(34, 199, 255, 0.08);
    border: 1px solid rgba(34, 199, 255, 0.16);
    border-radius: 18px;
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 22px;
}

.service-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.service-card a {
    display: inline-block;
    margin-top: 28px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* About */

.about-section {
    background: var(--dark-two);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
}

.about-box {
    width: 100%;
    padding: 55px;
    background:
        radial-gradient(circle at top right, rgba(34, 199, 255, 0.16), transparent 40%),
        linear-gradient(145deg, #101f33, #081422);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.about-small-text {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-box h3 {
    margin-top: 26px;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.about-box h3 span {
    display: block;
    color: var(--primary);
}

.about-line {
    width: 90px;
    height: 4px;
    margin: 32px 0;
    background: var(--primary);
    border-radius: 20px;
}

.about-box p {
    max-width: 360px;
    color: var(--muted);
    line-height: 1.8;
}

.about-badge {
    position: absolute;
    right: -28px;
    bottom: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--dark);
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(34, 199, 255, 0.22);
}

.about-badge strong {
    font-size: 34px;
}

.about-badge span {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
}

.about-content > p {
    margin-top: 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 34px 0;
}

.about-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dce7f5;
    font-size: 14px;
}

.about-list span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
    background: var(--primary);
    border-radius: 50%;
}

/* Statistics */

.stats-section {
    padding: 75px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(34, 199, 255, 0.1), transparent 50%),
        var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-card {
    padding: 34px 24px;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat-card strong {
    display: block;
    color: var(--primary);
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -2px;
}

.stat-card span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team */

.team-section {
    background: var(--dark-two);
}

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

.team-card {
    padding: 40px 30px;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.3s ease;
}

.team-card:hover {
    border-color: rgba(34, 199, 255, 0.35);
    transform: translateY(-7px);
}

.team-avatar {
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    color: var(--dark);
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #8de7ff);
    border-radius: 50%;
    box-shadow: 0 20px 55px rgba(34, 199, 255, 0.18);
}

.team-card h3 {
    font-size: 23px;
    line-height: 1.35;
}

.team-card p {
    margin-top: 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

/* Process */

.process-section {
    background: var(--dark);
}

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

.process-card {
    min-height: 260px;
    padding: 34px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.3s ease;
}

.process-card:hover {
    border-color: rgba(34, 199, 255, 0.35);
    transform: translateY(-6px);
}

.process-card > span {
    display: inline-block;
    margin-bottom: 36px;
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
}

.process-card h3 {
    margin-bottom: 16px;
    font-size: 23px;
}

.process-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

/* FAQ */

.faq-section {
    background: var(--dark-two);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 70px;
}

.faq-heading {
    position: sticky;
    top: 145px;
}

.faq-heading p {
    margin-left: 0;
    margin-right: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    color: #ffffff;
    text-align: left;
    background: transparent;
    border: none;
}

.faq-question span {
    font-size: 17px;
    font-weight: 700;
}

.faq-question strong {
    color: var(--primary);
    font-size: 26px;
    transition: 0.3s ease;
}

.faq-item.active .faq-question strong {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.8;
}

/* Contact */

.contact-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(34, 199, 255, 0.12), transparent 30%),
        var(--dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 80px;
}

.contact-content {
    padding-top: 25px;
}

.contact-content > p {
    margin-top: 26px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.contact-details a,
.contact-address {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #dce7f5;
    text-decoration: none;
    line-height: 1.55;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-details span,
.contact-address span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--primary);
    background: rgba(34, 199, 255, 0.08);
    border: 1px solid rgba(34, 199, 255, 0.15);
    border-radius: 12px;
}

.contact-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #dce7f5;
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    color: #ffffff;
    background: #091727;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    outline: none;
    transition: 0.3s ease;
}

.form-group input,
.form-group select {
    height: 54px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 150px;
    padding: 16px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #75859a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(34, 199, 255, 0.08);
}

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

.form-button {
    width: 100%;
    border: none;
}

.form-note {
    margin-top: 16px;
    color: #8292a7;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.form-message {
    min-height: 22px;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.form-message.success {
    color: #66e69b;
}

/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #ffffff;
    background: #1fa855;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
}

.whatsapp-float span {
    font-size: 20px;
}

.whatsapp-float small {
    font-size: 13px;
    font-weight: 700;
}

/* Footer */

.footer {
    padding-top: 80px;
    background: #040b13;
    border-top: 1px solid var(--border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 60px;
}

.footer-logo {
    width: 190px;
    height: auto;
    object-fit: contain;
}

.footer-brand p {
    max-width: 340px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

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

.social-links a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-links h3 {
    margin-bottom: 9px;
    font-size: 17px;
}

.footer-links a,
.footer-links p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    color: #8796a9;
    font-size: 13px;
    border-top: 1px solid var(--border);
}

/* Reveal */

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

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

/* Tablet */

@media (max-width: 1150px) {
    .navbar {
        gap: 18px;
    }

    .navbar a {
        font-size: 14px;
    }

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

@media (max-width: 1050px) {
    .hero-container {
        grid-template-columns: 1fr 0.9fr;
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(50px, 7vw, 78px);
    }

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

    .about-container,
    .contact-container,
    .faq-container {
        gap: 50px;
    }

    .footer-container {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }

    .footer-links:last-child {
        grid-column: 2 / 4;
    }
}

/* Mobile Menu */

@media (max-width: 900px) {
    .section {
        padding: 90px 0;
    }

    .header-container {
        min-height: 95px;
    }

    .logo {
        width: 165px;
        height: auto;
    }

    .menu-btn {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(340px, 88%);
        height: 100vh;
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        padding: 135px 32px 40px;
        background: rgba(6, 16, 29, 0.98);
        border-left: 1px solid var(--border);
        backdrop-filter: blur(20px);
        transition: 0.35s ease;
    }

    .navbar.active {
        right: 0;
    }

    .navbar a {
        padding: 13px 10px;
        font-size: 18px;
    }

    .navbar a:not(.nav-button)::after {
        display: none;
    }

    .navbar .nav-button {
        margin-top: 10px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 90px;
    }

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

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

    .hero h1 {
        max-width: 780px;
        margin: 0 auto;
    }

    .hero-content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 600px);
        margin: 0 auto;
    }

    .about-container,
    .contact-container,
    .faq-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        gap: 65px;
    }

    .about-visual {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .about-content,
    .contact-content,
    .faq-heading {
        text-align: center;
    }

    .about-list {
        text-align: left;
    }

    .faq-heading {
        position: static;
    }

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

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

    .contact-details {
        align-items: center;
    }
}

/* Small Mobile */

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .about-content h2,
    .faq-heading h2,
    .contact-content h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .header-container {
        min-height: 88px;
    }

    .logo {
        width: 145px;
        height: auto;
    }

    .menu-btn {
        width: 43px;
        height: 43px;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero h1 {
        font-size: 49px;
        letter-spacing: -2.5px;
    }

    .hero-content > p {
        font-size: 17px;
    }

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

    .hero-buttons a {
        width: 100%;
    }

    .hero-features {
        gap: 22px;
    }

    .hero-feature {
        width: calc(33.333% - 15px);
    }

    .hero-visual {
        min-height: 430px;
    }

    .visual-card-body {
        padding: 28px;
    }

    .analytics-number {
        font-size: 52px;
    }

    .chart {
        height: 150px;
        gap: 9px;
    }

    .floating-card {
        padding: 12px 14px;
    }

    .floating-card-one {
        top: 30px;
        right: -5px;
    }

    .floating-card-two {
        left: -5px;
        bottom: 30px;
    }

    .floating-card strong {
        font-size: 12px;
    }

    .floating-card small {
        font-size: 10px;
    }

    .brand-items {
        gap: 14px 22px;
    }

    .services-grid,
    .process-grid,
    .about-list,
    .form-row,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .process-card {
        min-height: auto;
    }

    .about-visual {
        min-height: 440px;
    }

    .about-box {
        padding: 38px 28px;
    }

    .about-box h3 {
        font-size: 46px;
    }

    .about-badge {
        right: 10px;
        bottom: -10px;
        width: 125px;
        height: 125px;
    }

    .about-badge strong {
        font-size: 28px;
    }

    .about-list {
        max-width: 390px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-links:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
    }

    .whatsapp-float small {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero-badge {
        padding: 9px 13px;
        font-size: 11px;
    }

    .hero-feature {
        width: 100%;
    }

    .visual-card-body {
        padding: 23px;
    }

    .analytics-number {
        font-size: 45px;
    }

    .floating-card-two {
        left: 0;
    }

    .section-heading h2,
    .about-content h2,
    .faq-heading h2,
    .contact-content h2 {
        font-size: 34px;
    }

    .service-card,
    .process-card {
        padding: 28px 24px;
    }
}
