:root {
    --primary: #1368e8;
    --primary-dark: #0754c7;
    --secondary: #02c6df;
    --dark: #071b38;
    --dark-two: #0c274b;
    --text: #52627a;
    --heading: #102544;
    --light: #f5f9ff;
    --white: #ffffff;
    --border: #dce7f4;
    --success: #18b875;
    --shadow: 0 20px 55px rgba(23, 57, 103, 0.12);
    --radius: 22px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.soft-background {
    background: var(--light);
}

/* Header */

.header {
    height: 70px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 231, 244, 0.75);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 12px 35px rgba(18, 44, 78, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--heading);
}

.logo-icon {
    width: 70px;
    height: 70px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
    color: var(--white);
    font-size: 20px;
    /* box-shadow: 0 10px 24px rgba(19, 104, 232, 0.25); */
}

.logo > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo strong {
    font-size: 22px;
    font-weight: 800;
}

.logo small {
    margin-top: 4px;
    font-size: 10px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > a {
    font-size: 14px;
    font-weight: 700;
    color: var(--heading);
    transition: var(--transition);
}

.nav-menu > a:hover,
.nav-menu > a.active {
    color: var(--primary);
}

.nav-button {
    padding: 12px 20px;
    color: var(--white) !important;
    background: var(--primary);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--light);
    color: var(--heading);
    font-size: 20px;
}

/* Buttons */

.btn {
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #278aff);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(19, 104, 232, 0.25);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

/* Hero */

.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 25%, rgba(2, 198, 223, 0.22), transparent 30%),
        radial-gradient(circle at 15% 90%, rgba(19, 104, 232, 0.35), transparent 34%),
        linear-gradient(135deg, #06172e, #0a2b53 55%, #071d39);
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding: 90px 0;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.eyebrow {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    color: #bfefff;
    background: rgba(255, 255, 255, 0.07);
}

.hero h1 {
    margin-top: 24px;
    max-width: 720px;
    font-size: clamp(46px, 5vw, 74px);
    line-height: 1.08;
    letter-spacing: -3px;
    color: var(--white);
}

.hero h1 span,
.section-heading h2 span,
.about-content h2 span {
    color: var(--secondary);
}

.hero-text > p {
    max-width: 660px;
    margin-top: 24px;
    font-size: 18px;
    color: #c7d5e8;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-points {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.hero-points span {
    color: #d7e5f4;
    font-size: 14px;
    font-weight: 700;
}

.hero-points i {
    margin-right: 7px;
    color: var(--secondary);
}

/* Hero visual */

.hero-visual {
    min-height: 530px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-card {
    width: min(410px, 100%);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: rgba(9, 35, 70, 0.75);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 3;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d8e8f8;
    font-weight: 700;
}

.online-dot {
    padding: 5px 11px;
    border-radius: 20px;
    color: #b5ffdc;
    background: rgba(24, 184, 117, 0.17);
    font-size: 12px;
}

.speed-circle {
    width: 220px;
    height: 220px;
    margin: 34px auto;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 16px solid rgba(255, 255, 255, 0.07);
    outline: 3px solid rgba(2, 198, 223, 0.38);
    background:
        radial-gradient(circle, rgba(2, 198, 223, 0.18), transparent 65%);
}

.speed-circle i {
    font-size: 31px;
    color: var(--secondary);
}

.speed-circle strong {
    margin-top: 10px;
    font-size: 25px;
}

.speed-circle span {
    font-size: 12px;
    color: #abc0d8;
}

.performance-list {
    display: grid;
    gap: 10px;
}

.performance-list div {
    padding: 13px 15px;
    display: flex;
    justify-content: space-between;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.performance-list span {
    color: #afc2d7;
    font-size: 13px;
}

.performance-list strong {
    font-size: 13px;
    color: var(--white);
}

.floating-card {
    min-width: 180px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 15px;
    background: rgba(10, 38, 73, 0.88);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.floating-card i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--secondary);
    background: rgba(2, 198, 223, 0.13);
}

.floating-card span {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: #a9bfd6;
}

.floating-card strong {
    font-size: 13px;
    color: var(--white);
}

.floating-card-one {
    top: 75px;
    left: -40px;
}

.floating-card-two {
    right: -35px;
    bottom: 90px;
}

.network-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(2, 198, 223, 0.2);
}

.orbit-one {
    width: 520px;
    height: 520px;
}

.orbit-two {
    width: 630px;
    height: 630px;
}

/* Trust Bar */

.trust-bar {
    background: var(--white);
    box-shadow: 0 18px 50px rgba(14, 42, 77, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    padding: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--border);
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid strong {
    color: var(--heading);
    font-size: 18px;
}

.trust-grid span {
    font-size: 13px;
}

/* Section heading */

.section-heading {
    margin-bottom: 48px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.section-heading > div {
    max-width: 690px;
}

.section-heading h2,
.about-content h2 {
    margin-top: 12px;
    color: var(--heading);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.section-heading > p {
    max-width: 440px;
}

.section-heading.centered {
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: 50px;
    display: block;
    text-align: center;
}

.section-heading.centered p {
    max-width: 650px;
    margin: 18px auto 0;
}

/* Services */

.services-preview {
    background: var(--light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    min-height: 310px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::after {
    content: "";
    width: 130px;
    height: 130px;
    position: absolute;
    right: -55px;
    bottom: -65px;
    border-radius: 50%;
    background: rgba(19, 104, 232, 0.06);
}

.service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(19, 104, 232, 0.35);
    box-shadow: var(--shadow);
}

.service-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.featured-label {
    padding: 6px 14px;
    position: absolute;
    top: 18px;
    right: 18px;
    border-radius: 30px;
    color: var(--white);
    background: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.service-icon,
.solution-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: rgba(19, 104, 232, 0.1);
    font-size: 23px;
}

.service-card h3 {
    margin-top: 24px;
    color: var(--heading);
    font-size: 21px;
}

.service-card p {
    margin-top: 12px;
    font-size: 14px;
}

.service-card a,
.text-link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.center-button {
    margin-top: 45px;
    display: flex;
    justify-content: center;
}

/* About */

.about-preview {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.about-visual {
    position: relative;
}

.about-image-placeholder {
    min-height: 440px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 35px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 20%, rgba(2, 198, 223, 0.4), transparent 30%),
        linear-gradient(145deg, var(--dark), #10457a);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about-image-placeholder::before {
    content: "";
    width: 250px;
    height: 250px;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 50%;
    border: 35px solid rgba(255, 255, 255, 0.05);
}

.about-image-placeholder > i {
    margin-bottom: auto;
    align-self: center;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.13);
}

.about-image-placeholder strong {
    display: block;
    font-size: 27px;
}

.about-image-placeholder span {
    color: #bcd3e8;
}

.large-placeholder {
    min-height: 520px;
}

.experience-box {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    position: absolute;
    right: -35px;
    bottom: 45px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.experience-box i {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--primary);
}

.experience-box span {
    display: flex;
    flex-direction: column;
}

.experience-box strong {
    color: var(--heading);
}

.experience-box span span {
    font-size: 12px;
}

.about-content > p {
    margin-top: 20px;
}

.check-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--heading);
    font-size: 14px;
    font-weight: 700;
}

.check-list i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--success);
    background: rgba(24, 184, 117, 0.1);
}

/* Industries */

.industries-section {
    background: #f4f8fd;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.industry-card {
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(19, 104, 232, 0.35);
}

.industry-card i {
    font-size: 28px;
    color: var(--primary);
}

.industry-card h3 {
    margin-top: 20px;
    color: var(--heading);
}

.industry-card p {
    margin-top: 8px;
    font-size: 14px;
}

/* CTA */

.cta-section {
    padding: 75px 0;
    color: var(--white);
    background:
        radial-gradient(circle at right, rgba(2, 198, 223, 0.35), transparent 28%),
        linear-gradient(135deg, var(--primary-dark), var(--dark));
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-content > div:first-child {
    max-width: 720px;
}

.cta-content span {
    color: #9befff;
    font-weight: 700;
}

.cta-content h2 {
    margin-top: 8px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-phone i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--dark);
    background: var(--secondary);
}

.cta-phone span {
    display: flex;
    flex-direction: column;
    color: #bcd0e5;
    font-size: 12px;
}

.cta-phone strong {
    color: var(--white);
    font-size: 15px;
}

/* Page Banner */

.page-banner {
    padding: 105px 0;
    text-align: center;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(2, 198, 223, 0.28), transparent 25%),
        linear-gradient(135deg, #06172e, #0a3768);
}

.page-banner .container {
    max-width: 850px;
}

.light-tag {
    color: #86efff;
}

.page-banner h1 {
    margin-top: 17px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.12;
    letter-spacing: -2px;
}

.page-banner p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #c0d2e5;
    font-size: 17px;
}

.breadcrumb {
    margin-top: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #bed1e4;
}

.breadcrumb a {
    color: var(--secondary);
}

/* Foundation */

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.foundation-card {
    padding: 35px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 35px rgba(15, 49, 91, 0.08);
}

.foundation-card h3 {
    margin-top: 20px;
    color: var(--heading);
    font-size: 22px;
}

.foundation-card p {
    margin-top: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-grid article {
    padding: 28px;
    border-left: 3px solid var(--primary);
    background: var(--light);
}

.why-grid span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.why-grid h3 {
    margin-top: 13px;
    color: var(--heading);
    font-size: 18px;
}

.why-grid p {
    margin-top: 8px;
    font-size: 13px;
}

/* Detailed Services */

.detailed-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.detailed-service-card {
    padding: 38px;
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 40px rgba(17, 50, 91, 0.06);
    overflow: hidden;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 28px;
    color: rgba(19, 104, 232, 0.12);
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
}

.detailed-service-card h2 {
    margin-top: 24px;
    color: var(--heading);
    font-size: 25px;
}

.detailed-service-card > p {
    margin-top: 12px;
}

.detailed-service-card ul {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.detailed-service-card li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
}

.detailed-service-card li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    color: var(--success);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Solutions */

.solution-list {
    display: grid;
    gap: 28px;
}

.solution-row {
    padding: 40px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.solution-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.solution-row > div:last-child > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.solution-row h2 {
    margin-top: 6px;
    color: var(--heading);
}

.solution-row p {
    margin-top: 10px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    font-size: 29px;
}

.solution-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.solution-tags span {
    padding: 7px 12px;
    border-radius: 30px;
    color: var(--primary);
    background: rgba(19, 104, 232, 0.08);
    font-size: 12px;
    font-weight: 700;
}

/* Industry Details */

.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.industry-detail-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: var(--transition);
}

.industry-detail-card:hover {
    transform: translateY(-7px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.industry-detail-card i {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(19, 104, 232, 0.1);
    font-size: 23px;
}

.industry-detail-card h2 {
    margin-top: 22px;
    color: var(--heading);
    font-size: 19px;
}

.industry-detail-card p {
    margin-top: 10px;
    font-size: 13px;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
}

.contact-info h2 {
    margin-top: 12px;
    color: var(--heading);
    font-size: 40px;
    line-height: 1.2;
}

.contact-info > p {
    margin: 20px 0 32px;
}

.contact-item {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item > div {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: rgba(19, 104, 232, 0.1);
}

.contact-item span {
    display: flex;
    flex-direction: column;
}

.contact-item small {
    font-size: 11px;
}

.contact-item a {
    color: var(--heading);
    font-weight: 800;
}

.contact-support-box {
    margin-top: 35px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    color: var(--white);
    background: var(--dark);
}

.contact-support-box > i {
    font-size: 25px;
    color: var(--secondary);
}

.contact-support-box div {
    flex: 1;
}

.contact-support-box strong {
    display: block;
}

.contact-support-box p {
    color: #aabfd5;
    font-size: 12px;
}

.contact-support-box a {
    padding: 9px 13px;
    border-radius: 8px;
    color: var(--dark);
    background: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}

.contact-form {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 26px;
    color: var(--heading);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    margin-bottom: 7px;
    display: block;
    color: var(--heading);
    font-size: 13px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    outline: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--heading);
    background: #fbfdff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(19, 104, 232, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-button {
    width: 100%;
    border: 0;
}

.form-note {
    margin-top: 12px;
    text-align: center;
    font-size: 11px;
}

/* Footer */

.footer {
    padding-top: 75px;
    color: #adbed2;
    background: #06172e;
}

.footer-grid {
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
    gap: 55px;
}

.footer-logo {
    color: var(--white);
}

.footer-about p {
    max-width: 340px;
    margin-top: 20px;
    font-size: 14px;
}

.social-links {
    margin-top: 22px;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    background: var(--primary);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 16px;
}

.footer-column a {
    font-size: 13px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.contact-column a {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.contact-column i {
    margin-top: 5px;
    color: var(--secondary);
}

.footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

.simple-footer {
    padding-top: 0;
}

/* WhatsApp */

.whatsapp-button {
    width: 58px;
    height: 58px;
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: #20bd5a;
    box-shadow: 0 14px 35px rgba(32, 189, 90, 0.35);
    font-size: 29px;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.08);
}

/* Responsive */

@media (max-width: 1050px) {
    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav-menu {
        width: min(360px, 90%);
        padding: 30px;
        position: fixed;
        top: 70px;
        right: 0;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
        background: var(--white);
        box-shadow: -20px 30px 55px rgba(13, 37, 69, 0.18);
        transform: translateX(110%);
        visibility: hidden;
        transition: transform 0.4s ease, visibility 0.4s ease;
    }

    .nav-menu.open {
        right: 0;
        transform: translateX(0);
        visibility: visible;
    }

    .nav-menu > a {
        padding: 12px;
        border-radius: 8px;
    }

    .nav-menu > a:hover,
    .nav-menu > a.active {
        background: var(--light);
    }

    .nav-button {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        padding-bottom: 0;
        text-align: center;
    }

    .hero-text > p,
    .hero h1 {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-points {
        justify-content: center;
    }

    .hero-visual {
        margin-bottom: 80px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-detail-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .header {
        width: 100%;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
    }

    .navbar {
        height: 100%;
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
    }

    .container {
        width: min(100% - 28px, 1160px);
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .hero-text {
        padding-top: 75px;
    }

    .hero-visual {
        min-height: 490px;
    }

    .floating-card-one {
        left: 0;
    }

    .floating-card-two {
        right: 0;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid div:nth-child(2) {
        border-right: 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
    }

    .service-grid,
    .foundation-grid,
    .detailed-services,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .experience-box {
        right: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .solution-row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    body {
        padding-top: 74px;
    }

    .header {
        height: 74px;
    }

    .nav-menu {
        top: 74px;
        height: calc(100vh - 74px);
        height: calc(100dvh - 74px);
    }

    .logo strong {
        font-size: 19px;
    }

    .logo-icon {
        width: 70px;
        height: 40px;
    }

    .hero h1 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-points {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-main-card {
        padding: 18px;
    }

    .speed-circle {
        width: 180px;
        height: 180px;
    }

    .floating-card {
        min-width: 155px;
        padding: 10px;
    }

    .floating-card-one {
        top: 10px;
    }

    .floating-card-two {
        bottom: 25px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .page-banner {
        padding: 75px 0;
    }

    .page-banner h1 {
        font-size: 38px;
    }

    .industry-detail-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px 18px;
    }

    .contact-support-box {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 6px;
    }
}