:root {
    --ocean-blue: #00b4d8;
    --seafoam-light: #e6f7fc;
    --marine-deep: #007a92;
    --forest-green: #28a745;
    --sage-light: #e8f5e8;
    --sunset-orange: #fd7e14;
    --coral-light: #fff3e0;
    --crimson-accent: #dc3545;
    --blush-light: #f8d7da;
    --graphite-color: #6c757d;
    --pearl-light: #f8f9fa;
    --azure-info: #17a2b8;
    --amber-warning: #ffc107;
    --emerald-success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lora", serif;
    line-height: 1.7;
    color: var(--marine-deep);
    font-weight: 400;
    font-size: 16px;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica Neue", sans-serif;
    color: var(--marine-deep);
    font-weight: 700;
}

.content-wrapper {
    width: 100%;
    padding-right: 17px;
    padding-left: 17px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.navigation-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.primary-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brand-logo img {
    height: 45px;
    width: auto;
}

.mobile-nav-toggle {
    display: none;
}

.toggle-button {
    display: none;
}

.hamburger-icon {
    width: 28px;
    height: 3px;
    background: var(--marine-deep);
    position: relative;
    border-radius: 2px;
    transition: all 0.35s ease;
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--marine-deep);
    border-radius: 2px;
    transition: all 0.35s ease;
}

.hamburger-icon:before {
    top: -9px;
}

.hamburger-icon:after {
    top: 9px;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 23px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
}

.menu-item {
    list-style: none;
}

.menu-link {
    color: var(--marine-deep);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--ocean-blue);
}

@media screen and (max-width: 768px) {
    .toggle-button {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.35s ease;
        padding-top: 85px;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .menu-item {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .menu-link {
        display: inline-block;
        padding: 12px 23px;
        font-size: 19px;
        color: var(--marine-deep);
    }

    .mobile-nav-toggle:checked ~ .navigation-wrapper {
        left: 0;
    }

    .mobile-nav-toggle:checked ~ .toggle-button .hamburger-icon {
        background: transparent;
    }

    .mobile-nav-toggle:checked ~ .toggle-button .hamburger-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-nav-toggle:checked ~ .toggle-button .hamburger-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.hero-showcase {
    padding: 140px 0 63px;
    background: linear-gradient(135deg, var(--seafoam-light) 0%, #ffffff 100%);
}

.hero-content h1 {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 41px;
    color: var(--marine-deep);
    font-weight: 750;
    margin-bottom: 34px;
    line-height: 1.3;
}

.introduction-text h2,
.feature-highlights h2 {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 28px;
    color: var(--marine-deep);
    font-weight: 650;
    margin-bottom: 24px;
}

.introduction-text p {
    line-height: 1.8;
    font-size: 17px;
    font-family: "Lora", serif;
    font-weight: normal;
    color: #555555;
    margin-bottom: 19px;
}

.feature-highlights {
    margin-top: 45px;
}

.feature-highlights ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.feature-highlights ul li {
    line-height: 1.8;
    font-size: 17px;
    font-family: "Lora", serif;
    font-weight: normal;
    color: #555555;
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
}

.feature-highlights ul li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--ocean-blue);
    font-size: 18px;
}

.service-offerings {
    padding: 89px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 67px;
}

.section-header .primary-heading {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 38px;
    color: var(--marine-deep);
    font-weight: 700;
    margin-bottom: 17px;
    line-height: 1.3;
}

.section-header p {
    font-size: 16px;
    font-family: "Lora", serif;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0px;
    max-width: 640px;
    margin: auto;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 34px 28px;
    text-align: center;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    margin: 17px 0;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 23px;
}

.service-icon img {
    width: 64px;
    height: 64px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.service-title {
    font-size: 22px;
    color: var(--marine-deep);
    margin-bottom: 19px;
    transition: all 0.3s ease;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.service-card p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #777777;
    font-family: "Lora", serif;
}

.content-showcase {
    padding: 87px 0;
    background: var(--pearl-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.visual-background {
    position: relative;
}

.visual-background:after {
    width: 340px;
    height: 340px;
    content: "";
    z-index: -1;
    border-radius: 50%;
    position: absolute;
    bottom: -87px;
    right: -87px;
    background: var(--seafoam-light);
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
}

.content-title {
    font-size: 32px;
    color: var(--marine-deep);
    margin-bottom: 23px;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.content-block {
    margin-bottom: 28px;
}

.benefits-list {
    margin-bottom: 43px;
}

.feature-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-checklist li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 19px;
    line-height: 1.6;
    color: #555555;
}

.feature-checklist li:before {
    left: 0;
    font-size: 19px;
    top: -0.3rem;
    content: "✓";
    position: absolute;
    color: var(--forest-green);
}

@media (max-width: 991px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .visual-background:after {
        display: none;
    }
}

.portfolio-showcase {
    padding: 94px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 38px;
}

.portfolio-item {
    box-shadow: 0px 13px 34px 0px rgba(153, 153, 153, 0.11);
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 32px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.portfolio-item:hover {
    transform: translateY(-9px);
    box-shadow: 0px 19px 42px 0px rgba(153, 153, 153, 0.15);
}

.portfolio-image {
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.06);
}

.portfolio-content {
    padding: 31px 29px;
    background: #fff;
}

.portfolio-content h4 {
    font-size: 23px;
    color: var(--marine-deep);
    margin-bottom: 19px;
    transition: all 0.3s ease;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.portfolio-content p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #777777;
    font-family: "Lora", serif;
}

.portfolio-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--marine-deep);
    font-family: "Helvetica Neue", sans-serif;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1.2px;
}

.portfolio-link:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: var(--ocean-blue);
    text-decoration: none;
}

.portfolio-link:hover:after {
    width: 100%;
}

.performance-metrics {
    overflow-x: hidden;
    position: relative;
    padding: 75px 0;
    background: var(--marine-deep);
}

.metrics-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 17px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.counter-display {
    text-align: center;
}

.counter-value .stat-number {
    line-height: 1;
    font-weight: 700;
    font-size: 42px;
    color: var(--ocean-blue);
    display: block;
    margin-bottom: 13px;
}

.counter-label span {
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 1px;
}

.capability-showcase {
    padding: 89px 0;
    background: #ffffff;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
}

.capability-item {
    text-align: center;
    padding: 23px;
}

.capability-icon {
    width: 73px;
    height: 73px;
    margin-bottom: 27px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.capability-title {
    font-size: 24px;
    color: var(--marine-deep);
    margin-bottom: 19px;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 600;
}

.capability-item p {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-showcase {
    padding: 97px 0;
    position: relative;
}

.bg-testimonials {
    background: var(--pearl-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 73px;
}

.section-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 720;
    color: var(--sunset-orange);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 11px;
}

.testimonials-header h2 {
    font-size: 34px;
    font-weight: 720;
    color: var(--marine-deep);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-content {
    display: block;
    position: relative;
    background: white;
    padding: 34px 28px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.025);
    box-shadow: 0px 15px 32px -23px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: -24px;
    left: 28px;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background: var(--sunset-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.testimonial-text p {
    margin-bottom: 27px;
    color: #555555;
    line-height: 1.7;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 17px;
}

.customer-avatar {
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.customer-name {
    font-weight: 620;
    font-size: 19px;
    margin-bottom: 3px;
    color: var(--marine-deep);
}

.customer-position {
    font-size: 14px;
    color: #666666;
}

.faq-section {
    padding: 83px 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 67px;
}

.main-title {
    color: var(--sunset-orange);
    font-size: 36px;
    font-weight: 750;
    margin-bottom: 0;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.faq-item {
    margin-bottom: 37px;
}

.faq-question {
    color: var(--marine-deep);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 13px;
    line-height: 1.4;
}

.faq-item p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 23px;
    }
}

.company-info {
    padding: 87px 0;
    background: var(--pearl-light);
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 53px;
}

.company-title {
    color: var(--marine-deep);
    font-size: 32px;
    font-weight: 650;
    margin-bottom: 27px;
}

.company-description p {
    margin-bottom: 23px;
    line-height: 1.7;
    color: #555555;
}

.signature-section {
    margin-top: 34px;
}

.signature-image {
    width: 47px;
    height: auto;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.highlights-title {
    color: var(--marine-deep);
    font-size: 24px;
    font-weight: 650;
    margin-bottom: 31px;
}

.achievements-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.achievement-item {
    margin-bottom: 27px;
}

.achievement-title {
    color: var(--marine-deep);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
}

.achievement-detail {
    color: #666666;
    font-size: 14px;
}

@media (max-width: 991px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 37px;
    }
}

.main-footer {
    padding: 73px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.main-footer:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.main-footer .content-wrapper {
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 43px;
    margin-bottom: 47px;
}

.footer-heading {
    font-size: 21px;
    margin-bottom: 23px;
    color: #fff;
}

.footer-about p {
    margin-bottom: 19px;
    line-height: 1.7;
}

.footer-cta {
    display: inline-block;
    background-color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
    color: #fff;
    padding: 13px 27px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background-color: transparent;
    color: var(--ocean-blue);
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.3);
}

.links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 11px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: .3s all ease;
    display: block;
    padding: 6px 0;
}

.footer-menu a:hover {
    color: #fff;
    text-decoration: none;
}

.contact-info p {
    margin-bottom: 13px;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.copyright-section p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 767px) {
    .links-section {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-header .primary-heading {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-hero-section {
    padding: 140px 0 73px;
    background: linear-gradient(135deg, var(--seafoam-light) 0%, #ffffff 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 43px;
    color: var(--marine-deep);
    font-weight: 750;
    margin-bottom: 19px;
    line-height: 1.3;
}

.contact-hero-content p {
    font-size: 19px;
    color: #666666;
    font-family: "Lora", serif;
    max-width: 520px;
    margin: 0 auto;
}

.contact-main-section {
    padding: 89px 0;
    background: #ffffff;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 67px;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }
}

.form-header {
    margin-bottom: 43px;
}

.form-header h2 {
    font-size: 32px;
    color: var(--marine-deep);
    font-weight: 650;
    margin-bottom: 17px;
    font-family: "Helvetica Neue", sans-serif;
}

.form-header p {
    color: #666666;
    line-height: 1.7;
    font-size: 16px;
}

.contact-form {
    background: #ffffff;
    border-radius: 13px;
    padding: 41px;
    box-shadow: 0 9px 34px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-row {
    margin-bottom: 31px;
}

.input-group, .select-group, .textarea-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.input-icon img {
    width: 21px;
    height: 21px;
    filter: invert(0.4);
    transition: all 0.3s ease;
}

.input-group input,
.select-group select,
.textarea-group textarea {
    width: 100%;
    padding: 19px 17px 19px 53px;
    border: 2px solid #e9ecef;
    border-radius: 9px;
    font-size: 16px;
    font-family: "Lora", serif;
    background: #ffffff;
    transition: all 0.35s ease;
    outline: none;
}

.input-group input:focus,
.select-group select:focus,
.textarea-group textarea:focus {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.input-group input:focus + label,
.input-group input:valid + label,
.select-group select:focus + label,
.select-group select:valid + label,
.textarea-group textarea:focus + label,
.textarea-group textarea:valid + label {
    transform: translateY(-43px) scale(0.85);
    color: var(--ocean-blue);
    background: #ffffff;
    padding: 0 7px;
}

.input-group label,
.textarea-group label {
    position: absolute;
    left: 53px;
    top: 19px;
    color: #999999;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.35s ease;
    font-family: "Lora", serif;
}

.select-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1.5 4.5h9z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 17px center;
}

.textarea-group textarea {
    resize: vertical;
    min-height: 127px;
}

.input-group.error input,
.select-group.error select,
.textarea-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.input-group.error .input-icon img,
.select-group.error .input-icon img,
.textarea-group.error .input-icon img {
    filter: invert(0.2) sepia(1) saturate(5) hue-rotate(340deg);
}

.form-submit {
    text-align: center;
    margin-top: 37px;
}

.submit-button {
    background: linear-gradient(135deg, var(--ocean-blue), var(--marine-deep));
    color: #ffffff;
    border: none;
    padding: 17px 41px;
    border-radius: 34px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Helvetica Neue", sans-serif;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.submit-button img {
    width: 19px;
    height: 19px;
    filter: brightness(0) invert(1);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 27px rgba(0, 180, 216, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.info-card, .benefits-card {
    background: #ffffff;
    border-radius: 13px;
    padding: 31px;
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-header, .benefits-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 27px;
}

.info-header img, .benefits-header img {
    width: 31px;
    height: 31px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.info-header h3, .benefits-header h3 {
    font-size: 21px;
    color: var(--marine-deep);
    font-weight: 650;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 23px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item img {
    width: 23px;
    height: 23px;
    filter: invert(0.3);
    margin-top: 3px;
}

.info-item strong {
    display: block;
    color: var(--marine-deep);
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item img {
    width: 21px;
    height: 21px;
    filter: invert(0.3) sepia(1) saturate(3) hue-rotate(90deg);
}

.benefit-item span {
    color: #555555;
    font-weight: 500;
}

@media (max-width: 767px) {
    .contact-form {
        padding: 27px;
    }

    .contact-hero-content h1 {
        font-size: 31px;
    }

    .form-header h2 {
        font-size: 26px;
    }
}

.thankyou-hero-section {
    padding: 140px 0 97px;
    background: linear-gradient(135deg, var(--sage-light) 0%, #ffffff 100%);
    text-align: center;
}

.thankyou-content {
    max-width: 650px;
    margin: 0 auto;
}

.success-icon {
    width: 87px;
    height: 87px;
    margin: 0 auto 31px;
    background: var(--forest-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.success-icon img {
    width: 43px;
    height: 43px;
    filter: brightness(0) invert(1);
}

.thankyou-content h1 {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 41px;
    color: var(--marine-deep);
    font-weight: 750;
    margin-bottom: 23px;
    line-height: 1.3;
}

.success-message {
    font-size: 18px;
    color: #666666;
    font-family: "Lora", serif;
    line-height: 1.7;
    margin: 0;
}

.next-steps-section {
    padding: 89px 0;
    background: #ffffff;
}

.steps-header {
    text-align: center;
    margin-bottom: 67px;
}

.steps-header h2 {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 36px;
    color: var(--marine-deep);
    font-weight: 700;
    margin-bottom: 17px;
    line-height: 1.3;
}

.steps-header p {
    font-size: 16px;
    color: #666666;
    font-family: "Lora", serif;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 37px;
}

.step-card {
    background: #ffffff;
    border-radius: 13px;
    padding: 37px 29px;
    box-shadow: 0 9px 31px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
}

.step-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 17px 43px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -19px;
    left: 29px;
    width: 43px;
    height: 43px;
    background: var(--ocean-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    font-family: "Helvetica Neue", sans-serif;
}

.step-icon {
    margin: 23px 0 19px;
}

.step-icon img {
    width: 53px;
    height: 53px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.step-card h3 {
    font-size: 23px;
    color: var(--marine-deep);
    font-weight: 650;
    margin-bottom: 17px;
    font-family: "Helvetica Neue", sans-serif;
}

.step-card p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 23px;
    font-family: "Lora", serif;
}

.step-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding-top: 19px;
    border-top: 1px solid #e9ecef;
}

.step-timeline img {
    width: 17px;
    height: 17px;
    filter: invert(0.4);
}

.step-timeline span {
    color: #888888;
    font-size: 14px;
    font-weight: 500;
}

.additional-resources-section {
    padding: 73px 0;
    background: var(--pearl-light);
}

.resources-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 53px;
    align-items: start;
}

@media (max-width: 991px) {
    .resources-layout {
        grid-template-columns: 1fr;
        gap: 37px;
    }
}

.resources-content h2 {
    font-size: 32px;
    color: var(--marine-deep);
    font-weight: 650;
    margin-bottom: 19px;
    font-family: "Helvetica Neue", sans-serif;
}

.resources-content > p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 37px;
    font-size: 16px;
}

.resource-link {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 11px;
    padding: 27px;
    text-decoration: none;
    box-shadow: 0 5px 19px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
    margin-bottom: 19px;
}

.resource-link:hover {
    box-shadow: 0 9px 27px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.link-icon {
    margin-right: 19px;
}

.link-icon img {
    width: 41px;
    height: 41px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.link-content {
    flex: 1;
}

.link-content h4 {
    color: var(--marine-deep);
    font-size: 19px;
    font-weight: 650;
    margin-bottom: 7px;
    font-family: "Helvetica Neue", sans-serif;
}

.link-content p {
    color: #666666;
    margin: 0;
    font-size: 14px;
}

.link-arrow img {
    width: 19px;
    height: 19px;
    filter: invert(0.3);
}

.reminder-card {
    background: #ffffff;
    border-radius: 13px;
    padding: 31px;
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.reminder-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 23px;
}

.reminder-header img {
    width: 29px;
    height: 29px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.reminder-header h3 {
    font-size: 21px;
    color: var(--marine-deep);
    font-weight: 650;
    margin: 0;
}

.reminder-content > p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 27px;
}

.contact-item, .hours-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 19px;
}

.contact-item:last-child, .hours-item:last-child {
    margin-bottom: 0;
}

.contact-item img, .hours-item img {
    width: 19px;
    height: 19px;
    filter: invert(0.3);
    margin-top: 2px;
}

.contact-item strong, .hours-item strong {
    display: block;
    color: var(--marine-deep);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 14px;
}

.contact-item p, .hours-item p {
    color: #666666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.office-hours {
    margin-top: 23px;
    padding-top: 19px;
    border-top: 1px solid #e9ecef;
}

.trust-indicators-section {
    padding: 73px 0;
    background: #ffffff;
}

.trust-header {
    text-align: center;
    margin-bottom: 53px;
}

.trust-header h2 {
    font-size: 32px;
    color: var(--marine-deep);
    font-weight: 650;
    font-family: "Helvetica Neue", sans-serif;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 31px;
}

.trust-item {
    text-align: center;
    padding: 27px;
}

.trust-icon {
    margin-bottom: 19px;
}

.trust-icon img {
    width: 47px;
    height: 47px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.trust-item h3 {
    font-size: 19px;
    color: var(--marine-deep);
    font-weight: 650;
    margin-bottom: 11px;
    font-family: "Helvetica Neue", sans-serif;
}

.trust-item p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 767px) {
    .thankyou-content h1 {
        font-size: 29px;
    }

    .steps-header h2 {
        font-size: 27px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 31px 23px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.global-offices-section {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--pearl-light) 0%, #f8f9fa 100%);
}

.offices-header {
    text-align: center;
    margin-bottom: 67px;
}

.offices-header h2 {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 38px;
    color: var(--marine-deep);
    font-weight: 700;
    margin-bottom: 17px;
    line-height: 1.3;
}

.offices-header p {
    font-size: 16px;
    color: #666666;
    font-family: "Lora", serif;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 43px;
}

@media (max-width: 767px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

.office-region {
    background: #ffffff;
    border-radius: 19px;
    padding: 37px;
    box-shadow: 0 13px 41px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.37s ease;
    position: relative;
    overflow: hidden;
}

.office-region::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ocean-blue) 0%, var(--marine-deep) 100%);
}

.office-region.americas::before {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

.office-region.europe::before {
    background: linear-gradient(90deg, var(--forest-green) 0%, #27ae60 100%);
}

.office-region.asia-pacific::before {
    background: linear-gradient(90deg, var(--sunset-orange) 0%, #e67e22 100%);
}

.office-region:hover {
    transform: translateY(-7px);
    box-shadow: 0 19px 53px rgba(0, 0, 0, 0.14);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 31px;
    padding-bottom: 19px;
    border-bottom: 2px solid var(--seafoam-light);
}

.region-header img {
    width: 29px;
    height: 29px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.region-header h3 {
    font-size: 23px;
    color: var(--marine-deep);
    font-weight: 650;
    margin: 0;
    font-family: "Helvetica Neue", sans-serif;
}

.office-card {
    background: var(--seafoam-light);
    border-radius: 13px;
    padding: 27px;
    margin-bottom: 23px;
    position: relative;
    border: 2px solid var(--ocean-blue);
}

.office-card.headquarters {
    background: linear-gradient(135deg, var(--seafoam-light) 0%, #e1f4f8 100%);
}

.office-badge {
    position: absolute;
    top: -11px;
    right: 23px;
    background: var(--ocean-blue);
    color: #ffffff;
    padding: 7px 17px;
    border-radius: 17px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-card h4 {
    font-size: 21px;
    color: var(--marine-deep);
    font-weight: 650;
    margin-bottom: 19px;
    font-family: "Helvetica Neue", sans-serif;
}

.office-details > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 13px;
}

.office-details img {
    width: 17px;
    height: 17px;
    filter: invert(0.3);
    margin-top: 2px;
}

.office-details p,
.office-details span {
    color: #555555;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.coverage-info span {
    font-style: italic;
    color: var(--ocean-blue);
    font-weight: 500;
}

.offices-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.office-item {
    background: #f8f9fa;
    border-radius: 11px;
    padding: 19px;
    border-left: 4px solid var(--graphite-color);
    transition: all 0.3s ease;
}

.office-item:hover {
    border-left-color: var(--ocean-blue);
    background: #ffffff;
    box-shadow: 0 5px 17px rgba(0, 0, 0, 0.07);
}

.featured-office {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%) !important;
    border-left-color: var(--sunset-orange) !important;
    position: relative;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 9px;
    position: relative;
}

.country-flag {
    font-size: 19px;
}

.country-info strong {
    color: var(--marine-deep);
    font-weight: 600;
    font-size: 16px;
}

.featured-badge {
    background: var(--sunset-orange);
    color: #ffffff;
    padding: 3px 11px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: auto;
}

.office-item p {
    color: #666666;
    line-height: 1.5;
    margin: 0 0 7px 0;
    font-size: 14px;
    padding-left: 30px;
}

.office-phone {
    color: var(--ocean-blue);
    font-weight: 500;
    font-size: 13px;
    padding-left: 30px;
    display: block;
}

@media (max-width: 767px) {
    .offices-header h2 {
        font-size: 29px;
    }

    .office-region {
        padding: 27px;
    }

    .region-header h3 {
        font-size: 19px;
    }

    .offices-grid {
        gap: 27px;
    }
}

.company-achievements-section {
    padding: 97px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--pearl-light) 100%);
    position: relative;
}

.company-achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.company-achievements-section > .content-wrapper {
    position: relative;
    z-index: 1;
}

.achievements-header {
    text-align: center;
    margin-bottom: 73px;
}

.achievements-header h2 {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 41px;
    color: var(--marine-deep);
    font-weight: 750;
    margin-bottom: 19px;
    line-height: 1.3;
}

.achievements-header p {
    font-size: 17px;
    color: #666666;
    font-family: "Lora", serif;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 37px;
    margin-bottom: 67px;
}

@media (max-width: 767px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

.award-card {
    background: #ffffff;
    border-radius: 17px;
    padding: 34px;
    box-shadow: 0 15px 43px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.37s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.award-card.gartner::before {
    background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
}

.award-card.forrester::before {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

.award-card.innovation::before {
    background: linear-gradient(90deg, var(--sunset-orange) 0%, #e67e22 100%);
}

.award-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 23px 57px rgba(0, 0, 0, 0.13);
}

.award-year {
    position: absolute;
    top: 19px;
    right: 23px;
    background: var(--marine-deep);
    color: #ffffff;
    padding: 7px 13px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Helvetica Neue", sans-serif;
}

.award-year:hover {
    opacity: 40%;
}

.award-content {
    display: flex;
    align-items: flex-start;
    gap: 19px;
    margin-bottom: 23px;
}

.award-logo {
    flex-shrink: 0;
}

.award-logo img {
    width: 53px;
    height: 53px;
    filter: invert(0.2) sepia(1) saturate(3) hue-rotate(180deg);
}

.award-details h3 {
    font-size: 23px;
    color: var(--marine-deep);
    font-weight: 650;
    margin-bottom: 9px;
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1.3;
}

.award-details p {
    color: #666666;
    font-size: 15px;
    margin-bottom: 13px;
    line-height: 1.4;
}

.institution {
    display: flex;
    align-items: center;
    gap: 9px;
}

.institution img {
    width: 17px;
    height: 17px;
    filter: invert(0.3);
}

.institution span {
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-description {
    padding-top: 19px;
    border-top: 1px solid #e9ecef;
}

.award-description p {
    color: #555555;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
    font-style: italic;
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 27px;
    background: var(--marine-deep);
    border-radius: 17px;
    padding: 41px;
}

@media (max-width: 767px) {
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 31px;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 17px;
    text-align: left;
}

.stat-icon {
    flex-shrink: 0;
    width: 47px;
    height: 47px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 23px;
    height: 23px;
    filter: brightness(0) invert(1);
}

.stat-content strong {
    display: block;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 3px;
    font-family: "Helvetica Neue", sans-serif;
}

.stat-content span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .achievements-header h2 {
        font-size: 31px;
    }

    .award-card {
        padding: 27px;
    }

    .award-content {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 11px;
    }
}