/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar {
    padding: 0 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.logo-icon img {
    height: 100%;
    width: 200px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #f3ebeb;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fcf9f9;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #f8f6f6;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #f77de6, #f472f6);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 136, 220, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fe66cb;
    border: 2px solid #7c3aed;
}

.btn-secondary:hover {
    background: #efeef1;
    color: white;
    transform: translateY(-2px);
}

.btn-primary.large,
.btn-secondary.large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.word.accent {
    color: #5e17eb;
    font-weight: bold;
}

/* Word-by-word animation */
.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordFadeUp 0.6s ease forwards;
}

/* Animation keyframes */
@keyframes wordFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    margin-bottom: 1rem;
    color: #7c3aed;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-alt {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-block {
    margin-bottom: 2.5rem;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.content-block p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
}

.achievement-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.achievement-text h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.achievement-text p {
    color: #4a5568;
    font-size: 0.9rem;
}

.about-visual {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.visual-card .card-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background: #f8fafc;
    padding: 8rem 0;
}

.priacc-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.priacc-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.priacc-collection-card {
    width: 100%;
    max-width: 350px;
    height: 420px;
    perspective: 1000px;
    margin: 10px;
    animation: fadeInUp 0.6s ease-out both;
}

.priacc-collection-card:nth-child(1) {
    animation-delay: 0.1s;
}

.priacc-collection-card:nth-child(2) {
    animation-delay: 0.2s;
}

.priacc-collection-card:nth-child(3) {
    animation-delay: 0.3s;
}

.priacc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    cursor: pointer;
}

.priacc-collection-card:hover .priacc-card-inner {
    transform: rotateY(180deg);
}

.priacc-card-front,
.priacc-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    overflow: hidden;
    top: 0;
    left: 0;
}

.priacc-card-front {
    background: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.priacc-card-front img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.priacc-card-content {
    padding: 1.5rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.priacc-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.priacc-card-back {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: white;
    transform: rotateY(180deg);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.priacc-card-back h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.priacc-card-back p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.priacc-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.priacc-feature-tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mission-text {
    animation: slideInLeft 0.8s ease-out;
}

.mission-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pillar h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pillar p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

.orbit-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
}

.orbit-2 {
    width: 220px;
    height: 220px;
    top: 40px;
    left: 40px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 140px;
    height: 140px;
    top: 80px;
    left: 80px;
    animation-duration: 10s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: rotateReverse 20s linear infinite;
}

.orbit-2 .orbit-item {
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit-3 .orbit-item {
    animation-duration: 10s;
}

@keyframes rotateReverse {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(-360deg);
    }
}

.center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us Section */
.why-choose {
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleY(1);
}

.advantage-card:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 800;
    color: #7c3aed;
    opacity: 0.3;
}

.advantage-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.advantage-content p {
    color: #4a5568;
    line-height: 1.6;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    color: #7c3aed;
    opacity: 0.7;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

/* Testimonials Section */
.testimonials {
    background: #fdfcfc;
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
}

.testimonial-header {
    margin-bottom: 1.5rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.company-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: #7c3aed;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h5 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #7c3aed;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Technologies Section */
.tech-section {
    padding: 4rem 0;
    background: #ffffff;
}

.tech-section h2 {
    text-align: center;
    color: #100f0f;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 700;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.marquee {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    text-align: center;
    color: #555;
}

.tech-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #999;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #7c3aed;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #999;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #7c3aed;
}

/* WhatsApp Button */
.whatsapp-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.whatsapp-bar:hover {
    background-color: #128C7E;
}

.whatsapp-button {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .priacc-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .orbit-container {
        width: 250px;
        height: 250px;
    }
    
    .orbit-1 {
        width: 250px;
        height: 250px;
        top: 0;
        left: 0;
    }
    
    .orbit-2 {
        width: 180px;
        height: 180px;
        top: 35px;
        left: 35px;
    }
    
    .orbit-3 {
        width: 110px;
        height: 110px;
        top: 70px;
        left: 70px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: white;
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    /* Hero Section Mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-title .word {
        display: block;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements {
        flex-direction: column;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Services Mobile */
    .priacc-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .priacc-collection-card {
        height: 350px;
        max-width: 100%;
    }
    
    /* Mission Section Mobile */
    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .orbit-container {
        width: 200px;
        height: 200px;
        margin: 2rem auto 0;
    }
    
    .orbit-1 {
        width: 200px;
        height: 200px;
        top: 0;
        left: 0;
    }
    
    .orbit-2 {
        width: 140px;
        height: 140px;
        top: 30px;
        left: 30px;
    }
    
    .orbit-3 {
        width: 80px;
        height: 80px;
        top: 60px;
        left: 60px;
    }
    
    .center-core {
        width: 60px;
        height: 60px;
        font-size: 0.75rem;
    }
    
    /* Advantages Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }
    
    .advantage-number {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .advantage-icon {
        width: 40px;
        height: 40px;
        margin: 1rem auto;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .mission-pillars {
        grid-template-columns: 1fr;
    }
    
    .priacc-collection-card {
        height: 300px;
    }
    
    .tech-section h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-bar {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-bar {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
.nav-menu li a:hover {
    color: #f873e4;
}