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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: auto;
    width: 180px;
    object-fit: contain;
    padding-top: 4px;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #9ee058;
}

/* Hero Section */
.hero-new {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    color: #2c3e50;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

/* SVG Animationen */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-illustration rect:nth-of-type(1) {
    animation: phoneGlow 3s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1) drop-shadow(0 0 10px rgba(52, 152, 219, 0.3)); }
}

.hero-illustration rect:nth-of-type(2) {
    animation: screenPulse 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes screenPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; transform: scale(1.02); }
}

.hero-illustration g:nth-of-type(1) {
    animation: toolRotate 8s linear infinite;
    transform-origin: center;
}

@keyframes toolRotate {
    0% { transform: translate(80px, 120px) rotate(0deg); }
    25% { transform: translate(80px, 120px) rotate(5deg); }
    50% { transform: translate(80px, 120px) rotate(-5deg); }
    75% { transform: translate(80px, 120px) rotate(3deg); }
    100% { transform: translate(80px, 120px) rotate(0deg); }
}

.hero-illustration g:nth-of-type(2) {
    animation: tool2Wiggle 6s ease-in-out infinite;
}

@keyframes tool2Wiggle {
    0%, 100% { transform: translate(70px, 160px) rotate(-30deg); }
    50% { transform: translate(70px, 160px) rotate(-25deg); }
}

.hero-illustration g:nth-of-type(3) circle,
.hero-illustration g:nth-of-type(4) circle {
    animation: coinSpin 4s linear infinite;
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.hero-illustration g:nth-of-type(3) {
    animation: moneyFloat1 5s ease-in-out infinite;
}

.hero-illustration g:nth-of-type(4) {
    animation: moneyFloat2 5s ease-in-out infinite 1s;
}

@keyframes moneyFloat1 {
    0%, 100% { transform: translate(280px, 80px) translateY(0px); }
    50% { transform: translate(280px, 80px) translateY(-8px); }
}

@keyframes moneyFloat2 {
    0%, 100% { transform: translate(290px, 130px) translateY(0px); }
    50% { transform: translate(290px, 130px) translateY(-6px); }
}

.hero-illustration > circle {
    animation: sparkle 3s ease-in-out infinite;
}

.hero-illustration > circle:nth-of-type(1) {
    animation-delay: 0s;
}

.hero-illustration > circle:nth-of-type(2) {
    animation-delay: 0.5s;
}

.hero-illustration > circle:nth-of-type(3) {
    animation-delay: 1s;
}

.hero-illustration > circle:nth-of-type(4) {
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.hero-illustration g:nth-of-type(6) {
    animation: badgePulse 4s ease-in-out infinite 2s;
}

@keyframes badgePulse {
    0%, 100% { transform: translate(300px, 180px) scale(1); }
    50% { transform: translate(300px, 180px) scale(1.1); }
}

.btn-primary-new {
    background: linear-gradient(135deg, #9ee058 0%, #7bb843 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(158, 224, 88, 0.3);
}

.btn-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158, 224, 88, 0.4);
}

.btn-secondary-new {
    background: white;
    color: #2c3e50;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary-new:hover {
    transform: translateY(-2px);
    border-color: #9ee058;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #c5f279;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #9ee058;
    color: #1a1a1a;
    font-weight: 700;
    border: 2px solid #7bb843;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background: #7bb843;
    color: white;
    border-color: #659c35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #1a1a1a;
    color: #9ee058;
    border: 2px solid #9ee058;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
    background: #9ee058;
    color: #1a1a1a;
    border-color: #7bb843;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-link {
    color: #9ee058;
    text-decoration: none;
    font-weight: 600;
}

.service-link:hover {
    color: #7bb843;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    background: #9ee058;
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    font-weight: 700;
    border: 3px solid #7bb843;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.trust-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.trust-item p {
    color: #666;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.review-card cite {
    color: #9ee058;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #9ee058;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #9ee058;
    text-decoration: underline;
}

.footer-logo {
    height: auto;
    width: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #9ee058, #7bb843);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

/* Repair Services */
.repair-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.repair-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.repair-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
}

.repair-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.repair-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.price {
    color: #9ee058;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.repair-features {
    list-style: none;
    text-align: left;
}

.repair-features li {
    padding: 0.3rem 0;
    color: #666;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    background: #9ee058;
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    border: 3px solid #7bb843;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.process-step h3,
.process-step h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #666;
}

/* Guarantees */
.guarantees {
    padding: 80px 0;
    background: #f8f9fa;
}

.guarantees h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    color: #666;
}

/* Customer Reviews */
.customer-reviews {
    padding: 80px 0;
    background: white;
}

.customer-reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.urgent-note {
    background: #f5fdf2;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #9ee058;
    margin-top: 1.5rem;
}

.urgent-note strong {
    color: #1a1a1a;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Trade Section Styles */
.services-toggle {
    padding: 40px 0;
    background: white;
    text-align: center;
}

.toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.toggle-btn {
    padding: 12px 30px;
    border: 2px solid #9ee058;
    background: white;
    color: #9ee058;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: #9ee058;
    color: white;
    font-weight: 700;
}

.trade-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.trade-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trade-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.trade-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Price Examples */
.price-examples {
    margin-bottom: 4rem;
}

.price-examples h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.price-grid, .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.price-card, .brand-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.device-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.condition {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-range {
    color: #9ee058;
    font-size: 1.3rem;
    font-weight: 700;
}

.price-note, .device-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.brand-item h4 {
    color: #9ee058;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.brand-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.availability-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f5e8 100%);
    border-radius: 12px;
    border-left: 4px solid #9ee058;
}

.availability-info p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Device Types Section */
.device-types {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f5e8 100%);
    padding: 4rem 0;
}

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

.device-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #9ee058;
}

.device-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.device-category h3 {
    color: #9ee058;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.device-category p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.compatibility-note {
    background: rgba(158, 224, 88, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #9ee058;
    text-align: center;
}

.compatibility-note p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

/* Selling Process */
.selling-process {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.selling-process h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Selling Benefits */
.selling-benefits h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
}

/* Device Categories */
.device-categories {
    margin-bottom: 4rem;
}

.device-categories h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #666;
}

/* Quality Promise */
.quality-promise {
    margin-bottom: 4rem;
}

.quality-promise h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quality-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.quality-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quality-item h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.quality-item p {
    color: #666;
}

/* Condition Guide */
.condition-guide h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.condition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.condition-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.condition-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.condition-title.very-good {
    color: #9ee058;
}

.condition-title.good {
    color: #7bb843;
}

.condition-title.fair {
    color: #c5f279;
}

.condition-card p {
    color: #666;
    margin: 0;
}

/* Value Proposition */
.value-proposition {
    padding: 80px 0;
    background: white;
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
}

/* Customer Testimonials */
.customer-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.customer-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-card cite {
    color: #9ee058;
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #9ee058;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-visual {
        order: -1;
        padding: 1rem;
    }
    
    .hero-illustration {
        max-width: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
        border-radius: 10px;
        background: rgba(158, 224, 88, 0.1);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        min-width: 200px;
        text-align: center;
        display: block;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(158, 224, 88, 0.2);
        border-color: #9ee058;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(158, 224, 88, 0.3);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .services-overview h2,
    .trust-section h2,
    .reviews h2,
    .repair-services h2,
    .guarantees h2,
    .customer-reviews h2,
    .trade-section h2,
    .value-proposition h2,
    .customer-testimonials h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .toggle-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .toggle-btn {
        width: 200px;
    }
    
    .slogan {
        font-size: 0.7rem;
    }
    
    .logo-img {
        width: 140px;
    }
    
    /* Additional mobile optimizations */
    .hero {
        padding: 100px 0 60px;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .services-grid,
    .repair-grid,
    .trust-grid,
    .reviews-grid,
    .guarantee-grid,
    .process-steps,
    .category-grid,
    .quality-grid,
    .benefit-grid,
    .value-grid,
    .testimonials-grid,
    .price-grid,
    .device-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        padding: 0 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-overview,
    .trust-section,
    .reviews,
    .repair-services,
    .guarantees,
    .customer-reviews,
    .trade-section,
    .value-proposition,
    .customer-testimonials {
        padding: 60px 0;
    }
}