:root {
    --ocean-blue: #2c5aa0;
    --forest-green: #27543e;
    --sunset-orange: #e67e22;
    --warm-amber: #f39c12;
    --deep-purple: #7209b7;
    --purple-light: #f3e5f9;
    --purple-dark: #4c0677;
    --golden-accent: #c49b63;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --background-light: #f8f9fa;
    --background-dark: #2c3e50;
    --white-pure: #ffffff;
    --border-subtle: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white-pure);
    font-size: 16px;
}

.content-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 21px;
}

.workspace-header {
    background: var(--white-pure);
    box-shadow: 0 2px 13px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.brand-identity img {
    height: 47px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 34px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.hamburger:before {
    top: -11px;
}

.hamburger:after {
    top: 11px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.31s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--sunset-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -7px;
    left: 0;
    background: var(--sunset-orange);
    transition: width 0.31s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 18px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white-pure);
        transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 18px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 19px;
        color: var(--text-primary);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 891px) {
    .nav-wrapper {
        display: flex;
        align-items: center;
        gap: 21px;
    }
}

.showcase-banner {
    background: linear-gradient(135deg, var(--purple-light) 0%, #fff 100%);
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.creative-grid {
    width: 100%;
}

.banner-content {
    text-align: center;
}

.text-container h1 {
    font-size: 4.2rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 27px;
    line-height: 1.2;
}

.typed-words {
    color: var(--sunset-orange);
}

.description-text {
    color: var(--text-secondary);
    font-size: 1.4rem;
    margin-bottom: 34px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.description-text a {
    color: var(--sunset-orange);
    text-decoration: none;
    font-weight: 600;
}

.description-text a:hover {
    text-decoration: underline;
}

@media (max-width: 890px) {
    .showcase-banner {
        min-height: 480px;
        padding: 47px 0;
    }

    .text-container h1 {
        font-size: 2.3rem;
    }

    .description-text {
        font-size: 1.1rem;
    }
}

.imagery-display {
    padding: 0;
    margin-top: -89px;
    position: relative;
    z-index: 1;
}

.image-row {
    width: 100%;
}

.showcase-container {
    position: relative;
}

.image-slider {
    display: flex;
    gap: 21px;
    overflow: hidden;
    border-radius: 13px;
    box-shadow: 0 8px 34px rgba(0,0,0,0.12);
}

.banner-image {
    flex: 1;
    height: 340px;
    object-fit: cover;
    border-radius: 13px;
}

@media (max-width: 890px) {
    .image-slider {
        flex-direction: column;
        gap: 13px;
    }

    .banner-image {
        width: 100%;
        height: 240px;
    }
}

.workspace-section {
    padding: 89px 0;
    position: relative;
}

@media (max-width: 890px) {
    .workspace-section {
        padding: 55px 0;
    }
}

.about-zone {
    padding-top: 0;
}

.background-contrast {
    background-color: var(--background-light);
    padding-bottom: 0;
}

.title-framework h2 {
    font-size: 3.4rem;
    color: var(--sunset-orange);
    margin-bottom: 21px;
    font-weight: 700;
}

.title-framework p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
}

.center-layout {
    flex: 0 0 68.33333%;
    max-width: 68.33333%;
    margin: 0 auto;
}

.video-wrapper {
    margin-bottom: 55px;
}

.full-width {
    width: 100%;
}

.video-container {
    position: relative;
    margin: 0;
}

.video-container > a {
    display: block;
    position: relative;
    cursor: pointer;
}

.play-button {
    position: absolute;
    width: 89px;
    height: 89px;
    border-radius: 50%;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white-pure);
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 21px rgba(0,0,0,0.15);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid var(--sunset-orange);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.play-button:hover {
    width: 100px;
    height: 100px;
    box-shadow: 0 8px 34px rgba(0,0,0,0.25);
}

.statistics-row {
    width: 100%;
}

.stats-container {
    width: 100%;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

@media (max-width: 890px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }
}

@media (max-width: 640px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
}

.stat-display {
    text-align: center;
}

.stat-value,
.stat-description {
    display: block;
    line-height: 1;
}

.stat-value {
    color: var(--sunset-orange);
    font-size: 4.5rem;
    position: relative;
    padding-bottom: 21px;
    margin-bottom: 21px;
    font-weight: 700;
}

@media (max-width: 890px) {
    .stat-value {
        font-size: 2.8rem;
    }
}

.stat-value:after {
    position: absolute;
    content: "";
    width: 55px;
    height: 3px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: rgba(52, 58, 64, 0.3);
}

.stat-description {
    font-size: 15px;
    letter-spacing: .05em;
    color: var(--text-secondary);
    font-weight: 500;
}

.text-alignment {
    text-align: center;
}

.center-align {
    justify-content: center;
}

.margin-container {
    margin-bottom: 55px;
}

.spacing-bottom {
    margin-bottom: 34px;
}

.spacing-top {
    padding-top: 21px;
}

.title-section .section-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 800;
    color: var(--sunset-orange);
    text-transform: uppercase;
    letter-spacing: 2.8px;
    margin-bottom: 13px;
}

.title-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

@media (max-width: 890px) {
    .title-section h2 {
        font-size: 2.1rem;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-entry {
    margin-bottom: 34px;
}

.service-image {
    display: block;
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 8px;
    transition: transform 0.34s ease;
}

.service-image:hover {
    transform: translateY(-3px);
}

.service-content h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 13px;
    font-weight: 600;
}

.service-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.31s ease;
}

.service-content h3 a:hover {
    color: var(--sunset-orange);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 13px;
    line-height: 1.6;
}

.service-highlight span {
    color: var(--golden-accent);
    font-size: 1.1rem;
    font-weight: 600;
}

.action-button {
    padding: 13px 21px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.31s ease;
    border: 2px solid transparent;
}

.primary-style {
    background: var(--sunset-orange);
    color: var(--white-pure);
}

.outline-variant {
    border: 2px solid var(--sunset-orange);
    background: transparent;
    color: var(--sunset-orange);
}

.outline-variant:hover {
    background: var(--sunset-orange);
    color: var(--white-pure);
}

.button-style {
    background: var(--golden-accent);
    border: 2px solid var(--golden-accent);
    color: var(--white-pure);
}

.button-style:hover {
    border: 2px solid var(--golden-accent);
    background: transparent;
    color: var(--golden-accent);
}

.main-style {
    background-color: var(--warm-amber);
    border-color: var(--warm-amber);
    color: var(--white-pure);
    border-radius: 34px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    padding: 13px 24px;
}

.main-style:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

.content-area {
    padding-top: 0;
    padding-bottom: 0;
}

.flex-container {
    display: flex;
    align-items: center;
}

.no-spacing {
    gap: 0;
}

.content-column {
    flex: 0 0 50%;
    max-width: 50%;
}

.text-column {
    flex: 0 0 42%;
    max-width: 42%;
    margin-left: auto;
}

.flex-display {
    display: flex;
}

.image-container {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.content-background {
    background-position: top center;
}

@media (max-width: 890px) {
    .content-background {
        height: 340px;
    }

    .flex-container {
        flex-direction: column;
    }

    .content-column,
    .text-column {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
    }
}

.flex-stretch {
    align-self: stretch;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.rounded-corners {
    border-radius: 8px;
}

.padding-left {
    padding-left: 34px;
}

.spacing-vertical {
    padding: 34px 0;
}

@media (max-width: 890px) {
    .padding-left {
        padding-left: 0;
        padding-top: 34px;
    }
}

.content-section .content-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 800;
    color: var(--warm-amber);
    text-transform: uppercase;
    letter-spacing: 2.8px;
    margin-bottom: 8px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 34px 0;
}

.service-details li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.service-details li .check-icon::before {
    content: "✓";
    position: absolute;
    left: -34px;
    top: 0;
    color: var(--sunset-orange);
    font-weight: bold;
    font-size: 18px;
}

.image-text-layout {
    padding: 89px 0;
}

@media (max-width: 1280px) {
    .image-text-layout {
        padding: 55px 0;
    }
}

.serif-font {
    font-family: "Georgia", serif;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.content-row {
    display: flex;
}

.align-items {
    align-items: center;
}

.image-section {
    flex: 0 0 50%;
    max-width: 50%;
}

.text-section {
    flex: 0 0 42%;
    max-width: 42%;
}

.margin-left {
    margin-left: auto;
}

@media (max-width: 890px) {
    .content-row {
        flex-direction: column;
    }

    .image-section,
    .text-section {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .image-section {
        margin-bottom: 34px;
    }
}

.statistics-counter {
    padding: 89px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

@media (max-width: 1280px) {
    .statistics-counter {
        background-position: center center;
    }
}

.background-dark {
    background: #030202;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.6;
}

.center-alignment {
    display: flex;
    justify-content: center;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

@media (max-width: 890px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }
}

@media (max-width: 640px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
}

.counter-wrapper {
    display: flex;
    justify-content: center;
}

.stat-block {
    text-align: center;
}

.stat-content .icon-container {
    width: 89px;
    height: 89px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 21px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--golden-accent);
    border-radius: 50%;
    transition: all 0.34s ease;
}

.stat-content .icon-container:hover {
    transform: rotate(135deg);
    background: var(--golden-accent);
}

.stat-content .icon-container span {
    color: var(--golden-accent);
    font-size: 24px;
    transition: color 0.34s ease;
}

.stat-content:hover .icon-container span {
    color: #000;
}

.counter-number {
    font-weight: 400;
    font-size: 2.1rem;
    color: var(--golden-accent);
    display: block;
    margin-bottom: 8px;
}

.stat-content span:last-child {
    font-weight: 400;
    font-size: 15px;
    color: var(--white-pure);
    display: block;
}

.testimonial-area {
    padding-top: 0;
    padding-bottom: 180px;
}

.testimonial-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.section-header h3 {
    font-size: 2.8rem;
    font-weight: 420;
    line-height: 1.4;
    color: var(--text-primary);
    position: relative;
    z-index: 0;
    padding-bottom: 21px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 420;
}

.testimonial-slider {
    padding-top: 180px;
    position: relative;
}

.testimonial-item p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 420;
    margin-bottom: 28px;
}

.testimonial-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 420;
    text-transform: uppercase;
}

.testimonial-item span {
    color: var(--text-secondary);
    font-size: 16px;
}

.author-details {
    padding-top: 24px;
}

.author-thumb {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 18px;
}

.author-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content-area {
    padding: 89px 0;
    position: relative;
}

.text-wrapper {
    color: var(--text-primary);
    line-height: 1.8;
}

.text-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 21px;
    color: var(--text-primary);
    text-transform: uppercase;
    font-family: "Georgia", Arial, sans-serif;
}

.text-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 21px;
    color: var(--text-secondary);
}

.text-wrapper blockquote {
    border-left: 5px solid var(--golden-accent);
    padding-left: 21px;
    margin: 34px 0;
    font-style: italic;
    background: rgba(196, 155, 99, 0.08);
    padding: 21px;
    border-radius: 5px;
}

.text-wrapper blockquote p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 13px;
}

.text-wrapper blockquote cite {
    color: var(--golden-accent);
    font-size: 15px;
    font-weight: 400;
    display: block;
    text-align: right;
}

.text-wrapper cite::before {
    content: "— ";
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 34px 0;
}

.benefit-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.benefit-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--golden-accent);
    font-weight: bold;
    font-size: 19px;
}

.contact-section {
    background-position: center center;
    position: relative;
}

.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
}

.contact-row {
    position: relative;
    z-index: 1;
}

.contact-form {
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}

.background-light {
    background: var(--white-pure);
}

.consultation-form .form-field {
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 0;
}

.consultation-form .form-field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ocean-blue);
    text-transform: uppercase;
    margin-bottom: 0;
    display: block;
}

.consultation-form .form-field .select-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    font-size: 16px;
    transform: translateY(-50%);
}

.consultation-form .form-field .select-icon span {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
}

.consultation-form .form-field .select-container,
.consultation-form .form-field .input-wrapper {
    position: relative;
}

.consultation-form .form-field .select-container select,
.consultation-form .form-field .input-wrapper select {
    appearance: none;
}

.consultation-form .form-field .action-button {
    width: 100%;
    display: block;
}

.input-control {
    border: transparent;
    background: var(--white-pure);
    color: rgba(0, 0, 0, 0.8);
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    height: 38px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.input-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.input-control:focus {
    outline: none;
    border-bottom-color: var(--ocean-blue);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 21px;
}

.form-column {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 890px) {
    .form-column {
        flex: 1 0 100%;
    }
}

.align-stretch {
    align-self: stretch;
}

.primary-background {
    background: var(--ocean-blue);
    border-radius: 8px;
}

.primary-button {
    background: var(--ocean-blue);
    color: var(--white-pure);
    border: none;
    cursor: pointer;
    transition: background-color 0.31s ease;
}

.primary-button:hover {
    background: #1e4080;
}

.spacing-all {
    padding: 18px 24px;
}

.footer-area {
    background: var(--background-dark);
    color: var(--white-pure);
    padding: 55px 0 21px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-bottom: 34px;
}

@media (max-width: 890px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }
}

@media (max-width: 640px) {
    .footer-row {
        grid-template-columns: 1fr;
    }
}

.footer-widget h3 {
    color: var(--sunset-orange);
    margin-bottom: 21px;
    font-size: 1.4rem;
}

.footer-widget h4 {
    color: var(--white-pure);
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.footer-widget p {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 13px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 11px;
}

.footer-widget ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.31s ease;
}

.footer-widget ul li a:hover {
    color: var(--sunset-orange);
}

.contact-info {
    margin-top: 21px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 21px;
}

.copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 21px;
}

@media (max-width: 890px) {
    .copyright-row {
        flex-direction: column;
        text-align: center;
    }
}

.copyright-column p,
.disclaimer-column p {
    color: #95a5a6;
    margin: 0;
    font-size: 14px;
}

.disclaimer-column p strong {
    color: var(--sunset-orange);
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.68s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade"] {
    opacity: 0;
    transition: opacity 0.68s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navigation-zone {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
}

.workspace-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
    z-index: -1;
}

.service-card:hover .service-entry {
    transform: translateY(-8px);
    transition: transform 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card {
    transition: all 0.34s ease;
}

.image-section img {
    transition: transform 0.34s ease;
    border-radius: 8px;
}

.image-section img:hover {
    transform: scale(1.02);
}

.text-wrapper ul li {
    opacity: 0;
    animation: slideInUp 0.68s ease forwards;
}

.text-wrapper ul li:nth-child(1) { animation-delay: 0.1s; }
.text-wrapper ul li:nth-child(2) { animation-delay: 0.2s; }
.text-wrapper ul li:nth-child(3) { animation-delay: 0.3s; }
.text-wrapper ul li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultation-form .form-field {
    opacity: 0;
    animation: fadeInForm 0.68s ease forwards;
}

.consultation-form .form-field:nth-child(1) { animation-delay: 0.1s; }
.consultation-form .form-field:nth-child(2) { animation-delay: 0.2s; }
.consultation-form .form-field:nth-child(3) { animation-delay: 0.3s; }
.consultation-form .form-field:nth-child(4) { animation-delay: 0.4s; }
.consultation-form .form-field:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateX(-21px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-image {
    transition: transform 0.68s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-image:hover {
    transform: scale(1.05);
}

.stat-display {
    transition: all 0.34s ease;
}

.stat-display:hover {
    transform: translateY(-5px);
}

.footer-widget ul li a {
    position: relative;
    overflow: hidden;
}

.footer-widget ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.2), transparent);
    transition: left 0.55s;
}

.footer-widget ul li a:hover::before {
    left: 100%;
}

.testimonial-item {
    background: var(--white-pure);
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 34px rgba(0,0,0,0.08);
    margin: 0 13px;
    transition: transform 0.34s ease;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 13px 55px rgba(0,0,0,0.15);
}

.video-container img {
    border-radius: 13px;
    transition: transform 0.34s ease;
}

.video-container:hover img {
    transform: scale(1.02);
}

.nav-link {
    padding: 8px 0;
}

.brand-identity {
    transition: transform 0.34s ease;
}

.brand-identity:hover {
    transform: scale(1.05);
}

.text-container h1 {
    background: linear-gradient(135deg, var(--text-primary), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-banner {
    position: relative;
    overflow: hidden;
}

.showcase-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    z-index: -1;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.counter-number {
    background: linear-gradient(135deg, var(--golden-accent), #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workspace-section {
    position: relative;
    overflow: hidden;
}

.workspace-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--sunset-orange), transparent);
    opacity: 0.3;
}

.workspace-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--golden-accent), transparent);
    opacity: 0.3;
}

.service-content {
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--golden-accent));
    transform: scaleX(0);
    transition: transform 0.34s ease;
}

.service-card:hover .service-content::before {
    transform: scaleX(1);
}

.img-responsive {
    filter: brightness(1.0);
    transition: filter 0.34s ease;
}

.img-responsive:hover {
    filter: brightness(1.1);
}

.contact-form {
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--sunset-orange), var(--golden-accent), var(--ocean-blue));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.34s ease;
}

.contact-form:hover::before {
    opacity: 1;
}

.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 89px;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--golden-accent));
    border-radius: 2px;
}

.title-framework {
    position: relative;
}

.title-framework::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 89px;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--golden-accent));
    border-radius: 2px;
}

.scroll-to-top {
    position: fixed;
    bottom: 34px;
    right: 34px;
    width: 55px;
    height: 55px;
    background: var(--sunset-orange);
    color: var(--white-pure);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.34s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--golden-accent);
    transform: translateY(-3px);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.55s ease;
}

.loading-spinner {
    width: 55px;
    height: 55px;
    border: 3px solid var(--background-light);
    border-top: 3px solid var(--sunset-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-input {
    position: relative;
}