/* GLOBAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #101b3a;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}

.section-padding {
    padding: 100px 0;
}


/* COLORS */

:root {
    --purple: #5b35e8;
    --purple-light: #8a6cff;
    --purple-bg: #f4f0ff;
    --dark: #101b3a;
    --text: #657087;
    --white: #ffffff;
    --border: #e9e7f1;
}


/* HEADER */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(91, 53, 232, 0.08);
    box-shadow: 0 5px 25px rgba(30, 20, 70, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo strong {
    display: block;
    font-size: 21px;
    line-height: 20px;
}

.logo small {
    display: block;
    color: #687187;
    font-size: 10px;
    margin-top: 4px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 38px;
}

.navbar>a {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: .3s;
}

.navbar>a:hover,
.navbar>a.active {
    color: var(--purple);
}

.navbar>a.active::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 38px;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
}

.nav-btn {
    background: var(--purple);
    color: white !important;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(91, 53, 232, .25);
}

.nav-btn:hover {
    transform: translateY(-2px);
}

#menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}


/* HERO */

.hero {
    min-height: 850px;
    padding-top: 70px;
    background:
        radial-gradient(circle at 75% 35%, #eee8ff 0, #ffffff 45%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    min-height: 520px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 25px;
}

.section-label span {
    width: 28px;
    height: 2px;
    background: var(--purple);
}

.hero h1 {
    font-size: clamp(48px, 5vw, 65px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--purple);
}

.hero-content>p {
    max-width: 510px;
    color: var(--text);
    font-size: 17px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    padding: 15px 25px;
    font-weight: 700;
    font-size: 14px;
    transition: .3s;
}

.primary-btn {
    background: var(--purple);
    color: white;
    box-shadow: 0 12px 25px rgba(91, 53, 232, .25);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(91, 53, 232, .35);
}

.white-btn {
    background: white;
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(30, 20, 70, .1);
}

.white-btn i {
    color: var(--purple);
}

.white-btn:hover {
    transform: translateY(-3px);
}


/* STATS */

.stats {
    display: flex;
    margin-top: 42px;
    gap: 28px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 25px;
    border-right: 1px solid #e3e1e9;
}

.stat-item:last-child {
    border: none;
}

.stat-item>i {
    font-size: 24px;
    color: var(--purple);
}

.stat-item strong {
    display: block;
    font-size: 22px;
}

.stat-item span {
    display: block;
    font-size: 11px;
    color: var(--text);
}


/* HERO LAPTOP */

.hero-image {
    position: relative;
    height: 560px;
}

.hero-circle {
    position: absolute;
    width: 530px;
    height: 530px;
    background: #eee8ff;
    border-radius: 50%;
    top: -10px;
    right: 20px;
}

.laptop {
    position: absolute;
    width: 650px;
    top: 65px;
    right: -80px;
    transform: rotate(-3deg);
    z-index: 3;
}

.laptop-screen {
    height: 385px;
    background: #111;
    border: 10px solid #080808;
    border-radius: 18px 18px 8px 8px;
    padding: 13px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
}

.laptop-screen::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin: -3px auto 5px;
}

.screen-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 7px;
    padding: 7px 10px;
    color: #20203b;
    background: white;
}

.screen-navbar strong {
    color: var(--purple);
}

.screen-navbar button {
    background: var(--purple);
    border: none;
    color: white;
    font-size: 6px;
    padding: 5px 9px;
    border-radius: 4px;
}

.screen-content {
    height: calc(100% - 32px);
    background:
        radial-gradient(circle at 80% 50%, #e9ddff, transparent 30%),
        white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px;
}

.screen-content h3 {
    font-size: 27px;
    line-height: 1.1;
    font-style: italic;
}

.screen-content h3 span {
    color: var(--purple);
}

.screen-content p {
    font-size: 8px;
    color: #697184;
    max-width: 160px;
    margin: 12px 0;
}

.screen-content button {
    border: none;
    color: white;
    background: var(--purple);
    padding: 7px 12px;
    border-radius: 5px;
    font-size: 7px;
}

.screen-card {
    width: 120px;
    height: 160px;
    background: #6942ef;
    border-radius: 15px;
    padding: 15px;
    transform: rotate(-7deg);
}

.ui-card {
    background: #1d2040;
    border-radius: 10px;
    height: 100%;
    padding: 13px;
    color: white;
}

.ui-card small {
    font-size: 8px;
}

.ui-card strong {
    display: block;
    margin-top: 30px;
    font-size: 10px;
}

.ui-card b {
    color: #6df2c1;
    font-size: 20px;
}

.chart {
    color: #6df2c1;
    margin-top: 20px;
    font-size: 18px;
}

.laptop-base {
    height: 35px;
    background: linear-gradient(#555, #aaa);
    border-radius: 0 0 25px 25px;
    position: relative;
    box-shadow: 0 15px 20px rgba(0, 0, 0, .25);
}

.laptop-base::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 7px;
    border-radius: 0 0 10px 10px;
    background: #555;
    left: 50%;
    transform: translateX(-50%);
}

.plant {
    position: absolute;
    left: 20px;
    bottom: 65px;
    width: 95px;
    height: 85px;
    border-radius: 50% 50% 45% 45%;
    background: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5ba66c;
    font-size: 55px;
    z-index: 5;
}

.dots {
    position: absolute;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(var(--purple-light) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: .35;
}

.dots-one {
    top: 50px;
    left: 60px;
}

.dots-two {
    right: -30px;
    top: 180px;
}


/* MINI SERVICE */

.service-mini {
    position: relative;
    z-index: 10;
    margin-top: -15px;
    background: white;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(35, 25, 80, .09);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mini-service {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mini-icon,
.service-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
}

.mini-icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
}

.mini-service h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.mini-service p {
    font-size: 12px;
    color: var(--text);
    line-height: 1.5;
}


/* ICON COLORS */

.purple {
    background: #eee7ff;
    color: #7047e9;
}

.orange {
    background: #fff0e6;
    color: #ff762d;
}

.green {
    background: #e4faef;
    color: #19bd7c;
}

.blue {
    background: #e8f1ff;
    color: #3278df;
}

.pink {
    background: #ffe8f3;
    color: #e84691;
}

.yellow {
    background: #fff5d9;
    color: #e8a914;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about h2,
.why-content h2 {
    font-size: 45px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.about p,
.why-content>p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 17px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0 30px;
}

.about-features div {
    font-size: 13px;
    font-weight: 600;
}

.about-features i {
    color: var(--purple);
    margin-right: 8px;
}

.about-image {
    position: relative;
    height: 480px;
}

.image-decoration {
    width: 85%;
    height: 85%;
    position: absolute;
    right: 0;
    top: 0;
    background: #eee8ff;
    border-radius: 30px;
}

.team-card {
    position: absolute;
    width: 85%;
    height: 85%;
    right: 35px;
    top: 40px;
    border-radius: 25px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 25px 50px rgba(20, 15, 50, .2);
}

.team-photo {
    height: 82%;
    background:
        linear-gradient(135deg, #333 0%, #777 50%, #222 100%);
    position: relative;
    overflow: hidden;
}

.person {
    position: absolute;
    bottom: -25px;
    width: 105px;
    height: 250px;
    border-radius: 50% 50% 0 0;
}

.person::before {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #c99472;
    top: -50px;
    left: 20px;
}

.person-one {
    left: 25px;
    background: #273244;
}

.person-two {
    left: 145px;
    background: #593c31;
}

.person-three {
    left: 265px;
    background: #333;
}

.person-four {
    left: 385px;
    background: #222;
}

.team-info {
    height: 18%;
    background: white;
    padding: 15px 20px;
}

.team-info strong {
    display: block;
}

.team-info span {
    font-size: 11px;
    color: var(--text);
}


/* SECTION HEADING */

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}

.section-label.center {
    justify-content: center;
}

.section-heading h2 {
    font-size: 43px;
    line-height: 1.15;
    margin-bottom: 15px;
}

.section-heading h2 span {
    color: var(--purple);
}

.section-heading p {
    color: var(--text);
    font-size: 15px;
}


/* SERVICES */

.services {
    background: #faf9fd;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #eeeef3;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 30, 90, .1);
    border-color: transparent;
}

.service-icon {
    width: 65px;
    height: 65px;
    font-size: 27px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 25px;
}

.service-card a {
    color: var(--purple);
    font-size: 13px;
    font-weight: 700;
}


/* WHY US */

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.why-image {
    position: relative;
    min-height: 470px;
}

.why-main-card {
    position: absolute;
    width: 85%;
    height: 380px;
    left: 0;
    top: 20px;
    background: linear-gradient(135deg, #5b35e8, #8565ff);
    border-radius: 30px;
    padding: 35px;
    color: white;
    box-shadow: 0 25px 50px rgba(91, 53, 232, .25);
}

.analytics-top {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.analytics-top strong {
    font-size: 28px;
}

.big-chart {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 35px;
    height: 220px;
    border-bottom: 2px solid rgba(255, 255, 255, .4);
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 100% 50px;
}

.chart-line {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chart-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-bottom: 4px solid white;
    transform: skewY(-13deg) rotate(-2deg);
    top: 50px;
}

.floating-card {
    position: absolute;
    bottom: 45px;
    right: 0;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(30, 20, 70, .15);
    font-size: 13px;
    font-weight: 700;
}

.floating-card i {
    color: #24c687;
    margin-right: 8px;
}

.why-content h2 span {
    color: var(--purple);
}

.why-list {
    margin-top: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.why-number {
    color: var(--purple);
    font-weight: 800;
    font-size: 15px;
}

.why-item h4 {
    margin-bottom: 5px;
}

.why-item p {
    color: var(--text);
    font-size: 13px;
}


/* PORTFOLIO */

.portfolio {
    background: #faf9fd;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 20, 70, .05);
}

.portfolio-image {
    height: 310px;
    position: relative;
    overflow: hidden;
}

.project-one {
    background:
        linear-gradient(135deg, #201943, #6c4bf1);
}

.project-two {
    background:
        linear-gradient(135deg, #e9e2ff, #9e84ff);
}

.project-three {
    background:
        linear-gradient(135deg, #d8fff0, #3bc797);
}

.project-four {
    background:
        linear-gradient(135deg, #dfeeff, #5894e8);
}

.portfolio-image::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    background: white;
    left: 15%;
    top: 15%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.project-one::after,
.project-two::after,
.project-three::after,
.project-four::after {
    content: "";
    position: absolute;
    width: 45%;
    height: 10px;
    background: var(--purple);
    left: 27%;
    top: 37%;
    border-radius: 10px;
}

.project-two::after {
    background: #ff762d;
}

.project-three::after {
    background: #18bb7a;
}

.project-four::after {
    background: #3278df;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(55, 35, 130, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
    z-index: 5;
}

.portfolio-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay a {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info span {
    color: var(--purple);
    font-size: 12px;
    font-weight: 700;
}

.portfolio-info h3 {
    margin: 7px 0;
}

.portfolio-info p {
    color: var(--text);
    font-size: 13px;
}

.center-button {
    text-align: center;
    margin-top: 45px;
}


/* PROCESS */

.process-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    align-items: center;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    color: var(--purple);
    font-weight: 800;
    margin-bottom: 10px;
}

.process-icon {
    width: 75px;
    height: 75px;
    background: #f0ebff;
    color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: auto auto 20px;
}

.process-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.process-item p {
    color: var(--text);
    font-size: 12px;
}

.process-line {
    height: 1px;
    border-top: 2px dashed #d8d1f5;
}


/* PRICING */

.pricing {
    background: #faf9fd;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    padding: 38px;
    border-radius: 22px;
    border: 1px solid #e8e5ef;
    position: relative;
}

.pricing-card.popular {
    background: var(--purple);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(91, 53, 232, .3);
}

.popular-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--purple);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
}

.pricing-card h3 {
    font-size: 22px;
}

.pricing-card>p {
    color: var(--text);
    font-size: 13px;
    margin: 7px 0 20px;
}

.pricing-card.popular>p {
    color: #ded7ff;
}

.price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

.price small {
    font-size: 11px;
    color: var(--text);
    font-weight: 500;
}

.pricing-card.popular .price small {
    color: #ded7ff;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    margin-bottom: 13px;
    font-size: 13px;
    color: var(--text);
}

.pricing-card.popular li {
    color: #eeeaff;
}

.pricing-card li i {
    color: #28c788;
    margin-right: 8px;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    border: 1px solid var(--purple);
    color: var(--purple);
    font-size: 13px;
    font-weight: 700;
}

.popular .pricing-btn {
    background: white;
    border-color: white;
}


/* TESTIMONIAL */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    border: 1px solid #eceaf2;
    padding: 32px;
    border-radius: 20px;
    background: white;
}

.quote {
    width: 42px;
    height: 42px;
    background: #eee8ff;
    color: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.testimonial-card>p {
    font-size: 14px;
    color: #4e5970;
    margin-bottom: 25px;
}

.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.client strong {
    display: block;
    font-size: 13px;
}

.client span {
    color: var(--text);
    font-size: 10px;
}


/* CTA */

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4f2bdc, #754cf2);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta .section-label {
    color: #ddd4ff;
    justify-content: center;
}

.cta .section-label span {
    background: #ddd4ff;
}

.cta h2 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta h2 span {
    color: #dcd2ff;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #e6e0ff;
}

.circle-one,
.circle-two {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}

.circle-one {
    width: 400px;
    height: 400px;
    left: -180px;
    top: -100px;
}

.circle-two {
    width: 500px;
    height: 500px;
    right: -200px;
    bottom: -300px;
}


/* CONTACT */

.contact {
    background: #faf9fd;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(35, 25, 80, .06);
}

.contact-info h3 {
    font-size: 27px;
    margin-bottom: 15px;
}

.contact-info>p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #eee8ff;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

.contact-item span {
    display: block;
    color: var(--text);
    font-size: 11px;
}

.contact-item strong {
    font-size: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #e4e1eb;
    border-radius: 10px;
    padding: 14px 15px;
    outline: none;
    font-size: 13px;
    resize: vertical;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px #eee9ff;
}


/* FOOTER */

.footer {
    background: #10152c;
    color: white;
    padding-top: 75px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer .logo strong {
    color: white;
}

.footer-about>p {
    color: #9da5bb;
    font-size: 13px;
    max-width: 330px;
    margin: 20px 0;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 38px;
    height: 38px;
    background: #1d2441;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8cce0;
    transition: .3s;
}

.socials a:hover {
    background: var(--purple);
    color: white;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: #9da5bb;
    font-size: 12px;
    margin-bottom: 12px;
    transition: .3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #292f48;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    color: #858da4;
    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-content {
        text-align: center;
    }

    .section-label {
        justify-content: center;
    }

    .hero-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .service-mini {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .why-grid {
        gap: 40px;
    }

}


@media (max-width: 850px) {

    .navbar {
        position: absolute;
        top: 80px;
        left: 5%;
        width: 90%;
        background: white;
        padding: 25px;
        border-radius: 18px;
        box-shadow: 0 20px 50px rgba(30, 20, 70, .15);
        display: none;
        flex-direction: column;
        gap: 20px;
    }

    .navbar>a.active::after {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    #menu-toggle:checked~.navbar {
        display: flex;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .why-content {
        text-align: center;
    }

    .about .section-label,
    .why-content .section-label {
        justify-content: center;
    }

    .about-features {
        text-align: left;
    }

    .about-image,
    .why-image {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .process-line {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .section-padding {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .hero-content>p {
        font-size: 14px;
    }

    .stats {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .stat-item {
        border: none;
        padding: 0;
    }

    .hero-image {
        height: 340px;
    }

    .hero-circle {
        width: 330px;
        height: 330px;
        right: 50%;
        transform: translateX(50%);
    }

    .laptop {
        width: 400px;
        right: 50%;
        transform: translateX(50%) rotate(-3deg);
        top: 45px;
    }

    .laptop-screen {
        height: 240px;
    }

    .screen-content {
        padding: 15px;
    }

    .screen-content h3 {
        font-size: 18px;
    }

    .screen-card {
        width: 75px;
        height: 100px;
    }

    .ui-card {
        padding: 8px;
    }

    .ui-card strong {
        margin-top: 10px;
    }

    .ui-card b {
        font-size: 13px;
    }

    .plant {
        width: 65px;
        height: 55px;
        font-size: 35px;
        left: 5px;
    }

    .service-mini {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .about h2,
    .why-content h2,
    .section-heading h2 {
        font-size: 34px;
    }

    .about-image {
        height: 350px;
    }

    .team-card {
        width: 90%;
        right: 5%;
        height: 85%;
    }

    .person {
        transform: scale(.75);
        transform-origin: bottom;
    }

    .person-one {
        left: 0;
    }

    .person-two {
        left: 70px;
    }

    .person-three {
        left: 145px;
    }

    .person-four {
        left: 220px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 250px;
    }

    .why-main-card {
        width: 90%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        max-width: 300px;
        margin: auto;
    }

    .cta h2 {
        font-size: 35px;
    }

    .contact-grid {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom div {
        justify-content: center;
    }

}