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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 60px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    text-decoration: none;
}

.nav-link:hover {
    text-decoration: underline;
}

.btn-outline {
    padding: 20px 35px;
    border: 1px solid #000000;
    border-radius: 14px;
    background-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #f3f3f3;
}

.btn-primary {
    padding: 20px 35px;
    border: none;
    border-radius: 14px;
    background-color: #191a23;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #000000;
}

/* Hero Section */
.hero {
    padding: 0 0 70px 0;
}

.hero-content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 60px;
    font-weight: 500;
    line-height: 76.56px;
    color: #000000;
    margin-bottom: 35px;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo Bar */
.logo-bar {
    padding: 70px 0;
}

.logo-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.partner-logo {
    height: 48px;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 51.04px;
    color: #000000;
    white-space: nowrap;
}

.section-title .highlight {
    background-color: #b9ff66;
    padding: 0 7px;
    border-radius: 7px;
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #000000;
    max-width: 580px;
}

/* Services Section */
.services {
    padding: 40px 0 70px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    border: 1px solid #191a23;
    border-radius: 45px;
    padding: 50px;
    box-shadow: 0px 5px 0px #191a23;
    min-height: 310px;
    display: flex;
    flex-direction: column;
}

.service-card-light {
    background-color: #f3f3f3;
    border-bottom: 5px solid #191a23;
}

.service-card-green {
    background-color: #b9ff66;
    border-bottom: 5px solid #191a23;
}

.service-card-dark {
    background-color: #191a23;
    border-bottom: 5px solid #191a23;
}

.service-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
}

.service-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 38.28px;
    color: #000000;
    margin-bottom: 0;
}

.service-title-light {
    color: #ffffff;
}

.service-title .highlight {
    background-color: #b9ff66;
    padding: 0 7px;
    border-radius: 7px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    text-decoration: none;
}

.service-link-light {
    color: #ffffff;
}

.link-icon {
    width: 41px;
    height: 41px;
}

.service-image {
    flex-shrink: 0;
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 165px;
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
}

.cta-card {
    background-color: #f3f3f3;
    border-radius: 45px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 38.28px;
    color: #000000;
    margin-bottom: 26px;
}

.cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #000000;
    margin-bottom: 27px;
}

.cta-image {
    flex-shrink: 0;
    width: 360px;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Case Studies Section */
.case-studies {
    padding: 70px 0;
}

.case-studies-content {
    background-color: #191a23;
    border-radius: 45px;
    padding: 70px 60px;
    display: flex;
    gap: 0;
}

.case-study-card {
    flex: 1;
    padding: 0 42px;
}

.case-study-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #ffffff;
    margin-bottom: 20px;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #b9ff66;
    text-decoration: none;
}

.link-arrow {
    width: 21px;
    height: 21px;
}

.case-study-divider {
    width: 1px;
    background-color: #ffffff;
}

/* Working Process Section */
.working-process {
    padding: 70px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background-color: #f3f3f3;
    border: 1px solid #191a23;
    border-radius: 45px;
    padding: 41px 60px;
    box-shadow: 0px 5px 0px #191a23;
}

.process-step-active {
    background-color: #b9ff66;
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 25px;
}

.process-step-number {
    font-size: 60px;
    font-weight: 500;
    line-height: 76.56px;
    color: #000000;
}

.process-step-title {
    flex: 1;
    font-size: 30px;
    font-weight: 500;
    line-height: 38.28px;
    color: #000000;
}

.process-toggle {
    width: 58px;
    height: 58px;
    border: 1px solid #000000;
    border-radius: 50%;
    background-color: #f3f3f3;
    cursor: pointer;
    position: relative;
}

.process-step-active .process-toggle {
    background-color: #ffffff;
}

.process-toggle::before,
.process-toggle::after {
    content: '';
    position: absolute;
    background-color: #000000;
}

.process-toggle::before {
    width: 22px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-toggle::after {
    width: 2px;
    height: 22px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-step-active .process-toggle::after {
    display: none;
}

.process-step-content {
    display: none;
    margin-top: 30px;
    padding-left: 85px;
}

.process-step-active .process-step-content {
    display: block;
}

.process-step-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #000000;
    max-width: 850px;
}

/* Team Section */
.team {
    padding: 70px 0;
}

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

.team-card {
    background-color: #ffffff;
    border: 1px solid #191a23;
    border-radius: 45px;
    padding: 40px 35px;
    box-shadow: 0px 5px 0px #191a23;
}

.team-member-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.team-member-image {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 25.52px;
    color: #000000;
    margin-bottom: 5px;
}

.team-member-role {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #000000;
}

.team-member-linkedin {
    position: absolute;
    top: 0;
    right: 0;
}

.team-member-linkedin img {
    width: 34px;
    height: 34px;
}

.team-member-divider {
    height: 1px;
    background-color: #000000;
    margin: 28px 0;
}

.team-member-bio {
    font-size: 18px;
    font-weight: 400;
    line-height: 30.6px;
    color: #000000;
}

.team-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 70px 0;
}

.testimonials-slider {
    background-color: #191a23;
    border-radius: 45px;
    padding: 84px 100px 68px;
}

.testimonial-card {
    position: relative;
    max-width: 100%;
}

.quote-start {
    position: absolute;
    top: -30px;
    left: 80px;
    width: 48px;
    height: 48px;
}

.quote-end {
    position: absolute;
    bottom: 85px;
    right: 80px;
    width: 48px;
    height: 48px;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #ffffff;
    text-align: center;
    margin: 0 80px 48px;
    position: relative;
}

.testimonial-author {
    text-align: center;
    margin-bottom: 68px;
}

.author-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 25.52px;
    color: #b9ff66;
    margin-bottom: 5px;
}

.author-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #ffffff;
}

.testimonials-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-dots {
    display: flex;
    gap: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff4d;
    cursor: pointer;
}

.dot-active {
    background-color: #b9ff66;
}

.testimonial-arrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.testimonial-arrow img {
    width: 24px;
    height: 24px;
}

/* Contact Section */
.contact {
    padding: 70px 0;
}

.contact-wrapper {
    position: relative;
    background-color: #f3f3f3;
    border-radius: 45px;
    padding: 60px;
    display: flex;
    gap: 100px;
}

.contact-form {
    flex: 1;
    max-width: 556px;
}

.form-radio-group {
    display: flex;
    gap: 35px;
    margin-bottom: 40px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #000000;
    cursor: pointer;
}

.radio-icon {
    width: 28px;
    height: 28px;
}

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

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 18px 30px;
    border: 1px solid #000000;
    border-radius: 14px;
    background-color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #000000;
}

.form-input::placeholder {
    color: #898989;
}

.form-textarea {
    width: 100%;
    min-height: 190px;
    padding: 18px 30px;
    border: 1px solid #000000;
    border-radius: 14px;
    background-color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #000000;
    resize: vertical;
}

.form-textarea::placeholder {
    color: #898989;
}

.contact-form .btn-primary {
    margin-top: 15px;
}

.contact-decoration {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
}

.decoration-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.decoration-star-black {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
}

.decoration-star-green {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
}

/* Footer */
.footer {
    background-color: #191a23;
    padding: 55px 0 50px;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 206px;
    margin-bottom: 66px;
}

.footer-logo {
    height: 36px;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-link {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #ffffff;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.social-link img {
    width: 30px;
    height: 30px;
}

.footer-middle {
    display: flex;
    gap: 189px;
    margin-bottom: 50px;
}

.footer-contact-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 25.52px;
    color: #b9ff66;
    background-color: #b9ff66;
    padding: 0 7px;
    border-radius: 7px;
    display: inline-block;
    margin-bottom: 27px;
}

.footer-contact-info {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-newsletter {
    flex: 1;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    background-color: #292a32;
    border: 1px solid #ffffff;
    border-radius: 14px;
    padding: 22px 22px 22px 25px;
}

.newsletter-input {
    flex: 1;
    border: none;
    background-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #ffffff;
}

.newsletter-input::placeholder {
    color: #ffffff;
}

.newsletter-input:focus {
    outline: none;
}

.btn-newsletter {
    padding: 20px 35px;
    border: none;
    border-radius: 14px;
    background-color: #b9ff66;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
    cursor: pointer;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background-color: #a3e654;
}

.footer-bottom {
    margin-top: 50px;
}

.footer-divider {
    height: 1px;
    background-color: #ffffff;
    margin-bottom: 50px;
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-copyright {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #ffffff;
}

.footer-privacy {
    font-size: 18px;
    font-weight: 400;
    line-height: 22.97px;
    color: #ffffff;
    text-decoration: underline;
}
