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

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Oxanium', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

h1 {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    color: #FFFFFF;
    line-height: 1.2;
}

h2 {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}

h3 {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

h4 {
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.4;
}

h5 {
    font-family: 'Oxanium', sans-serif;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 8px;
}

h6 {
    font-family: 'Oxanium', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

p {
    font-family: 'Oxanium', sans-serif;
    letter-spacing: 0.3px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
}


@media (max-width: 600px) {
    h1 {
      font-size: 1.5rem;
      letter-spacing: 1px;
    }
    h2 {
      font-size: 1.1rem;
      letter-spacing: 1px;
    }
    h3 {
      font-size: 1rem;
      letter-spacing: 0.8px;
    }
    h4 {
      font-size: 0.95rem;
    }
    h5 {
      font-size: 0.9rem;
    }
    h6 {
      font-size: 0.85rem;
      letter-spacing: 0.6px;
    }
    p {
      font-size: 0.98rem;
      line-height: 1.5;
    }
  }

.section-title {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}

.category-title {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: clamp(1.2rem, 5vw, 2rem);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  p  { font-size: 1rem; }

  .section-title { font-size: 1.2rem; }
  .category-title { font-size: 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
  h4 { font-size: 0.95rem; }
  p  { font-size: 0.95rem; }

  .section-title { font-size: 1rem; }
  .category-title { font-size: 0.95rem; }
}

a, button, .btn {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a {
    color: #C0C0C0;
    text-decoration: none;
}

a:hover {
    color: #D8D8D8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}

.header-scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C0C0C0;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.lang-link:hover {
    color: #FFFFFF;
    border-color: rgba(192, 192, 192, 0.4);
    background: rgba(192, 192, 192, 0.1);
    transform: translateY(-2px);
}

.lang-link.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(216, 216, 216, 0.2));
    border-color: rgba(192, 192, 192, 0.4);
}

.lang-separator {
    color: rgba(192, 192, 192, 0.5);
    font-size: 0.8rem;
    margin: 0 5px;
}

@media (max-width: 600px) {
    .language-switcher {
      gap: 4px;
    }
    .lang-link,
    .lang-separator {
      font-size: 0.9rem; 
      padding: 2px 6px;  
    }
  }

.logo {
    font-size: 1.5rem;
    font-family: 'Michroma', sans-serif;
    color: #FFFFFF;
    letter-spacing: 4px;
    text-decoration: none;
    transition: text-shadow 0.4s ease, color 0.4s ease, letter-spacing 0.4s ease;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    padding: 5px 15px;
}

.logo:hover {
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.1rem;
        padding: 2px 10px;
        margin-right: 10px;
        letter-spacing: 2px;
        clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
    }
}
@media (max-width: 480px) {
    .logo {
        font-size: 0.95rem;
        padding: 2px 7px;
        margin-right: 10px;
        letter-spacing: 1px;
    }
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C0C0C0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
}

.mobile-toggle {
    display: none;
    font-size: 3rem;
    z-index: 1001;
    background: none;
    border: none;
    color: #e6e6e6;
    cursor: pointer;
}


.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.372);
    backdrop-filter: blur(15px);
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-nav .nav-link {
    font-size: 2rem;
    margin: 20px 0;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.mobile-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C0C0C0, #D8D8D8);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.mobile-nav .nav-link:hover {
    color: #C0C0C0;
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.mobile-nav .nav-link:hover::before {
    left: 0;
}

.mobile-nav .nav-link:hover::after {
    left: 100%;
}

.mobile-nav.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .nav-link:nth-child(1) { transition-delay: 0.2s; }
.mobile-nav.active .nav-link:nth-child(2) { transition-delay: 0.3s; }
.mobile-nav.active .nav-link:nth-child(3) { transition-delay: 0.4s; }
.mobile-nav.active .nav-link:nth-child(4) { transition-delay: 0.5s; }
.mobile-nav.active .nav-link:nth-child(5) { transition-delay: 0.6s; }
.mobile-nav.active .nav-link:nth-child(6) { transition-delay: 0.7s; }
.mobile-nav.active .nav-link:nth-child(7) { transition-delay: 0.8s; }

.background-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 200px 0 150px;
    min-height: 100vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-note {
    display: block;
    text-align: center;
    font-family: 'Oxanium', sans-serif;
    font-size: 1.08rem;
    color: #C0C0C0;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    opacity: 0.85;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    padding: 10px 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 16px rgba(192,192,192,0.07);
    border: 1px solid rgba(192,192,192,0.13);
    transition: background 0.3s, color 0.3s;
}
.cta-note:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;

}

section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Michroma', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 70px;
    text-align: center;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    transition: all 0.4s ease;
    
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(192, 192, 192, 0.2);
}

.portfolio {
    padding: 100px 0;
    background: rgba(192, 192, 192, 0.01);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-item {
    padding: 40px 30px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(192, 192, 192, 0.2);
}

.portfolio-item:hover::before {
    left: 100%;
}

.portfolio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(216, 216, 216, 0.2));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.portfolio-icon i {
    font-size: 1.8rem;
    color: #C0C0C0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
}

.portfolio-item:hover .portfolio-icon i {
    color: #000000;
}

.portfolio-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.portfolio-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.cta {
    padding: 100px 0;
    background: rgba(192, 192, 192, 0.02);
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.expertise-tagline {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: #FFFFFF !important;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-grid {
    margin-bottom: 50px;
}

.expertise-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #C0C0C0;
}

.expertise-items {
    display: grid;
    gap: 25px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.expertise-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(192, 192, 192, 0.2);
}

.expertise-item:hover::before {
    left: 100%;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(216, 216, 216, 0.2));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.expertise-icon i {
    font-size: 1.5rem;
    color: #C0C0C0;
    transition: all 0.4s ease;
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.3);
}

.expertise-item:hover .expertise-icon i {
    color: #000000;
}

.expertise-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.expertise-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.expertise-result {
    text-align: center;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.result-text {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: #FFFFFF !important;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .expertise-item {
        flex-direction: column;
        text-align: center;
    }
    
    .expertise-icon {
        margin: 0 auto 20px;
    }
}


footer {
    padding: 80px 0 40px;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}


.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.8rem;
    font-family: 'Michroma', sans-serif;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.location-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-item i {
    font-size: 0.8rem;
    color: #C0C0C0;
}

.location-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}


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

.footer-section h3 {
    font-size: 1rem;
    font-family: 'Michroma', sans-serif;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-section ul li a i {
    font-size: 0.8rem;
    color: #C0C0C0;
    width: 14px;
}

.contact-list li a {
    padding: 4px 0;
}



.nav-link-footer {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C0C0C0;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-links-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-inline a:hover {
    color: #FFFFFF;
}

.footer-links-inline span {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-location {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .location-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-location {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .section-title { font-size: 2rem; }
    .about-content { flex-direction: column; gap: 50px; }
    .hero { padding: 180px 0 120px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 1.8rem; }
    .cta h2 { font-size: 2.2rem; }
    .footer-content { flex-direction: column; text-align: center; align-items: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    .hero { padding: 160px 0 100px; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .btn { padding: 15px 35px; font-size: 0.9rem; }
    .hero { padding: 140px 0 80px; }
}

.background-scene canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-cursor {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    border: 2px solid rgb(157, 157, 157);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFFFFF, #E0E0E0);
    border: 2px solid rgb(255, 255, 255);
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.custom-cursor.click {
    transform: scale(0.8);
    background: linear-gradient(135deg, #A0A0A0, #808080);
}

.cursor-follower {
    width: 120px;
    height: 120px;
    background-color: transparent;
    border: 5px solid rgba(255, 255, 255, 0.358);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99997;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cursor-follower.hover {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.cursor-follower.click {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(192, 192, 192, 0.8);
}

.magnetic-wrap {
    position: relative;
    display: inline-block;
    
}

.magnetic-area {
    position: relative;
    transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1001;
    --scroll-progress: 0;
}

.scroll-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #C0C0C0, #D8D8D8, #F0F0F0);
    transform: scaleX(var(--scroll-progress));
    transform-origin: 0 50%;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.scroll-progress.active::before {
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(192, 192, 192, 0.5); }
    50% { box-shadow: 0 0 20px rgba(192, 192, 192, 0.8); }
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8, #F0F0F0);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 1px solid rgba(192, 192, 192, 0.8);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.3) 50%, transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 5px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(0, 0, 0, 0.1);
    border-color: rgba(64, 64, 64, 0.8);
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn:hover::before {
    left: 0;
}

.btn:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn .magnetic-area {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

.about-image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.portfolio-img-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(192, 192, 192, 0.2);
    transform: translateY(-2px);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #FFFFFF;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C0C0C0, #D8D8D8, #F0F0F0);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D8D8D8, #F0F0F0, #FFFFFF);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #A0A0A0, #C0C0C0, #D8D8D8);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #C0C0C0 rgba(0, 0, 0, 0.2);
}
.why-website {
    padding: 100px 0;
    background: rgba(192, 192, 192, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
  }
  
  .feature-item {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 24px 16px;
    box-sizing: border-box;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  @media (max-width: 900px) {
    .features-grid {
      grid-template-columns: 1fr 1fr; 
    }
  }
  @media (max-width: 600px) {
    .features-grid {
      grid-template-columns: 1fr; 
      gap: 16px;
      padding: 0 8px;
    }
    .feature-item h4, .feature-item p {
      font-size: 1rem;
      word-break: break-word;
    }
  }

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(192, 192, 192, 0.3);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon i {
    font-size: 2rem;
    color: #000000;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.4);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.branding-section {
    padding: 100px 0;
}

.branding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
  }
  
  .branding-item {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 24px 16px;
    box-sizing: border-box;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  @media (max-width: 900px) {
    .branding-grid {
      grid-template-columns: 1fr 1fr; 
    }
  }
  @media (max-width: 600px) {
    .branding-grid {
      grid-template-columns: 1fr; 
      gap: 16px;
      padding: 0 8px;
    }
    .branding-item h4, .branding-item p {
      font-size: 1rem;
      word-break: break-word;
    }
  }

.branding-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(192, 192, 192, 0.2);
}

.branding-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(216, 216, 216, 0.2));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.branding-icon i {
    font-size: 1.8rem;
    color: #C0C0C0;
    transition: all 0.4s ease;
}

.branding-item:hover .branding-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
}

.branding-item:hover .branding-icon i {
    color: #000000;
}

.summary-section {
    margin-top: 80px;
    text-align: center;
}

.summary-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.summary-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.quotes {
    margin-top: 40px;
}

.quotes blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    padding: 20px;
    border-left: 3px solid #C0C0C0;
    background: rgba(192, 192, 192, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}


.advantages-section {
    padding: 100px 0;
    background: rgba(192, 192, 192, 0.01);
}

.advantages-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.advantages-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
    overflow: hidden;
    border-radius: 8px;
}

.advantages-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(85%) contrast(1.1);
    transition: all 0.4s ease;
}

.advantages-content:hover .advantages-img {
    filter: grayscale(65%) contrast(1.2);
    transform: scale(1.02);
}

.advantages-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.advantages-highlights {
    display: flex;
    gap: 40px;
    margin: 50px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background-color: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    transition: all 0.4s ease;
    max-width: 350px;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(192, 192, 192, 0.4);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #C0C0C0;
    transition: all 0.4s ease;
}

.highlight-item:hover i {
    color: #D8D8D8;
    transform: scale(1.1);
}

.highlight-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.conclusion {
    font-size: 1.2rem !important;
    font-weight: 500;
    color: #FFFFFF !important;
    margin-bottom: 0 !important;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .advantages-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        max-width: 100%;
    }
    
    .advantages-img {
        height: 250px;
    }
}


.who-section {
    padding: 100px 0;
    background: rgba(192, 192, 192, 0.015);
}

.who-content {
    max-width: 800px;
    margin: 0 auto;
}

.who-intro {
    text-align: center;
    padding: 50px 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.who-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(246, 246, 246, 0.9);
    
}

.who-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.who-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.who-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.who-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(192, 192, 192, 0.2);
}

.who-highlight:hover::before {
    left: 100%;
}

.who-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(216, 216, 216, 0.2));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.who-icon i {
    font-size: 1.3rem;
    color: #C0C0C0;
    transition: all 0.4s ease;
}

.who-highlight:hover .who-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.3);
}

.who-highlight:hover .who-icon i {
    color: #000000;
}

.who-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.who-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .who-highlights {
        grid-template-columns: 1fr;
    }
    
    .who-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .who-icon {
        margin: 0 auto 15px;
    }
}


.benefits-section {
    padding: 100px 0;
    background: rgba(192, 192, 192, 0.02);
}

.benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.benefits-intro h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.benefits-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(192, 192, 192, 0.3);
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(216, 216, 216, 0.2));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: #C0C0C0;
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.4);
}

.benefit-item:hover .benefit-icon i {
    color: #000000;
}

.benefit-text h4 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1;
    filter: grayscale(100%) contrast(1.3) brightness(0.7);
    transition: opacity 0.3s ease;
    z-index: 0;
}


@media (max-width: 768px) {
    .hero-bg-video {
        opacity: 1;
        filter: grayscale(100%) contrast(1.2) brightness(0.8);
    }
    
    .hero-background::before {
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 0, 0, 0.5) 50%, 
            rgba(0, 0, 0, 0.8) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-video {
        display: none;
    }
}


.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(80%) contrast(1.1);
    transition: all 0.4s ease;
}

.about-image:hover .about-img {
    filter: grayscale(60%) contrast(1.2);
    transform: scale(1.02);
}


.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 6px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(90%) contrast(1.1);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-img {
    filter: grayscale(70%) contrast(1.2);
    transform: scale(1.05);
}

.expertise-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 8px;
}

.expertise-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(85%) contrast(1.1);
    transition: all 0.4s ease;
}

.expertise-intro:hover .expertise-img {
    filter: grayscale(65%) contrast(1.2);
    transform: scale(1.02);
}

.who-profile {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(192, 192, 192, 0.3);
    transition: all 0.4s ease;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.1);
    transition: all 0.4s ease;
}

.who-profile:hover {
    border-color: rgba(192, 192, 192, 0.5);
    transform: scale(1.05);
}

.who-profile:hover .profile-img {
    filter: grayscale(60%) contrast(1.2);
}

@media (max-width: 768px) {
    .portfolio-image {
        height: 200px;
    }
    
    .expertise-img {
        height: 200px;
    }
    
    .who-profile {
        width: 120px;
        height: 120px;
    }
}

.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.legal-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    max-width: 800px;
    max-height: 80vh;
    width: 90%;
    margin: 20px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.legal-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #C0C0C0;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #FFFFFF;
}

.modal-body {
    padding: 30px 40px;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
}

.modal-body h3 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin: 30px 0 15px 0;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.modal-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.modal-body ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}


.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(192, 192, 192, 0.5);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(192, 192, 192, 0.7);
}


@media (max-width: 900px) {
    .modal-content {
        width: 70vw;
        max-width: 340px;
        min-width: 160px;
        margin: 8px auto;
        padding: 0.7rem 0.5rem;
        border-radius: 10px;
        font-size: 0.93rem;
    }
    .modal-header {
        padding: 8px 10px 6px;
    }
    .modal-header h2 {
        font-size: 1.05rem;
    }
    .modal-body {
        padding: 8px 8px;
        max-height: calc(85vh - 40px);
    }
    .modal-body h3 {
        font-size: 0.98rem;
    }
    .modal-body p, .modal-body li {
        font-size: 0.88rem;
    }
    .modal-close {
        top: 5px;
        right: 5px;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .modal-content {
        width: 96vw;
        max-width: 320px;
        min-width: 220px;
        margin: 3px auto;
        padding: 0.4rem 0.2rem;
        border-radius: 7px;
        font-size: 0.89rem;
    }
    .modal-header {
        padding: 6px 6px 4px;
        flex-direction: column;
        align-items: flex-start;
    }
    .modal-header h2 {
        font-size: 0.92rem;
    }
    .modal-body {
        padding: 6px 3px;
        max-height: calc(90vh - 30px);
    }
    .modal-body h3 {
        font-size: 0.87rem;
    }
    .modal-body p, .modal-body li {
        font-size: 0.82rem;
    }
    .modal-close {
        top: 3px;
        right: 3px;
        font-size: 1rem;
    }
}


.accessibility-widget {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 99998;
    isolation: isolate; 
}


.a11y-toggle {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.454);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.842);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    color: #e7e7e7;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    filter: none !important; 
    transform: none !important; 
}

.a11y-toggle:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body.a11y-inverted .accessibility-widget {
    filter: invert(1) hue-rotate(180deg) !important;
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 10001 !important;
}

body.a11y-inverted .a11y-toggle {
    filter: none !important;
    background: rgba(0, 0, 0, 0.95) !important;
    color: #e7e7e7 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

body.a11y-inverted .a11y-panel {
    filter: none !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

body.a11y-high-contrast {
    background: #000 !important;
    color: #fff !important;
}
body.a11y-high-contrast header,
body.a11y-high-contrast .a11y-panel,
body.a11y-high-contrast .modal-content,
body.a11y-high-contrast .footer-content,
body.a11y-high-contrast .container,
body.a11y-high-contrast section,
body.a11y-high-contrast .portfolio-item,
body.a11y-high-contrast .expertise-item,
body.a11y-high-contrast .advantages-content,
body.a11y-high-contrast .branding-item,
body.a11y-high-contrast .who-intro,
body.a11y-high-contrast .benefit-item {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
}
body.a11y-high-contrast a,
body.a11y-high-contrast .btn,
body.a11y-high-contrast .nav-link,
body.a11y-high-contrast .footer-links-inline a {
    color: #fff !important;
    text-shadow: none !important;
    border-color: #fff !important;
}
body.a11y-high-contrast .a11y-btn.active {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

body.a11y-large-text {
    font-size: 1.25em !important;
}
body.a11y-larger-text {
    font-size: 1.5em !important;
}

body.a11y-focus-outline *:focus {
    outline: 3px solid #FFD600 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(255,214,0,0.3) !important;
}
body.a11y-focus-outline .a11y-btn:focus {
    outline: 3px solid #FFD600 !important;
    outline-offset: 2px !important;
}

.a11y-panel {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 280px;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 100001;
}

.a11y-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.a11y-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.a11y-header h3 {
    font-family: 'Michroma', sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0;
}

.a11y-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.a11y-close:hover {
    color: #C0C0C0;
}

.a11y-content {
    padding: 20px;
}

.a11y-section {
    margin-bottom: 25px;
}

.a11y-section:last-child {
    margin-bottom: 0;
    text-align: center;
}

.a11y-section h4 {
    font-family: 'Oxanium', sans-serif;
    font-size: 0.9rem;
    color: #C0C0C0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.a11y-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.a11y-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.a11y-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(192, 192, 192, 0.3);
}

.a11y-btn.active {
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    color: #000000;
    border-color: #C0C0C0;
}

.a11y-btn i {
    font-size: 0.8rem;
    width: 14px;
}

.a11y-reset {
    background: rgba(192, 192, 192, 0.1) !important;
    border-color: rgba(192, 192, 192, 0.3) !important;
    justify-content: center;
}

body.a11y-paused * {
    animation-play-state: paused !important;
    animation-duration: 0s !important;
    transition-duration: 0s !important;
    transform: none !important;
}

body.a11y-paused *:before,
body.a11y-paused *:after {
    animation-play-state: paused !important;
}
body.a11y-paused .accessibility-widget,
body.a11y-paused .a11y-toggle,
body.a11y-paused .a11y-panel,
body.a11y-paused .a11y-btn {
    animation-play-state: running !important;
    animation-duration: initial !important;
    transition-duration: 0.3s !important;
}

body.a11y-paused .a11y-toggle:hover {
    transform: scale(1.1) !important;
    transition: all 0.3s ease !important;
}

body.a11y-paused canvas,
body.a11y-paused .background-scene,
body.a11y-paused .background-scene * {
    animation-play-state: running !important;
    animation-duration: initial !important;
    transition-duration: initial !important;
}

.reading-guide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C0C0C0, #D8D8D8);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reading-guide.active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .accessibility-widget {
        bottom: 50px;
        left: 20px;
    }
    
    .a11y-panel {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .accessibility-widget {
        bottom: 50px;
        left: 20px;
    }
    
    .a11y-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .a11y-panel {
        width: calc(100vw - 80px);
        max-width: 280px;
        bottom: 55px;
        max-height: calc(100vh - 120px);
    }
    
    .a11y-header {
        padding: 15px;
    }
    
    .a11y-header h3 {
        font-size: 0.9rem;
    }
    
    .a11y-content {
        padding: 15px;
    }
    
    .a11y-section {
        margin-bottom: 20px;
    }
    
    .a11y-section h4 {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .a11y-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .accessibility-widget {
        bottom: 50px;
        left: 20px;
    }
    
    .a11y-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .a11y-panel {
        width: calc(100vw - 60px);
        max-width: 260px;
        bottom: 50px;
        max-height: calc(100vh - 100px);
    }
    
    .a11y-header {
        padding: 12px;
    }
    
    .a11y-header h3 {
        font-size: 0.85rem;
    }
    
    .a11y-content {
        padding: 12px;
    }
    
    .a11y-section {
        margin-bottom: 15px;
    }
    
    .a11y-section h4 {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .a11y-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .a11y-btn i {
        font-size: 0.7rem;
        width: 12px;
    }
}

@media (max-width: 360px) {
    .accessibility-widget {
        bottom: 8px;
        left: 20px;
    }
    
    .a11y-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .a11y-panel {
        width: calc(100vw - 50px);
        bottom: 45px;
        max-height: calc(100vh - 80px);
    }
    
    .a11y-header {
        padding: 10px;
    }
    
    .a11y-header h3 {
        font-size: 0.8rem;
    }
    
    .a11y-content {
        padding: 10px;
    }
    
    .a11y-section {
        margin-bottom: 12px;
    }
    
    .a11y-section h4 {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .a11y-btn {
        padding: 6px 8px;
        font-size: 0.7rem;
        gap: 6px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .a11y-panel {
        max-height: calc(100vh - 60px);
        bottom: 50px;
    }
    
    .a11y-content {
        padding: 10px;
    }
    
    .a11y-section {
        margin-bottom: 10px;
    }
    
    .a11y-btn {
        padding: 6px 10px;
    }
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .a11y-toggle {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .a11y-toggle:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
}


@media (prefers-reduced-motion: reduce) {
    .a11y-toggle,
    .a11y-panel,
    .a11y-btn {
        transition: none;
    }
}

@media (prefers-color-scheme: dark) {
    .a11y-panel {
        background-color: rgba(0, 0, 0, 0.98);
    }
}

    .a11y-panel {
        background-color: rgba(0, 0, 0, 0.98);
    }




    
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatbot-toggle {
    width: 100px;
    height: 100px;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.chatbot-toggle:hover::before {
    left: 100%;
}

.chatbot-toggle img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.chatbot-window {
    position: absolute;
    bottom: 120px;
    right: 80px;
    width: 350px;
    max-width: 90vw;
    max-height: 70vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chatbot-header img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
}

.chatbot-title {
    font-family: 'Michroma', sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chatbot-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: none;
    transition: all 0.3s ease;
    padding: 5px;
}

.chatbot-close:hover {
    color: #C0C0C0;
    transform: rotate(90deg);
}

.chatbot-messages {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    min-height: 200px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: 'Oxanium', sans-serif;
    line-height: 1.4;
    position: relative;
    animation: messageAppear 0.3s forwards;
    word-break: break-word;
    transition: all 0.2s ease;
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message.user {
    align-self: flex-end;
    background: rgba(0, 0, 0, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    max-width: 80px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #C0C0C0;
    border-radius: 50%;
    animation: typingAnimation 1.5s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.3s; }
.typing-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes typingAnimation {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.chatbot-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-input input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Oxanium', sans-serif;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-bottom-color: #C0C0C0;
}

.chatbot-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.chatbot-send {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.3rem;
    cursor: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    color: #C0C0C0;
    background: rgba(192, 192, 192, 0.1);
    transform: scale(1.1);
}

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.chatbot-option {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.88);
    clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
    padding: 8px 12px;
    font-size: 0.9rem;
    cursor: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Oxanium', sans-serif;
    letter-spacing: 0.3px;
}

.chatbot-option:hover {
    background: rgba(255, 255, 255, 0.13);
    color: #FFFFFF;
    border-color: rgba(192, 192, 192, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


@media (max-width: 480px) {
    .chatbot-container {
        right: 15px;
        bottom: 20px;
    }
    
    .chatbot-window {
        width: 95vw;
        right: 0;
        left: auto;
        margin: 0;
        min-width: 0;
        max-width: 100vw;
        max-height: 60vh;
    }
    
    .chatbot-toggle {
        width: 80px;
        height: 80px;
    }
    
    .chatbot-toggle img {
        width: 80px;
        height: 80px;
    }
    
    .chatbot-header {
        padding: 12px 15px;
    }
    
    .chatbot-messages {
        padding: 15px;
        max-height: 300px;
    }
    
    .message {
        max-width: 90%;
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .chatbot-input {
        padding: 12px 15px;
    }
    
    .chatbot-option {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}


.devo0-watermark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Oxanium', sans-serif;
}

.made-by-text {
    font-style: italic;
}

.watermark-logo {
    height: 16px;
    width: auto;
    opacity: 0.7;
}



.site-loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgb(10, 10, 10);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.77,0,0.18,1);
    opacity: 1;
    pointer-events: all;
  }
  .site-loader.hide {
    opacity: 0;
    pointer-events: none;
  }
  .loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .loader-logo {
    font-family: 'Michroma', 'Oxanium', sans-serif;
    font-size: 2.7rem;
    color: #fff;
    letter-spacing: 8px;
    text-shadow: 0 4px 24px rgba(255,255,255,0.10), 0 1px 0 #a1a1a1;
    margin-bottom: 12px;
    user-select: none;
    filter: blur(0.5px);
  }
  .loader-bar {
    width: 220px;
    height: 7px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(31,38,135,0.18);
  }
  .loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,#a1a1a1 0%,#a1a1a1 100%);
    border-radius: 8px;
    animation: loader-progress 1.1s cubic-bezier(0.77,0,0.18,1) forwards;
  }
  @keyframes loader-progress {
    from { width: 0; }
    to { width: 100%; }
  }
  @media (max-width: 600px) {
    .loader-logo { font-size: 1.5rem; }
    .loader-bar { width: 120px; }
  }
  
  .cookie-bar {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2000;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.13);
      color: rgba(255,255,255,0.88);
      clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
      backdrop-filter: blur(18px) saturate(120%);
      padding: 18px 32px 18px 22px;
      display: flex;
      align-items: center;
      min-width: 320px;
      max-width: 95vw;
      transition: opacity 0.5s, bottom 0.5s;
      font-family: 'Oxanium', 'Michroma', sans-serif;
    }
    .cookie-bar-content {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .cookie-bar-icon {
      font-size: 2.1rem;
      color: #c4c4c4;
      filter: drop-shadow(0 2px 8px rgba(255,179,71,0.2));
    }
    .cookie-bar-text {
      font-size: 1.1rem;
      color: rgba(201, 201, 201, 0.95);
      line-height: 1.5;
    }
    .cookie-policy-link {
      color: #ffffff;
      text-decoration: underline;
      transition: color 0.3s;
    }
    .cookie-policy-link:hover {
      color: #fff;
    }
    .cookie-bar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cookie-btn {
      background: rgba(255,255,255,0.07);
      border: 1.5px solid rgba(255,255,255,0.16);
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.25rem;
      cursor: pointer;
      transition: background 0.3s, border 0.3s, color 0.3s, transform 0.2s;
      outline: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    .cookie-btn.accept {
      color: #b3b0b0;
    }
    .cookie-btn.reject {
      color: #ffffff;
    }
    .cookie-btn:hover {
      background: rgba(255,255,255,0.15);
      transform: scale(1.08);
    }
    @media (max-width: 600px) {
      .cookie-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 6px;
        min-width: 0;
        width: 60vw;
        left: 18vw;
        transform: none;
        bottom: 60px;
      }
      .cookie-bar-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
      }
      .cookie-bar-text {
        font-size: 1rem;
      }
    }

    
.contact-btn-group {
    position: fixed;
    top: 50%;
    right: 45px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 99997;
    isolation: isolate;
  }
  
  .contact-btn {
    font-size: 1.1rem;
    color: #C0C0C0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(192, 192, 192, 0.2);
    clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
    backdrop-filter: blur(8px);
    text-decoration: none;
    padding: 12px 18px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    outline: none;
  }
  
  .contact-btn:hover, .contact-btn:focus {
    color: #fff;
    border-color: rgba(192,192,192,0.4);
    background: rgba(192,192,192,0.1);
    transform: translateY(-2px) scale(1.06);
  }
  
  .contact-btn .magnetic-area {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-btn i {
    font-size: 1.3rem;
    color: inherit;
    transition: color 0.3s, transform 0.3s;
  }
  
  .contact-btn:active i {
    transform: scale(0.92);
  }
  
  @media (max-width: 900px) {
    .contact-btn-group {
      right: 45px;
      gap: 12px;
    }
    .contact-btn {
      padding: 10px 12px;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 600px) {
    .contact-btn-group {
      right: 45px;
      gap: 7px;
    }
    .contact-btn {
      padding: 8px 8px;
      font-size: 0.96rem;
    }
  }
  
  
  
  .contact-btn[aria-label]:after {
    content: attr(aria-label);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 0.85rem;
    padding: 3px 10px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    white-space: nowrap;
    z-index: 1000;
  }
  
  .contact-btn:hover[aria-label]:after, .contact-btn:focus[aria-label]:after {
    opacity: 1;
  }
  
  .contact-btn {
    position: relative;
  }
  
  .contact-btn:active {
    filter: brightness(1.1);
  }
  
  

  .demo-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(192, 192, 192, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.25s cubic-bezier(.4,0,.2,1);
  }
  .demo-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
  }
  .demo-modal[aria-hidden="false"] {
    display: flex;
  }
  .demo-modal-content {
    position: relative;
    width: 92vw;
    max-width: 1450px;
    min-width: 1250px;
    max-height: 96vh;
    margin: auto;
    background: rgba(24, 24, 24, 0.95);
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.32);
    border: 1px solid rgba(192, 192, 192, 0.2);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    overflow: auto;
    padding: 2.5rem 2rem 2rem 2rem;
    color: #fff;
    font-family: 'Oxanium', 'Michroma', Arial, sans-serif;
    backdrop-filter: blur(14px);
    animation: modalIn 0.33s cubic-bezier(.4,0,.2,1);
    z-index: 999999;
  }
  @keyframes modalIn {
    0% { transform: scale(0.98) translateY(24px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
  }
  .demo-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 999999;
    opacity: 0.74;
    transition: opacity 0.18s;
  }
  .demo-modal-close:hover,
  .demo-modal-close:focus {
    opacity: 1;
    outline: none;
  }
  .demo-modal-body {
    margin-top: 1.2rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #e9e9e9;
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
  }
  
  

@media (min-width: 1600px) {
  .demo-modal-content {
    max-width: 1550px;
    min-width: 1350px;
    padding: 3rem 3rem 2.5rem 3rem;
  }
}


@media (max-width: 1599px) {
  .demo-modal-content {
    max-width: 1200px;
    min-width: 900px;
    padding: 2.5rem 2rem 2rem 2rem;
  }
}

@media (max-width: 1199px) {
  .demo-modal-content {
    max-width: 900px;
    min-width: 0;
    width: 96vw;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    font-size: 1rem;
  }
  .demo-modal-body {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .demo-modal-content {
    max-width: 98vw;
    width: 98vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    font-size: 0.97rem;
  }
  .demo-modal-close {
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
  }
  .demo-modal-body {
    margin-top: 0.7rem;
    font-size: 0.97rem;
  }
}

@media (max-width: 599px) {
  .demo-modal-content {
    max-width: 100vw;
    width: 100vw;
    min-width: 0;
    padding: 1rem 0.1rem 1rem 0.1rem;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.94rem;
    clip-path: none;
  }
  .demo-modal-body {
    font-size: 0.94rem;
    margin-top: 0.5rem;
    clip-path: none;
  }
  .demo-modal-close {
    top: 6px;
    right: 8px;
    font-size: 1.3rem;
  }
}

@media (max-width: 899px) {
  .demo-modal-content {
    max-height: 94vh;
    overflow-y: auto;
  }
}


.demos-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.demos-section h2 {
    font-family: 'Michroma', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 70px;
    text-align: center;
}

.demos-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.demo-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    overflow: hidden;
    opacity: 1;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px 0 rgba(31, 38, 135, 0.47);
}

.demo-card.hidden {
    display: none;
}

.demo-card.fade-in {
    display: grid;
    animation: fadeIn 0.5s ease forwards;
}


.demo-image-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    overflow: hidden;
}

.demo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.demo-content {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.221);
    backdrop-filter: blur(5px);
    transform: translateZ(20px);
    position: relative;
}

.demo-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transform: translateZ(30px);
    position: relative;
}

.demo-content p {
    margin-bottom: 1rem;
    transform: translateZ(25px);
    position: relative;
}

.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(226, 226, 226, 0.833);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(18px) saturate(120%);
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-link i {
    font-size: 0.8rem;
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
}

.demo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.demo-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.demo-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 0, 0, 0.1);
}

.demo-card:hover::before {
    transform: translateX(100%);
}

.demo-card:hover .demo-image {
    transform: scale(1.05);
}

.demo-card:hover .demo-content::before {
    opacity: 1;
}

.demo-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.25);
    background: rgb(0, 0, 0);
    color: #e8e8e8;
}

.demo-link:hover::before {
    opacity: 1;
}

.demo-link:hover i {
    transform: translateX(4px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (hover: hover) {
    .demo-card {
        transform: perspective(1000px) rotateX(0) rotateY(0);
    }
    
    .demo-card:hover {
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    }
}

@media (max-width: 768px) {
    .demos-section {
        padding: 4rem 0;
    }

    .demos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demo-image-container {
        height: 200px;
    }

    .demo-card:hover {
        transform: translateY(-10px);
    }

    .demo-link {
        padding: 0.4rem 0.8rem;
    }
}



.ethics-section {
    padding: 100px 0;
    background: rgba(192, 192, 192, 0.02);
}

.ethics-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ethics-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.ethics-intro-content {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.ethics-intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-family: 'Michroma', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ethics-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.ethics-intro-content p:last-child {
    margin-bottom: 0;
}

.ethics-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.ethics-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.ethics-intro-image:hover .ethics-image {
    opacity: 1;
    transform: scale(1.05);
}

.ethics-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ethics-category {
    position: relative;
}

.category-title {
    font-size: 1.8rem;
    color: #FFFFFF;
    font-family: 'Michroma', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}

h3.category-title {
    font-size: 1.8rem;
    color: #FFFFFF;
    font-family: 'Michroma', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h3.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}

.ethics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.ethics-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.ethics-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.ethics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(192, 192, 192, 0.3);
}

.ethics-item:hover::before {
    left: 100%;
}

.ethics-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(216, 216, 216, 0.2));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-top: 5px;
}

.ethics-icon i {
    font-size: 1.3rem;
    color: #C0C0C0;
    transition: all 0.4s ease;
}

.ethics-item:hover .ethics-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, #C0C0C0, #D8D8D8);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.4);
}

.ethics-item:hover .ethics-icon i {
    color: #000000;
}

.ethics-text {
    flex: 1;
}

.ethics-text h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    line-height: 1.4;
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
}

.ethics-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 1024px) {
    .ethics-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ethics-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .ethics-section {
        padding: 60px 0;
    }
    
    .ethics-intro-content {
        padding: 30px;
    }
    
    .ethics-intro-content h2 {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .ethics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ethics-item {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .ethics-icon {
        margin-top: 0;
    }
    
    .ethics-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .ethics-intro-content {
        padding: 20px;
    }
    
    .ethics-intro-content h2 {
        font-size: 1.5rem;
    }
    
    .ethics-item {
        padding: 20px;
    }
    
    .ethics-image {
        height: 200px;
    }
}




body.a11y-large-text {
    font-size: 120% !important;
}

body.a11y-large-text h1 {
    font-size: 3rem !important;
}

body.a11y-large-text h2 {
    font-size: 2.16rem !important;
}

body.a11y-large-text h3 {
    font-size: 1.68rem !important;
}

body.a11y-large-text h4 {
    font-size: 1.44rem !important;
}

body.a11y-large-text h5 {
    font-size: 1.32rem !important;
}

body.a11y-large-text h6 {
    font-size: 1.2rem !important;
}

body.a11y-large-text p,
body.a11y-large-text .btn,
body.a11y-large-text .nav-link,
body.a11y-large-text .lang-link {
    font-size: 1.32rem !important;
}

body.a11y-larger-text {
    font-size: 80% !important;
}

body.a11y-larger-text h1 {
    font-size: 2rem !important;
}

body.a11y-larger-text h2 {
    font-size: 1.44rem !important;
}

body.a11y-larger-text h3 {
    font-size: 1.12rem !important;
}

body.a11y-larger-text h4 {
    font-size: 0.96rem !important;
}

body.a11y-larger-text h5 {
    font-size: 0.88rem !important;
}

body.a11y-larger-text h6 {
    font-size: 0.8rem !important;
}

body.a11y-larger-text p,
body.a11y-larger-text .btn,
body.a11y-larger-text .nav-link,
body.a11y-larger-text .lang-link {
    font-size: 0.88rem !important;
}


body.a11y-high-contrast {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

body.a11y-high-contrast * {
    background-color: transparent !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

body.a11y-high-contrast .btn,
body.a11y-high-contrast button {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: 2px solid #FFFFFF !important;
}

body.a11y-high-contrast a {
    color: #FFD700 !important;
    text-decoration: underline !important;
}

body.a11y-high-contrast a:hover {
    color: #FFFFFF !important;
    background-color: #FFD700 !important;
}


body.a11y-paused *,
body.a11y-paused *::before,
body.a11y-paused *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    cursor: default !important;
}

body.a11y-paused .hero-bg-video {
    animation: none !important;
}

.reading-guide {
    position: fixed;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reading-guide.active {
    opacity: 1;
}

.reading-guide::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 1px;
    background: rgba(255, 215, 0, 0.3);
}

.reading-guide::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 1px;
    background: rgba(255, 215, 0, 0.3);
}


