/* =====================================================
   COBAFORGE
   Main Styles
===================================================== */

:root {

    --green: #78c043;
    --green-dark: #5e9e2f;
    --green-soft: #edf7e7;

    --black: #111111;
    --dark: #171717;
    --gray-900: #252525;
    --gray-700: #5d5d5d;
    --gray-500: #858585;
    --gray-300: #dcdcdc;
    --gray-200: #e9e9e9;
    --gray-100: #f5f5f3;

    --white: #ffffff;

    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;

    --container: 1240px;

    --transition: 300ms cubic-bezier(.2,.8,.2,1);

}


/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Manrope", sans-serif;

    background: var(--white);

    color: var(--black);

    line-height: 1.6;

    overflow-x: hidden;

}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =====================================================
   UTILITIES
===================================================== */

.container {

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: auto;

}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;

    color: var(--gray-700);

}

.status-dot {

    width: 7px;
    height: 7px;

    background: var(--green);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px var(--green-soft);

}


.section-label {

    display: flex;

    gap: 12px;

    align-items: center;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;

    color: var(--gray-500);

}

.section-label span {

    color: var(--green);

}


/* =====================================================
   BUTTONS
===================================================== */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 15px 22px;

    border-radius: 100px;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);

}

.button span {
    transition: var(--transition);
}

.button:hover span {
    transform: translateX(4px);
}

.button-primary {

    background: var(--green);

    color: var(--black);

}

.button-primary:hover {

    background: var(--green-dark);

    color: white;

    transform: translateY(-2px);

}

.button-secondary {

    border: 1px solid var(--gray-300);

}

.button-secondary:hover {

    background: var(--gray-100);

    transform: translateY(-2px);

}

.button-light {

    background: white;

    color: var(--black);

}

.button-light:hover {

    background: var(--green);

    transform: translateY(-2px);

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255,255,255,.82);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0,0,0,.06);

}

.nav-container {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.logo {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: -.06em;

}

.logo-mark {

    width: auto;
    height: 30px;
    flex-shrink: 0;

}

.footer-brand .logo-mark {

    height: 26px;

}

.main-nav {

    display: flex;

    align-items: center;

    gap: 32px;

}

.main-nav a {

    font-size: 13px;

    color: var(--gray-700);

    transition: var(--transition);

}

.main-nav a:hover {

    color: var(--black);

}

.nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--black);

    color: white;

    padding: 12px 18px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}

.nav-cta:hover {

    background: var(--green);

    color: var(--black);

    transform: translateY(-2px);

}

.mobile-menu-button {

    display: none;

    background: none;

    border: none;

    font-size: 22px;

    cursor: pointer;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 820px;

    padding-top: 82px;

    position: relative;

    overflow: hidden;

    background: var(--white);

}

.hero-container {

    min-height: 738px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}

.hero-content {

    position: relative;

    z-index: 2;

}

.hero h1 {

    margin-top: 24px;

    max-width: 700px;

    font-size: clamp(52px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -.065em;

    font-weight: 800;

}

.hero h1 span {

    display: block;

    color: var(--green);

}

.hero-description {

    max-width: 570px;

    margin-top: 30px;

    font-size: 17px;

    line-height: 1.75;

    color: var(--gray-700);

}

.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 34px;

}

.hero-services {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 42px;

}

.hero-services span {

    padding: 8px 13px;

    border: 1px solid var(--gray-200);

    border-radius: 100px;

    color: var(--gray-500);

    font-size: 11px;

    font-weight: 600;

}

.hero-visual {

    position: relative;

    height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.visual-window {

    width: 100%;

    max-width: 590px;

    border-radius: 22px;

    overflow: hidden;

    background: white;

    border: 1px solid var(--gray-200);

    box-shadow:
        0 40px 100px rgba(0,0,0,.12);

    transform: rotate(1deg);

}

.window-bar {

    height: 42px;

    display: flex;

    align-items: center;

    padding: 0 15px;

    border-bottom: 1px solid var(--gray-200);

}

.window-dots {

    display: flex;

    gap: 6px;

}

.window-dots span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gray-300);

}

.window-url {

    margin: auto;

    color: var(--gray-500);

    font-size: 10px;

}

.window-content {

    padding: 28px;

}

.window-content--video {

    padding: 0;

    line-height: 0;

}

.hero-video {

    width: 100%;

    height: 380px;

    object-fit: cover;

    display: block;

}


.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: 15px;

    padding: 13px 15px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.1);

}

.floating-card strong {

    display: block;

    font-size: 11px;

}

.floating-card small {

    display: block;

    font-size: 9px;

    color: var(--gray-500);

}

.floating-icon {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    background: var(--green-soft);

    border-radius: 10px;

}

.floating-icon svg {

    width: 16px;
    height: 16px;

}

.check {

    display: grid;

    place-items: center;

    color: var(--green-dark);

}

.check svg {

    width: 15px;
    height: 15px;

}

.automation-card {

    left: -10px;

    bottom: 75px;

}

.growth-card {

    right: -5px;

    top: 90px;

}

.growth-icon {

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    background: var(--black);

    color: white;

    border-radius: 9px;

}

.growth-icon svg {

    width: 16px;
    height: 16px;

}

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(0,0,0,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 20%,
            black 80%,
            transparent
        );

}

.hero-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: var(--green);

    filter: blur(150px);

    opacity: .07;

}

.hero-glow-one {

    right: -150px;
    top: 100px;

}

.hero-glow-two {

    left: -200px;
    bottom: -250px;

}


/* =====================================================
   INTRO
===================================================== */

.intro-section {

    padding: 130px 0;

    border-top: 1px solid var(--gray-200);

}

.intro-layout {

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 100px;

}

.intro-text {

    max-width: 850px;

}

.intro-text h2,
.section-heading h2,
.solutions-heading h2,
.showcase-header h2,
.process-heading h2,
.about-content h2 {

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -.055em;

}

.intro-text h2 span,
.section-heading h2 span,
.solutions-heading h2 span,
.showcase-header h2 span,
.process-heading h2 span,
.about-content h2 span {

    color: var(--gray-500);

}

.solutions-section .solutions-heading h2 span {

    color: transparent;

    background-image: linear-gradient(
        90deg,
        var(--gray-500) 0%,
        var(--gray-500) 40%,
        var(--white) 60%,
        var(--white) 100%
    );

    background-size: 320% 100%;

    background-position: 100% 0;

    -webkit-background-clip: text;

    background-clip: text;

    transition: background-position 3.8s linear;

}

.solutions-section .solutions-heading h2 span.sweep-active {

    background-position: 0% 0;

}

.showcase-section .showcase-header h2 .text-sweep {

    color: transparent;

    background-size: 320% 100%;

    background-position: 100% 0;

    -webkit-background-clip: text;

    background-clip: text;

    transition: background-position 1.9s linear;

}

.showcase-section .showcase-header h2 .text-sweep--dark {

    background-image: linear-gradient(
        90deg,
        var(--black) 0%,
        var(--black) 40%,
        var(--white) 60%,
        var(--white) 100%
    );

}

.showcase-section .showcase-header h2 .text-sweep--light {

    background-image: linear-gradient(
        90deg,
        var(--gray-500) 0%,
        var(--gray-500) 40%,
        var(--white) 60%,
        var(--white) 100%
    );

    transition-delay: 1.9s;

}

.showcase-section .showcase-header h2 .text-sweep.sweep-active {

    background-position: 0% 0;

}

.intro-text p {

    max-width: 650px;

    margin-top: 30px;

    color: var(--gray-700);

    font-size: 17px;

}


/* =====================================================
   PROBLEM
===================================================== */

.problem-section {

    padding: 140px 0;

    background: var(--gray-100);

}

.problem-section .section-heading {

    perspective: 1200px;

}

.tilt-3d {

    display: inline-block;

    transform-style: preserve-3d;

    will-change: transform;

    cursor: grab;

    filter: drop-shadow(0 25px 35px rgba(0,0,0,.18));

}

.tilt-3d:active {

    cursor: grabbing;

}

.tilt-3d__line {

    position: relative;

    display: block;

    transform-style: preserve-3d;

}

.tilt-3d__line::before {

    content: attr(data-text);

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;

    z-index: -1;

}

.problem-section .tilt-3d__line--dark {

    transform: translateZ(30px);

    background-image: linear-gradient(180deg, #4a4a4a 0%, var(--black) 60%, #000000 100%);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}

.problem-section .tilt-3d__line--dark::before {

    color: var(--gray-500);

    transform: translateZ(-22px);

}

.problem-section .tilt-3d__line--light {

    transform: translateZ(30px);

    background-image: linear-gradient(180deg, var(--gray-300) 0%, var(--gray-500) 55%, var(--gray-700) 100%);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}

.problem-section .tilt-3d__line--light::before {

    color: var(--gray-300);

    transform: translateZ(-22px);

}

.section-heading {

    max-width: 800px;

}

.section-heading.centered {

    margin: auto;

    text-align: center;

}

.section-heading h2 {

    margin-top: 22px;

}

.section-heading p {

    margin-top: 25px;

    max-width: 650px;

    color: var(--gray-700);

}

.section-heading.centered p {

    margin-left: auto;
    margin-right: auto;

}

.benefits-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}

.benefit-card {

    position: relative;

    overflow: hidden;

    padding: 40px;

    min-height: 320px;

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: var(--radius-medium);

    transition: var(--transition);

}

.benefit-card::before {

    content: '';

    position: absolute;

    left: -70px;
    top: -70px;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(120,192,67,.14), transparent 70%);

    pointer-events: none;

}

.featured-benefit::before {

    background: radial-gradient(circle, rgba(120,192,67,.2), transparent 70%);

}

.benefit-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);

}

.featured-benefit {

    background: var(--black);

    color: white;

}

.benefit-icon {

    position: relative;

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: var(--green-soft);

    color: var(--black);

    margin-bottom: 28px;

    transition: var(--transition);

}

.benefit-card:hover .benefit-icon {

    transform: scale(1.08) rotate(-6deg);

}

.benefit-icon svg {

    width: 24px;
    height: 24px;

}

.benefit-card h3 {

    font-size: 23px;

    letter-spacing: -.04em;

}

.benefit-card p {

    margin-top: 12px;

    font-size: 14px;

    color: var(--gray-700);

}

.featured-benefit p {

    color: #bcbcbc;

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    padding: 150px 0;

}

.services-grid {

    margin-top: 75px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.service-card {

    position: relative;

    min-height: 560px;

    overflow: hidden;

    padding: 32px;

    background: var(--gray-100);

    border-radius: var(--radius-large);

    transition: var(--transition);

}

.service-card:hover {

    transform: translateY(-7px);

}

.service-large {

    background: var(--black);

    color: white;

}

.service-top {

    display: flex;

    justify-content: flex-end;

}

.service-arrow {

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border: 1px solid var(--gray-300);

    border-radius: 50%;

    transition: var(--transition);

}

.service-card:hover .service-arrow {

    background: var(--green);

    color: var(--black);

    border-color: var(--green);

}

.service-content {

    position: relative;

    z-index: 2;

    margin-top: 60px;

}

.email-service .service-content,
.service-large .service-content,
.automation-service .service-content,
.domain-service .service-content {

    margin-top: 28px;

}

.email-service .service-content,
.domain-service .service-content {

    transform: translateY(-55px);

}

.service-large .service-content,
.automation-service .service-content {

    transform: translateY(-70px);

}

.service-icon {

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    background: var(--green-soft);

    color: var(--black);

    border-radius: 14px;

}

.service-icon svg {

    width: 24px;
    height: 24px;

}

.service-content h3 {

    margin-top: 25px;

    font-size: 35px;

    letter-spacing: -.05em;

}

.service-content p {

    max-width: 450px;

    margin-top: 15px;

    color: var(--gray-700);

    font-size: 14px;

}

.service-large .service-content p {

    color: #aaa;

}

.service-list {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 25px;

}

.service-list span {

    padding: 7px 10px;

    border: 1px solid var(--gray-300);

    border-radius: 100px;

    font-size: 10px;

}

.service-large .service-list span {

    border-color: #3d3d3d;

    color: #c9c9c9;

}

.service-image {

    position: absolute;

    right: 30px;
    bottom: 30px;

    width: 75%;

    height: 240px;

    border-radius: 18px;

    overflow: hidden;

    transform: rotate(-2deg);

    box-shadow:
        0 30px 70px rgba(0,0,0,.3);

}

.service-image img,
.service-image video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center 35%;

}

.automation-service {

    background: var(--green);

}

.automation-service .service-icon {

    background: white;

}


.domain-search {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 25px;

    width: 100%;

    max-width: 480px;

    padding: 24px 30px;

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: 100px;

    font-size: 21px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.06);

}

.domain-search-icon {

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    color: var(--gray-500);

}

.domain-search strong {

    color: var(--green-dark);

}


/* =====================================================
   CORREOS / PRICING
===================================================== */

.pricing-section {

    padding: 150px 0;

    background: var(--gray-100);

}

.pricing-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    align-items: stretch;

}

.plan-card {

    display: flex;

    flex-direction: column;

    position: relative;

    padding: 40px;

    background: white;

    border: 1px solid var(--gray-200);

    border-radius: var(--radius-medium);

    transition: var(--transition);

}

.plan-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);

}

.plan-featured {

    background: var(--black);

    color: white;

    border-color: var(--black);

}

.plan-badge {

    position: absolute;

    top: -13px;
    left: 40px;

    padding: 6px 14px;

    background: var(--green);

    color: var(--black);

    border-radius: 100px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .05em;

}

.plan-card h3 {

    font-size: 23px;

    letter-spacing: -.04em;

}

.plan-desc {

    margin-top: 6px;

    font-size: 13px;

    color: var(--gray-500);

}

.plan-featured .plan-desc {

    color: #a8a8a8;

}

.plan-price {

    margin-top: 28px;

    font-size: 42px;

    font-weight: 800;

    letter-spacing: -.04em;

}

.plan-price span {

    font-size: 12px;

    font-weight: 600;

    color: var(--gray-500);

    letter-spacing: 0;

}

.plan-featured .plan-price span {

    color: #a8a8a8;

}

.plan-renewal {

    margin-top: 8px;

    font-size: 12px;

    color: var(--gray-500);

}

.plan-featured .plan-renewal {

    color: #a8a8a8;

}

.plan-list {

    margin-top: 26px;

    margin-bottom: 34px;

    flex-grow: 1;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.plan-list li {

    position: relative;

    padding-left: 22px;

    font-size: 13px;

    color: var(--gray-700);

}

.plan-featured .plan-list li {

    color: #cfcfcf;

}

.plan-list li::before {

    content: '';

    position: absolute;

    left: 0;
    top: 6px;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--green-soft);

    box-shadow: inset 0 0 0 3px var(--green);

}

.plan-featured .plan-list li::before {

    background: transparent;

    box-shadow: inset 0 0 0 3px var(--green);

}

.plan-cta {

    width: 100%;

}

.plan-featured .button-secondary {

    border-color: #3d3d3d;

    color: white;

}

.plan-note {

    margin-top: 40px;

    text-align: center;

    font-size: 12px;

    color: var(--gray-500);

}


/* =====================================================
   SOLUTIONS
===================================================== */

.solutions-section {

    padding: 150px 0;

    background: var(--black);

    color: white;

}

.solutions-heading {

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 100px;

}

.solutions-heading h2 {

    max-width: 800px;

}

.solutions-heading p {

    max-width: 620px;

    margin-top: 25px;

    color: #a8a8a8;

}

.solutions-list {

    margin-top: 100px;

}

.solution-item {

    display: grid;

    grid-template-columns: 80px 1.5fr 1fr;

    gap: 40px;

    align-items: center;

    padding: 35px 0;

    border-top: 1px solid #333;

}

.solutions-list .solution-item {

    transition:
        padding-left .6s cubic-bezier(.25,.1,.25,1),
        opacity 700ms ease,
        transform 700ms cubic-bezier(.2,.8,.2,1);

}

.solution-item:last-child {

    border-bottom: 1px solid #333;

}

.solution-number {

    color: var(--green);

    font-size: 12px;

}

.solution-main h3 {

    font-size: 25px;

    letter-spacing: -.04em;

    transition: color .6s cubic-bezier(.25,.1,.25,1);

}

.solution-main p {

    margin-top: 8px;

    color: #999;

    font-size: 13px;

}

.solution-example {

    justify-self: end;

    color: #777;

    font-family: monospace;

    font-size: 11px;

}

.solution-item:hover {

    padding-left: 15px;

}

.solution-item:hover .solution-main h3 {

    color: var(--green);

}


/* =====================================================
   SHOWCASE
===================================================== */

.showcase-section {

    padding: 150px 0;

}

.showcase-header {

    max-width: 750px;

}

.showcase-header h2 {

    margin-top: 22px;

}

.showcase-visual {

    position: relative;

    height: 650px;

    margin-top: 70px;

    overflow: hidden;

    border-radius: var(--radius-large);

    background: var(--black);

}

.showcase-photo {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.03);

}

.showcase-scrim {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10,10,10,.55),
            rgba(10,10,10,.05) 30%,
            rgba(10,10,10,.1) 60%,
            rgba(10,10,10,.75)
        );

}

.showcase-panel {

    position: absolute;

    inset: 40px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}

.showcase-spacer {

    flex-grow: 1;

}

.showcase-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.showcase-chip {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 16px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 100px;

    color: white;

    font-size: 11px;

    font-weight: 700;

}

.showcase-chip--dark {

    background: rgba(120,192,67,.12);

    border-color: rgba(120,192,67,.3);

    color: var(--green);

    font-family: monospace;

}

.showcase-toast {

    align-self: flex-start;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 20px;

    background: white;

    border-radius: 15px;

    box-shadow: 0 20px 50px rgba(0,0,0,.35);

    animation: floatToast 4s ease-in-out infinite;

}

.showcase-toast strong {

    display: block;

    font-size: 12px;

    color: var(--black);

}

.showcase-toast small {

    display: block;

    font-size: 10px;

    color: var(--gray-500);

}

.showcase-overlay {

    position: absolute;

    left: 40px;
    bottom: 16px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.4);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .15em;

}

.showcase-overlay span {

    color: var(--green);

}


/* =====================================================
   PROJECTS
===================================================== */

.projects-section {

    padding: 150px 0;

    background: var(--gray-100);

}

.projects-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 18px;

}

.project-card {

    display: block;

    overflow: hidden;

    border-radius: var(--radius-medium);

    background: white;

    border: 1px solid var(--gray-200);

    transition: var(--transition);

}

.project-card:hover {

    box-shadow: 0 25px 60px rgba(0,0,0,.1);

}

.project-main {

    grid-row: span 2;

}

.project-image {

    height: 350px;

    overflow: hidden;

}

.project-main .project-image {

    height: 600px;

}

.project-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 700ms cubic-bezier(.2,.8,.2,1);

}

.project-card:hover img {

    transform: scale(1.05);

}

.project-info {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 23px;

}

.project-category {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;

    color: var(--green-dark);

}

.project-info--detailed {

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 18px;

    padding: 28px;

}

.project-info__top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

}

.project-info__desc {

    max-width: 420px;

    font-size: 14px;

    color: var(--gray-700);

}

.project-info--detailed .service-list {

    margin-top: 0;

}

.project-info h3 {

    margin-top: 4px;

    font-size: 19px;

}

.project-arrow {

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border: 1px solid var(--gray-200);

    border-radius: 50%;

}


/* =====================================================
   PROCESS
===================================================== */

.process-section {

    padding: 150px 0;

}

.process-heading {

    max-width: 750px;

}

.process-heading h2 {

    margin-top: 22px;

}

.process-grid {

    margin-top: 80px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

}

.process-item {

    padding: 25px;

    border-left: 1px solid var(--gray-300);

}

.process-grid .process-item.reveal {

    transform: translateY(45px);

    transition:
        opacity 1.6s ease,
        transform 1.6s cubic-bezier(.16,.8,.24,1);

}

.process-grid .process-item.reveal.revealed {

    transform: translateY(0);

}

.process-grid .process-item:nth-child(1) {

    transition-delay: 0s;

}

.process-grid .process-item:nth-child(2) {

    transition-delay: .35s;

}

.process-grid .process-item:nth-child(3) {

    transition-delay: .7s;

}

.process-grid .process-item:nth-child(4) {

    transition-delay: 1.05s;

}

.process-item > span {

    color: var(--green-dark);

    font-size: 11px;

    font-weight: 800;

}

.process-item h3 {

    margin-top: 50px;

    font-size: 22px;

    letter-spacing: -.04em;

}

.process-item p {

    margin-top: 12px;

    font-size: 13px;

    color: var(--gray-700);

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    padding: 150px 0;

    background: var(--gray-100);

}

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

}

.about-image {

    position: relative;

    height: 650px;

    border-radius: var(--radius-large);

    overflow: hidden;

}

.about-image > img {

    height: 100%;

    object-fit: cover;

    object-position: 32% 42%;

}

.about-badge {

    position: absolute;

    right: 30px;
    bottom: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 18px;

    background: var(--black);

    border-radius: 15px;

    box-shadow: 0 15px 35px rgba(0,0,0,.25);

}

.about-badge__logo {

    width: 42px;

    height: auto;

}

.about-content p {

    max-width: 560px;

    margin-top: 25px;

    color: var(--gray-700);

    font-size: 15px;

}

.text-link {

    display: inline-block;

    margin-top: 30px;

    color: var(--green-dark);

    font-size: 14px;

    font-weight: 800;

}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    position: relative;

    padding: 170px 0;

    overflow: hidden;

    background: var(--black);

    color: white;

    text-align: center;

}

.cta-container {

    position: relative;

    z-index: 2;

}

.cta-label {

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .15em;

}

.cta-section h2 {

    margin-top: 20px;

    font-size: clamp(60px, 9vw, 120px);

    line-height: .9;

    letter-spacing: -.07em;

}

.cta-section h2 span {

    color: var(--green);

}

.cta-section p {

    max-width: 520px;

    margin: 35px auto;

    color: #999;

}

.cta-background {

    position: absolute;

    inset: 0;

}

.cta-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: var(--green);

    filter: blur(180px);

    opacity: .12;

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    background: var(--black);

    color: white;

    border-top: 1px solid #2c2c2c;

}

.footer-main {

    display: flex;

    justify-content: space-between;

    padding: 70px 0;

}

.footer-brand p {

    max-width: 300px;

    margin-top: 15px;

    color: #888;

    font-size: 13px;

}

.footer-links {

    display: flex;

    gap: 100px;

}

.footer-links > div {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.footer-title {

    margin-bottom: 8px;

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .12em;

}

.footer-links a {

    color: #aaa;

    font-size: 12px;

}

.footer-links a:hover {

    color: white;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding: 20px 0;

    border-top: 1px solid #2c2c2c;

    color: #666;

    font-size: 10px;

}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes floatToast {

    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }

}

.automation-card {

    animation: float 5s ease-in-out infinite;

}

.growth-card {

    animation: float 6s ease-in-out infinite reverse;

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(.2,.8,.2,1);

}

.reveal.revealed {

    opacity: 1;

    transform: translateY(0);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-container {

        grid-template-columns: 1fr;

        padding-top: 80px;

    }

    .hero {

        min-height: auto;

        padding-bottom: 100px;

    }

    .hero-visual {

        height: 500px;

    }

    .hero-video {

        height: 320px;

    }

    .intro-layout,
    .solutions-heading,
    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .benefits-grid {

        grid-template-columns: 1fr;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .service-large {

        grid-row: auto;

    }

    .pricing-grid {

        grid-template-columns: 1fr;

    }

    .projects-grid {

        grid-template-columns: 1fr;

    }

    .project-main {

        grid-row: auto;

    }

    .process-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }

}


@media (max-width: 650px) {

    .container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );

    }

    .nav-container {

        height: 70px;

    }

    .nav-cta {

        display: none;

    }

    .hero {

        padding-top: 70px;

    }

    .hero h1 {

        font-size: 50px;

    }

    .hero-description {

        font-size: 15px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-services {

        gap: 6px;

    }

    .hero-visual {

        height: 400px;

    }

    .hero-video {

        height: 220px;

    }

    .floating-card {

        transform: scale(.8);

    }

    .automation-card {

        left: -20px;

    }

    .growth-card {

        right: -20px;

    }

    .intro-section,
    .problem-section,
    .services-section,
    .pricing-section,
    .solutions-section,
    .showcase-section,
    .projects-section,
    .process-section,
    .about-section {

        padding: 90px 0;

    }

    .intro-text h2,
    .section-heading h2,
    .solutions-heading h2,
    .showcase-header h2,
    .process-heading h2,
    .about-content h2 {

        font-size: 40px;

    }

    .service-card {

        min-height: 600px;

        padding: 25px;

    }

    .service-content h3 {

        font-size: 30px;

    }

    .email-service .service-content,
    .automation-service .service-content,
    .domain-service .service-content,
    .service-large .service-content {

        transform: translateY(-10px);

    }

    .service-image {

        width: calc(100% - 50px);

        height: 150px;

    }

    .solution-item {

        grid-template-columns: 40px 1fr;

        gap: 15px;

    }

    .solution-example {

        grid-column: 2;

        justify-self: start;

        margin-top: 10px;

    }

    .showcase-visual {

        height: 560px;

    }

    .showcase-panel {

        inset: 24px;

    }

    .project-main .project-image {

        height: 400px;

    }

    .process-grid {

        grid-template-columns: 1fr;

    }

    .process-item {

        border-left: none;

        border-top: 1px solid var(--gray-300);

    }

    .about-image {

        height: 450px;

    }

    .footer-main {

        flex-direction: column;

        gap: 50px;

    }

    .footer-links {

        gap: 50px;

    }

    .footer-bottom {

        gap: 20px;

        flex-direction: column;

    }

}


/* =====================================================
   MOBILE NAV
===================================================== */

@media (max-width: 1000px) {

    .main-nav.mobile-open {

        position: absolute;

        top: 82px;

        left: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 10px 24px 20px;

        background: rgba(255,255,255,.97);

        backdrop-filter: blur(20px);

        border-bottom: 1px solid var(--gray-200);

    }

    .main-nav.mobile-open a {

        width: 100%;

        padding: 16px 0;

        border-bottom: 1px solid var(--gray-200);

    }

}
