/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&family=Unbounded:wght@400;500;600;700;800&display=swap');

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

/* CSS Variables */
:root {
    --color-bg-light: #E8E5DF;
    --color-bg-dark: #1A1A1A;
    --color-text-dark: #1A1A1A;
    --color-text-light: #E8E5DF;
    --color-accent: #000;
    --font-primary: 'Unbounded', sans-serif;
    --font-secondary: 'Nunito Sans', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid var(--color-text-dark);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-text-dark);
    color: var(--color-bg-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-light);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.logo img {
    height: 40px;
}

.logo span {
    color: var(--color-text-dark);
}

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

.nav-item a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-item.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 200px;
}

.nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
}

.dropdown li a:hover {
    background-color: rgba(0,0,0,0.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle {
    position: relative;
    width: 25px;
    height: 20px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition);
    position: absolute;
    left: 0;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 18px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 900px;
    margin: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-align: left;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 0 30px 0;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 40px;
}

.hero-buttons .btn-primary:first-child {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    border-color: var(--color-text-dark);
}

.hero-buttons .btn-primary:first-child:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border-color: var(--color-bg-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-form input {
    padding: 12px 20px;
    border: 2px solid var(--color-text-light);
    background-color: transparent;
    color: var(--color-text-light);
    font-family: var(--font-secondary);
    font-size: 16px;
}

.contact-form input::placeholder {
    color: rgba(232, 229, 223, 0.7);
}

.contact-form button {
    width: 100%;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-section.light {
    background-color: var(--color-bg-light);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-section .contact-form input {
    padding: 12px 20px;
    border: 2px solid var(--color-text-dark);
    background-color: transparent;
    color: var(--color-text-dark);
    font-family: var(--font-secondary);
    font-size: 16px;
}

.contact-form-section .contact-form input::placeholder {
    color: rgba(26, 26, 26, 0.5);
}

.contact-form-section .contact-form .btn-primary {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    border-color: var(--color-text-dark);
}

.contact-form-section .contact-form .btn-primary:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border-color: var(--color-bg-dark);
}


/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

.stat-number {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.1;
    word-break: break-word;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: clamp(11px, 2vw, 14px);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.stat-subtext {
    font-size: 13px;
    color: #666;
}

/* Section Titles */
.section-title {
    font-size: clamp(24px, 5vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(14px, 3vw, 18px);
    color: #666;
    max-width: 800px;
    margin: -40px auto 60px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 15px;
    box-sizing: border-box;
    line-height: 1.5;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.expertise .section-title {
    color: var(--color-text-light);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.expertise-item {
    padding: 30px 0;
}

.expertise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.expertise-header h3 {
    font-size: 20px;
    margin: 0;
}

.expertise-arrow {
    font-size: 24px;
    opacity: 0.7;
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.expertise-divider {
    height: 1px;
    background-color: rgba(232, 229, 223, 0.2);
    margin: 0;
}

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

.expertise-card {
    text-align: center;
    padding: 30px;
}

.expertise-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    position: relative;
}

.expertise-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-text-light);
}

.icon-tech::before {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon-executive::before {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.icon-engineering::before {
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.icon-defense::before {
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.icon-ngo::before {
    border-radius: 50%;
}

.icon-entertainment::before {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.expertise-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.expertise-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Case Study Sections */
.case-study {
    padding: 80px 0;
}

.case-study.dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.case-study.light {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.case-content.single-column {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.case-image {
    position: relative;
}

.case-image img {
    width: 100%;
    border-radius: 8px;
}

.view-case-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    background-color: rgba(255,255,255,0.9);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.view-case-btn:hover {
    background-color: white;
}

.case-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.case-text p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

blockquote {
    border-left: 3px solid currentColor;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
}

blockquote p {
    margin-bottom: 15px;
    font-size: 15px;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
}

.client-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-logos img {
    height: 40px;
    opacity: 0.7;
}

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

.team.dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.team .section-title {
    color: var(--color-text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.team-member {
    display: flex;
    gap: 30px;
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.member-info h3 {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.member-role {
    font-size: clamp(12px, 3vw, 14px);
    opacity: 0.7;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.member-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

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

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links img {
    width: 20px;
    height: 20px;
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
}

.timeline.light {
    background-color: var(--color-bg-light);
}

.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-text-dark);
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background-color: var(--color-text-dark);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-light);
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 14px;
    max-width: 200px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background-color: rgba(232, 229, 223, 0.05);
    border: 1px solid rgba(232, 229, 223, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover {
    background-color: rgba(232, 229, 223, 0.1);
    border-color: rgba(232, 229, 223, 0.2);
    transform: translateY(-5px);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(232, 229, 223, 0.2);
    line-height: 1;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.why-card h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 12px;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
}

.why-card p {
    font-size: clamp(14px, 2vw, 16px);
    opacity: 0.85;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Facts Section */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.fact-item {
    text-align: left;
}

.fact-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    opacity: 0.3;
}

.fact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.fact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing.dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

/* Vacancies Section */
.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vacancies-cta {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.vacancies-cta .btn-primary {
    border-color: var(--color-text-light);
    color: var(--color-text-light);
}

.vacancies-cta .btn-primary:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-dark);
}

.vacancy-card {
    background-color: rgba(232, 229, 223, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.vacancy-card:hover {
    background-color: rgba(232, 229, 223, 0.15);
    transform: translateY(-5px);
}

.vacancy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.vacancy-logo {
    width: 50px;
    height: 50px;
    background-color: rgba(232, 229, 223, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.vacancy-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vacancy-card h3 {
    font-size: 24px;
    margin-bottom: 0;
    color: var(--color-text-light);
    flex: 1;
}

.vacancy-position {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.vacancy-location {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.vacancy-salary {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-light);
}

.pricing-card {
    text-align: center;
}

.hexagon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.pricing-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.contact.dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.contact-details {
    text-align: center;
    width: 100%;
}

.contact-details h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 15px;
    text-align: center;
}

.contact-details > p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact-info-list {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    margin-bottom: 0;
}

.info-item {
    text-align: center;
}

.info-item h4 {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.7;
    text-align: center;
}

.info-item a,
.info-item p {
    font-size: 16px;
    text-align: center;
    display: block;
}

.contact-details .btn-primary {
    border-color: var(--color-text-light);
    color: var(--color-text-light);
    margin-top: 20px;
}

.contact-details .btn-primary:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-dark);
}

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    overflow: hidden;
}

.trusted-by .section-title {
    color: var(--color-text-light);
    margin-bottom: 60px;
}

.trusted-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.trusted-track {
    display: flex;
    gap: 60px;
    animation: scroll 15s linear infinite;
    will-change: transform;
}

.trusted-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(232, 229, 223, 0.1);
    border-radius: 8px;
    color: var(--color-text-light);
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trusted-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trusted-item:hover .trusted-logo {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background-color: var(--color-bg-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-brand p:last-child a {
    font-size: 16px;
    font-weight: 600;
}

.footer-dev {
    margin-top: 30px;
    font-size: 12px;
    opacity: 0.7;
}

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

.footer-nav a {
    font-size: 12px;
    font-family: var(--font-primary);
    font-weight: 400;
    opacity: 0.7;
}

.footer-contact p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-contact a {
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .case-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        padding: 0 10px;
    }

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

@media (max-width: 768px) {
    .navbar .btn-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-light);
        flex-direction: column;
        padding: 40px 20px;
        transition: none;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        border: none;
        padding-left: 20px;
    }

    .hero {
        margin-top: 60px;
        padding: 40px 0;
        width: 100%;
        overflow-x: hidden;
    }

    .hero .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        padding: 0 5px;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 60px);
        padding: 0 10px;
        word-wrap: break-word;
    }

    .hero-subtitle {
        padding: 0 10px;
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 10px;
    }

    .hero-buttons .btn-primary {
        width: 100%;
        margin-left: 0 !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 10px 5px;
    }

    .stat-number {
        font-size: clamp(24px, 8vw, 40px);
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: clamp(10px, 3vw, 12px);
        line-height: 1.2;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .why-number {
        font-size: 36px;
    }

    .expertise-grid,
    .vacancies-grid,
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-wrapper {
        flex-direction: column;
        gap: 50px;
        align-items: center;
        padding: 0 15px;
        width: 100%;
    }

    .timeline-wrapper::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-dot {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 25px;
    }

    .timeline-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
    }

    .timeline-item p {
        font-size: 16px;
        max-width: 100%;
        width: 100%;
        line-height: 1.6;
        padding: 0 10px;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }

    .member-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .member-image img,
    .member-image div {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 200 / 280;
        max-height: 400px;
        border-radius: 8px;
    }

    .member-info {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .member-info h3 {
        text-align: center;
        width: 100%;
        font-size: clamp(14px, 5vw, 18px);
        padding: 0 10px;
        box-sizing: border-box;
    }

    .member-role {
        text-align: center;
        font-size: clamp(11px, 3.5vw, 13px);
        padding: 0 10px;
        box-sizing: border-box;
    }

    .team .section-title {
        font-size: clamp(20px, 6vw, 32px);
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .team .section-subtitle {
        font-size: clamp(13px, 4vw, 16px);
        margin: -20px auto 40px;
        padding: 0 20px;
        line-height: 1.4;
    }

    .case-content.single-column {
        grid-template-columns: 1fr;
    }

    .contact-info-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .manager-photo {
        width: 120px;
        height: 120px;
    }

    .manager-name {
        font-size: 24px;
    }

    .manager-contacts {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .trusted-by {
        padding: 60px 0;
    }

    .trusted-item {
        width: 150px;
        height: 80px;
    }

    .trusted-track {
        gap: 40px;
        animation-duration: 10s;
    }

    .trusted-logo {
        font-size: 12px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}


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

.modal-content {
    background-color: var(--color-bg-light);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--color-text-dark);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

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

.modal-manager {
    text-align: center;
}

.manager-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-assigned {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.manager-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    font-family: var(--font-primary);
}

.manager-contacts {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.telegram-btn {
    background-color: #0088cc;
    color: white;
}

.telegram-btn:hover {
    background-color: #0077B5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

section {
    animation: fadeIn 0.6s ease-out;
}
