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

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

ul, ol {
    list-style: none;
}

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

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 10px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.header-container {
    max-width: 1280px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container > a {
    font-size: 24px;
    font-weight: 700;
    color: #c8102e;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 28px 0;
    transition: color 0.2s;
}

.nav-list > li > a:hover {
    color: #c8102e;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 260px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.nav-list li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-list {
    list-style: none;
}

.dropdown-list li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.dropdown-list li a:hover {
    background: #f9fafb;
    color: #c8102e;
}

.header-contact-btn a {
    background: #c8102e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.header-contact-btn a:hover {
    background: #a50d26;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 2px;
    background: #374151;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .nav {
        gap: 20px;
    }
    .nav-list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .nav-list, .header-contact-btn {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 24px;
        border-bottom: 1px solid #e5e7eb;
        gap: 0;
    }

    .nav.active .nav-list > li > a {
        padding: 16px 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: block;
    }
    
    .nav.active .header-contact-btn {
        display: block;
        margin-top: 20px;
    }
}

.hero {
    background: linear-gradient(135deg, #c8102e 0%, #1a1a1a 100%);
    padding: 80px 24px 0 24px;
    overflow: hidden;
    text-align: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-call {
    display: inline-block;
    background: #ffffff;
    color: #c8102e;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    margin-bottom: 60px;
}

.hero-call:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.hero-img-bottom {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-img-bottom img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 0 20px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-call {
        width: 100%;
        margin-bottom: 48px;
    }
    
    .hero-img-bottom {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    
    .hero-img-bottom img {
        border-radius: 0;
    }
}

.your-data-partner {
    padding: 100px 24px;
    background: #ffffff;
}

.your-data-partner-container {
    max-width: 1280px;
    margin: 0 auto;
}

.your-data-partner-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.your-data-partner-container > p {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px auto;
    line-height: 1.6;
}

.your-data-partner-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.your-data-partner-block-left {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.your-data-partner-block-left-item {
    padding-left: 0;
}

.your-data-partner-block-left-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.your-data-partner-block-left-top img {
    width: 32px;
    height: 32px;
}

.your-data-partner-block-left-top h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.your-data-partner-block-left-center p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.your-data-partner-block-left-center-second {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c8102e;
    margin-bottom: 16px;
}

.your-data-partner-block-left-center-second h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.your-data-partner-block-left-center-second p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.your-data-partner-block-left-item > a {
    font-size: 14px;
    font-weight: 600;
    color: #c8102e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: gap 0.2s;
}

.your-data-partner-block-left-item > a:after {
    content: '→';
    margin-left: 8px;
}

.your-data-partner-block-left-item > a:hover {
    text-decoration: underline;
}

.your-data-partner-block-right {
    position: sticky;
    top: 100px;
}

.your-data-partner-block-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .your-data-partner-block {
        gap: 40px;
    }
    
    .your-data-partner-container h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .your-data-partner {
        padding: 60px 20px;
    }

    .your-data-partner-block {
        grid-template-columns: 1fr;
    }

    .your-data-partner-block-right {
        order: -1;
        position: static;
        margin-bottom: 40px;
    }

    .your-data-partner-block-left {
        gap: 40px;
    }

    .your-data-partner-container h2 {
        font-size: 28px;
        text-align: left;
    }

    .your-data-partner-container > p {
        text-align: left;
        font-size: 16px;
    }
}

.connect-the-dots {
    padding: 100px 24px;
    background: #ffffff;
    text-align: center;
}

.connect-the-dots h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.connect-the-dots > p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 48px;
}

.connect-the-dots > img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto 80px auto;
    display: block;
    opacity: 0.9;
}

.connect-the-dots-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.connect-the-dots-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
}

.connect-the-dots-list li {
    text-align: left;
    padding: 24px;
    border-radius: 12px;
    transition: background 0.3s;
}

.connect-the-dots-list li:hover {
    background: #f9fafb;
}

.connect-the-dots-list li img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.connect-the-dots-list li h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.connect-the-dots-list li p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.connect-the-dots-list li a {
    font-size: 14px;
    font-weight: 600;
    color: #c8102e;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.connect-the-dots-list li a:hover {
    border-color: #c8102e;
}

@media (max-width: 1024px) {
    .connect-the-dots-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .connect-the-dots {
        padding: 60px 20px;
    }

    .connect-the-dots h2 {
        font-size: 28px;
    }

    .connect-the-dots-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .connect-the-dots-list li {
        padding: 20px 0;
        border-bottom: 1px solid #f3f4f6;
        border-radius: 0;
    }

    .connect-the-dots-list li:last-child {
        border-bottom: none;
    }

    .connect-the-dots-list li:hover {
        background: transparent;
    }
}

.numbers {
    padding: 80px 24px;
    background: #1a1a1a;
}

.numbers-list {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
}

.numbers-list li {
    text-align: center;
    position: relative;
}

.numbers-list li:not(:last-child):after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.numbers-list li h3 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.numbers-list li p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .numbers-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 20px;
    }

    .numbers-list li:nth-child(2):after {
        display: none;
    }
}

@media (max-width: 768px) {
    .numbers {
        padding: 60px 20px;
    }

    .numbers-list {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .numbers-list li:after {
        display: none !important;
    }

    .numbers-list li h3 {
        font-size: 40px;
    }
}

.insights-your-device {
    padding: 100px 24px;
    background: #f9fafb;
    overflow: hidden;
}

.insights-your-device h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.insights-your-device > p {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    margin-bottom: 60px;
}

.insights-your-device-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.insights-your-device-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 calc(33.333% - 16px);
}

.insights-your-device-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
}

.insights-your-device-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.insights-your-device-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 24px 24px 8px 24px;
}

.insights-your-device-item p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    padding: 0 24px 24px 24px;
}

@media (max-width: 1024px) {
    .insights-your-device-item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .insights-your-device {
        padding: 60px 20px;
    }

    .insights-your-device-item {
        flex: 0 0 85%;
    }

    .insights-your-device-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .insights-your-device-item {
        scroll-snap-align: center;
    }
    
    .insights-your-device-wrapper::-webkit-scrollbar {
        display: none;
    }
}

.user-story {
    padding: 100px 24px;
    background: #ffffff;
}

.user-story h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -1px;
}

.user-story-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.user-story-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.user-story-list li {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    position: relative;
}

.user-story-list li p {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 32px;
}

.user-story-list li h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.user-story-list li img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .user-story-wrapper {
        gap: 20px;
    }
    
    .user-story-list li {
        padding: 30px;
    }

    .user-story-list li p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .user-story {
        padding: 60px 20px;
    }

    .user-story h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .user-story-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .user-story-list {
        gap: 16px;
    }
    
    .user-story-list li {
        padding: 24px;
    }
}

.cta {
    padding: 100px 24px;
    background: #ffffff;
}

.cta-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, #c8102e 0%, #a50d26 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px;
    overflow: hidden;
    position: relative;
}

.cta-left {
    flex: 0 1 600px;
    z-index: 2;
}

.cta-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
}

.cta-left a {
    display: inline-block;
    background: #ffffff;
    color: #c8102e;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-left a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-img {
    flex: 0 0 400px;
    position: relative;
    z-index: 1;
}

.cta-img img {
    width: 100%;
    border-radius: 12px;
    height: auto;
    transform: scale(1.2);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@media (max-width: 1024px) {
    .cta-wrapper {
        padding: 60px;
    }

    .cta-left h2 {
        font-size: 36px;
    }

    .cta-img {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 40px 16px;
    }

    .cta-wrapper {
        flex-direction: column;
        padding: 48px 0 0 0;
        text-align: center;
        gap: 40px;
    }

    .cta-left {
        flex: 1;
    }

    .cta-left h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .cta-left a {
        width: 90%;
    }

    .cta-img {
        flex: 1;
        width: 100%;
    }

    .cta-img img {
        transform: scale(1);
    }
}

footer {
    background: #111827;
    padding: 80px 24px 60px 24px;
    color: #ffffff;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-first > a {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.footer-first p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
    max-width: 300px;
}

.footer-second h3,
.footer-third h3,
.footer-fourth-contact h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-second-list,
.footer-third-list,
.footer-fourth-contact-list {
    list-style: none;
    padding: 0;
}

.footer-second-list li,
.footer-third-list li,
.footer-fourth-contact-list li {
    margin-bottom: 12px;
}

.footer-second-list a,
.footer-third-list a,
.footer-fourth-contact-list a {
    font-size: 15px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-second-list a:hover,
.footer-third-list a:hover,
.footer-fourth-contact-list a:hover {
    color: #ffffff;
}

.footer-fourth-contact-list li {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.5;
    position: relative;
    padding-left: 0;
}

.footer-fourth-contact-adress {
    color: #ffffff !important;
    font-weight: 500;
}

.footer-fourth-contact-tel a {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 18px !important;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 20px 40px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-first, .footer-second, .footer-third, .footer-fourth-contact {
        text-align: left;
    }

    .footer-first p {
        max-width: 100%;
    }

    .footer-second h3, .footer-third h3, .footer-fourth-contact h3 {
        margin-bottom: 16px;
    }
}

.services-list {
    padding: 100px 24px;
    background: #ffffff;
}

.services-list h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.services-list-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
}

.services-list-wrapper li {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.services-list-wrapper li:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.services-list-wrapper li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.services-list-wrapper li h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.services-list-wrapper li h4 {
    font-size: 14px;
    font-weight: 600;
    color: #c8102e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.services-list-wrapper li p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.services-list-wrapper-text {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.services-list-wrapper-text span {
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
}

.services-list-wrapper li a {
    display: block;
    text-align: center;
    background: #111827;
    color: #ffffff;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.services-list-wrapper li a:hover {
    background: #374151;
}

@media (max-width: 1024px) {
    .services-list-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-list {
        padding: 60px 20px;
    }

    .services-list h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .services-list-wrapper {
        grid-template-columns: 1fr;
    }

    .services-list-wrapper li {
        padding: 24px;
    }
}

.services-advantages {
    padding: 100px 24px;
    background: #f9fafb;
}

.services-advantages h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.services-advantages > p {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    margin-bottom: 64px;
}

.services-advantages-list {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
}

.services-advantages-list li {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.services-advantages-list li:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.services-advantages-list li img {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.services-advantages-list li h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-advantages-list li p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .services-advantages-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-advantages {
        padding: 60px 20px;
    }

    .services-advantages h2 {
        font-size: 28px;
    }

    .services-advantages-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-advantages-list li {
        padding: 32px 24px;
    }
}

.services {
    padding: 100px 24px;
    background: #ffffff;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.services > p {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    margin-bottom: 80px;
}

.services-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.services-wrapper-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.services-wrapper-list li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-wrapper-list li img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.services-wrapper-list-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.services-wrapper-list-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.services-wrapper-list-text p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #c8102e;
    border-radius: 50%;
}

.services-wrapper-list-text p:first-of-type {
    font-weight: 600;
    color: #111827;
    padding-left: 0;
    margin-bottom: 20px;
    font-size: 18px;
}

.services-wrapper-list-text p:first-of-type:before {
    display: none;
}

.services-wrapper-list-text a {
    display: inline-block;
    margin-top: 32px;
    font-size: 15px;
    font-weight: 600;
    color: #c8102e;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.services-wrapper-list-text a:hover {
    border-color: #c8102e;
}

@media (max-width: 1024px) {
    .services-wrapper-list {
        gap: 60px;
    }

    .services-wrapper-list li {
        gap: 40px;
    }

    .services-wrapper-list-text h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .services-wrapper-list {
        gap: 80px;
    }

    .services-wrapper-list li {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-wrapper-list li:nth-child(even) img {
        order: -1;
    }

    .services-wrapper-list li img {
        height: 250px;
    }

    .services-wrapper-list-text h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .services-wrapper-list-text p:first-of-type {
        font-size: 16px;
    }
}

.map {
    padding: 100px 24px;
    background: #ffffff;
}

.map-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(1) contrast(1.2) opacity(0.8);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0) contrast(1) opacity(1);
}

@media (max-width: 768px) {
    .map {
        padding: 40px 16px;
    }

    .map-wrapper {
        border-radius: 16px;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

.service-detail-hero-layout {
    padding: 60px 24px;
    background: #ffffff;
}

.service-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.2s;
}

.btn-back-home:before {
    content: '←';
    margin-right: 8px;
}

.btn-back-home:hover {
    color: #c8102e;
}

.service-main-header {
    margin-bottom: 48px;
}

.service-main-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.service-main-header .subtitle {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.5;
}

.service-main-visual {
    margin-bottom: 60px;
}

.service-main-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-text-content {
    margin-bottom: 60px;
}

.service-text-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.service-text-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.service-text-content p {
    font-size: 17px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

.text-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0;
}

.highlight-item {
    background: #f9fafb;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #c8102e;
}

.highlight-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 15px;
    margin-bottom: 0;
}

.service-text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-text-content ul li {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.service-text-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c8102e;
    font-weight: 800;
}

.service-text-content ul li strong {
    color: #111827;
}

.service-text-cta {
    background: #111827;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
}

.service-text-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-text-cta p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-primary {
    background: #c8102e;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #a50d26;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .service-main-header h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .service-detail-hero-layout {
        padding: 40px 20px;
    }

    .service-main-header h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .service-main-visual img {
        height: 300px;
        border-radius: 16px;
    }

    .service-text-content h2 {
        font-size: 26px;
    }

    .service-text-cta {
        padding: 40px 24px;
    }

    .cta-btns {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.legal-content {
    padding: 80px 24px;
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-top: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 8px;
}

.legal-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content strong {
    color: #111827;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.legal-content ul li {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.legal-content ul li:last-child {
    margin-bottom: 0;
}

.legal-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #c8102e;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 40px 20px;
    }

    .legal-content h1 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .legal-content h3 {
        font-size: 18px;
        margin-top: 32px;
    }

    .legal-content ul {
        padding: 16px;
    }

    .legal-content p, .legal-content ul li {
        font-size: 15px;
    }
}

.contact {
    padding: 100px 24px;
    background: #f9fafb;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-left h3 {
    font-size: 24px;
    margin-bottom: 32px;
    color: #111827;
}

.contact-left-list {
    list-style: none;
    padding: 0;
}

.contact-left-list li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-left-list a {
    color: #c8102e;
    text-decoration: none;
    font-weight: 600;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-right input, 
.contact-right select, 
.contact-right textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.contact-right input:focus, 
.contact-right select:focus, 
.contact-right textarea:focus {
    border-color: #c8102e;
}

.contact-right label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: -12px;
}

.contact-right textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    background: #c8102e;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #a50d26;
}

.form-success-msg {
    text-align: center;
    padding: 40px 0;
}

.form-success-msg h3 {
    color: #111827;
    font-size: 24px;
    margin-bottom: 12px;
}

.form-success-msg p {
    color: #4b5563;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        gap: 40px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .contact-left h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.faq {
    padding: 100px 24px;
    background: #ffffff;
}

.faq h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -1px;
}

.faq-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.faq-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-list li {
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.faq-list li:last-child {
    border-bottom: none;
}

.faq-list h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.faq-list h4:before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f3f4f6;
    color: #c8102e;
    border-radius: 50%;
    margin-right: 16px;
    font-size: 14px;
}

.faq-list p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    padding-left: 44px;
}

.faq-img img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .faq-wrapper {
        gap: 40px;
    }
    
    .faq-list h4 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 20px;
    }

    .faq h2 {
        font-size: 28px;
        margin-bottom: 40px;
        text-align: left;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-img {
        order: -1;
        margin-bottom: 20px;
    }

    .faq-list {
        gap: 24px;
    }

    .faq-list p {
        padding-left: 0;
        margin-top: 8px;
    }
}

.faq-list li {
    cursor: pointer;
    transition: background 0.2s;
}

.faq-list p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s;
    margin-top: 0;
}

.faq-list li.open p {
    max-height: 200px;
    margin-top: 12px;
}

.faq-list li.open h4:before {
    background: #c8102e;
    color: #fff;
    content: '−';
}

.about {
    padding: 100px 24px;
    background: #ffffff;
}

.about-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-text > p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 40px;
}

.about-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-list li:before {
    content: '';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c8102e' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.about-list li p {
    font-size: 16px;
    color: #111827;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.about-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .about-wrapper {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-wrapper img {
        height: 300px;
        order: -1;
    }

    .about-text h2 {
        text-align: left;
    }
}

.choose-your-best {
    padding: 100px 24px;
    background: #f9fafb;
    text-align: center;
}

.choose-your-best h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 64px;
    letter-spacing: -1px;
}

.choose-your-best-list {
    max-width: 1280px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
}

.choose-your-best-list li {
    background: #ffffff;
    padding: 48px 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.choose-your-best-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.choose-your-best-list li img {
    width: 60px;
    height: 60px;
    margin-bottom: 32px;
}

.choose-your-best-list li h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.choose-your-best-list li p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.choose-your-best-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.choose-your-best-text span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #c8102e;
    background: rgba(200, 16, 46, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
}

.choose-your-best-btn {
    display: inline-block;
    background: #111827;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.choose-your-best-btn:hover {
    background: #374151;
}

@media (max-width: 1024px) {
    .choose-your-best-list {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .choose-your-best h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .choose-your-best {
        padding: 60px 20px;
    }

    .choose-your-best-list li {
        padding: 40px 24px;
    }

    .choose-your-best-btn {
        width: 100%;
    }
}

.advantages {
    padding: 100px 24px;
    background: #ffffff;
}

.advantages-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.advantages-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.advantages-wrapper > p {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    margin-bottom: 64px;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
}

.advantages-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: #f9fafb;
    border-radius: 16px;
    height: 100%;
    transition: background 0.3s ease;
}

.advantages-item:hover {
    background: #f3f4f6;
}

.advantages-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.advantages-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.advantages-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .advantages-list {
        gap: 24px;
    }
    
    .advantages-item {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .advantages {
        padding: 60px 20px;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }

    .advantages-wrapper h2 {
        font-size: 28px;
        text-align: left;
    }

    .advantages-wrapper > p {
        text-align: left;
        font-size: 16px;
        margin-bottom: 40px;
    }

    .advantages-item {
        gap: 16px;
    }
}

.quality-standards {
    padding: 100px 24px;
    background: #111827;
    color: #ffffff;
}

.quality-standards-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quality-standards-text h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c8102e;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.quality-standards-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.quality-standards-text > p {
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 40px;
}

.quality-standards-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quality-standards-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid #c8102e;
    transition: transform 0.2s;
}

.quality-standards-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.quality-standards-list li p {
    font-size: 16px;
    color: #e5e7eb;
    margin: 0;
    line-height: 1.5;
}

.quality-standards-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .quality-standards-wrapper {
        gap: 40px;
    }

    .quality-standards-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .quality-standards {
        padding: 60px 20px;
    }

    .quality-standards-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .quality-standards-text h3 {
        text-align: center;
    }

    .quality-standards-text h2 {
        font-size: 28px;
        text-align: center;
    }

    .quality-standards-text > p {
        text-align: center;
        font-size: 16px;
    }

    .quality-standards-wrapper img {
        height: 350px;
        order: -1;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.team-and-expertise {
    padding: 100px 24px;
    background: #ffffff;
}

.team-and-expertise-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-and-expertise-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-and-expertise-text h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c8102e;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.team-and-expertise-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.team-and-expertise-text > p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

.team-and-expertise-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-and-expertise-list li {
    position: relative;
    padding-left: 32px;
}

.team-and-expertise-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #c8102e;
    border-radius: 3px;
}

.team-and-expertise-list li p {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .team-and-expertise-wrapper {
        gap: 40px;
    }

    .team-and-expertise-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .team-and-expertise {
        padding: 60px 20px;
    }

    .team-and-expertise-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-and-expertise-wrapper img {
        height: 350px;
    }

    .team-and-expertise-text h3, 
    .team-and-expertise-text h2 {
        text-align: left;
    }

    .team-and-expertise-text > p {
        font-size: 16px;
    }
}

.how-we-work {
    padding: 100px 24px;
    background: #f9fafb;
}

.how-we-work h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.how-we-work > p {
    font-size: 18px;
    color: #4b5563;
    text-align: center;
    margin-bottom: 64px;
}

.how-we-work-list {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
    position: relative;
}

@media (min-width: 1025px) {
    .how-we-work-list:before {
        content: '';
        position: absolute;
        top: 40px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, #e5e7eb, #e5e7eb 10px, transparent 10px, transparent 20px);
        z-index: 1;
    }
}

.how-we-work-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.how-we-work-list li span {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    color: #c8102e;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.how-we-work-list li:hover span {
    border-color: #c8102e;
    background: #c8102e;
    color: #ffffff;
    transform: translateY(-5px);
}

.how-we-work-list h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.how-we-work-list p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 250px;
}

@media (max-width: 1024px) {
    .how-we-work-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}

@media (max-width: 768px) {
    .how-we-work {
        padding: 60px 20px;
    }

    .how-we-work h2 {
        font-size: 28px;
    }

    .how-we-work-list {
        grid-template-columns: 1fr;
    }

    .how-we-work-list li span {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .how-we-work-list p {
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .nav-list {
        gap: 12px;
    }
}

@media (max-width: 784px) {
    .nav-list {
        gap: 6px;
    }

    .nav {
        gap: 10px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 24px;
    display: none;
}

.cookie-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.btn-cookie-primary {
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie-primary:hover {
    background: #374151;
}

.btn-cookie-secondary {
    background: transparent;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-primary, .btn-cookie-secondary {
        width: 100%;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 24px;
    display: none;
}

.cookie-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.btn-cookie-primary {
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie-primary:hover {
    background: #374151;
}

.btn-cookie-secondary {
    background: transparent;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-primary, .btn-cookie-secondary {
        width: 100%;
    }
}

.insights-your-device {
    padding: 100px 24px;
    background: #ffffff;
    overflow: hidden;
}

.insights-your-device h2, 
.insights-your-device > p {
    text-align: center;
}

.insights-your-device-wrapper {
    max-width: 1280px;
    margin: 60px auto 0;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

.insights-your-device-wrapper::-webkit-scrollbar {
    display: none; 
}

.insights-your-device-item {
    flex: 0 0 300px;
    background: #f9fafb;
    padding: 0;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.insights-your-device-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.insights-your-device-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.insights-your-device-item p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .insights-your-device {
        padding: 60px 20px;
    }
    
    .insights-your-device-item {
        flex: 0 0 260px;
    }
    
    .insights-your-device-wrapper {
        gap: 16px;
        margin-top: 32px;
    }

    .header-contact-btn a {
        display: none;
    }
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f9fafb;
    text-align: center;
}

.error-container {
    max-width: 600px;
}

.error-visual {
    position: relative;
    margin-bottom: 32px;
}

.error-code {
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: #e5e7eb;
    display: block;
}

.error-icon {
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error-page h1 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.error-page p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.error-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

.error-footer p {
    font-size: 15px;
    margin-bottom: 0;
}

.error-footer a {
    color: #c8102e;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 100px;
    }
    
    .error-page h1 {
        font-size: 28px;
    }

    .error-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primaryy, .btn-secondaryy {
        width: 100%;
        text-align: center;
    }
}