:root {
    --primary-green: #39C8A1;
    --primary-green-dark: #2DA27A;
    --primary-green-light: #60D7B2;
    --dark-gray: #222222;
    --white: #FFFFFF;
    --light-gray: #F0F0F0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.section-title.animate::after {
    transform: scaleX(1);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.primary-cta {
    background-color: var(--primary-green);
    color: var(--white);
}

.primary-cta:hover {
    background-color: var(--primary-green-dark);
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.primary-cta:active {
    transform: scale(0.98);
}

.secondary-cta {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.secondary-cta:hover {
    background-color: var(--primary-green-light);
    color: var(--white);
    border-color: var(--primary-green-light);
}

.full-width {
    width: 100%;
}

.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    height: 60px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
}

.header.scrolled .logo {
    height: 40px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header .cta-button {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu-header .logo {
    height: 40px;
}

.close-menu {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--dark-gray);
    cursor: pointer;
}

.mobile-nav {
    padding: 30px 20px;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu-cta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 70px;
    left: 0;
    height: 3px;
    background: var(--primary-green);
    width: 0;
    z-index: 999;
    transition: width 0.1s ease;
}

/* Hero Section */
.hero {
    padding-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #333 100%);
}

.hero-split {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-content {
    padding: 60px 20px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

.hero-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(34, 34, 34, 0.8) 100%);
}

/* Problem Solver Section */
.problem-solver {
    padding: 80px 0;
    background: var(--light-gray);
}

.problem-solver .section-title {
    text-align: center;
    display: block;
}

.problem-solver .section-subtitle {
    text-align: center;
    margin: 0 auto 40px;
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.problem-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.problem-card .solution {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--white);
}

.services-overview .section-title {
    text-align: center;
    display: block;
}

.services-overview .section-subtitle {
    text-align: center;
    margin: 0 auto 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    display: block;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--dark-gray);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
    color: var(--dark-gray);
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 50px;
}

.service-card p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-gray);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.why-choose-content .section-title {
    display: block;
}

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

.benefits-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    opacity: 0;
    transform: translateX(-30px);
}

.benefits-list li.animate {
    opacity: 1;
    transform: translateX(0);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    margin-bottom: 3px;
}

.benefits-list p {
    font-size: 0.9rem;
    color: #666;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials .section-title {
    text-align: center;
    display: block;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--primary-green-dark);
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

/* Our Process */
.our-process {
    padding: 80px 0;
    background: var(--light-gray);
}

.our-process .section-title {
    text-align: center;
    display: block;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--white);
}

.service-areas .section-title {
    text-align: center;
    display: block;
}

.service-areas .section-subtitle {
    text-align: center;
    margin: 0 auto 30px;
}

.map-container {
    margin-bottom: 20px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.map-pins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: pinDrop 0.6s ease forwards;
    opacity: 0;
}

@keyframes pinDrop {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: rotate(-45deg) translateY(0);
    }
}

.service-area-text {
    text-align: center;
    font-size: 1rem;
    color: #666;
}

/* About Snippet */
.about-snippet {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-snippet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-snippet-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-snippet-content .section-title {
    display: block;
}

.about-snippet-content p {
    margin-bottom: 20px;
    color: #666;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq .section-title {
    text-align: center;
    display: block;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--primary-green);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.final-cta .cta-button {
    background: var(--white);
    color: var(--primary-green);
}

.final-cta .cta-button:hover {
    background: var(--light-gray);
    transform: scale(1.05);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-family {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    background: rgba(57, 200, 161, 0.2);
    color: var(--primary-green);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.footer-services h3,
.footer-company h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-services ul,
.footer-company ul,
.footer-contact ul {
    list-style: none;
}

.footer-services li,
.footer-company li {
    margin-bottom: 10px;
}

.footer-services a,
.footer-company a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-services a:hover,
.footer-company a:hover {
    color: var(--primary-green);
}

.contact-link {
    color: #ccc;
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

/* FAB */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.fab a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .problem-card,
    .service-card,
    .process-step,
    .benefits-list li {
        opacity: 1;
        transform: none;
    }
    
    .map-pin {
        animation: none;
        opacity: 1;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
    }
    
    .header .cta-button {
        display: inline-block;
    }
    
    .hamburger {
        display: none;
    }
    
    .hero-split {
        flex-direction: row;
    }
    
    .hero-content {
        flex: 1;
        padding: 80px;
    }
    
    .hero-image {
        flex: 1;
        height: 100vh;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .problem-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .about-snippet-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .header-container {
        padding: 0 48px;
    }
    
    .problem-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 14px);
    }
    
    .carousel-arrow.prev {
        left: -20px;
    }
    
    .carousel-arrow.next {
        right: -20px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Inner Page Styles */

.inner-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 120px 20px 80px;
    text-align: center;
}

.inner-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.85));
}

.inner-hero .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.inner-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.inner-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.inner-hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }

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

.bounce-in {
    animation: bounceIn 0.8s ease 0.5s forwards;
    opacity: 0;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.8); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* Why Upgrade Section */
.why-upgrade {
    padding: 80px 0;
    background: var(--white);
}

.why-upgrade-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.why-upgrade-text {
    text-align: center;
}

.why-upgrade-text .section-title {
    display: block;
}

.why-upgrade-text p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
}

.benefit-icon-large {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon-large svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Product Range */
.product-range {
    padding: 80px 0;
    background: var(--light-gray);
}

.product-range .section-title {
    text-align: center;
    display: block;
}

.product-range .section-subtitle {
    text-align: center;
    margin: 0 auto 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.product-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Installation Process */
.installation-process {
    padding: 80px 0;
    background: var(--white);
}

.installation-process .section-title {
    text-align: center;
    display: block;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
}

/* Our Expertise */
.our-expertise {
    padding: 80px 0;
    background: var(--light-gray);
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.expertise-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.expertise-list {
    list-style: none;
    margin-top: 20px;
}

.expertise-list li {
    padding: 10px 0;
    font-size: 1rem;
}

/* Common Issues */
.common-issues {
    padding: 80px 0;
    background: var(--white);
}

.common-issues .section-title {
    text-align: center;
    display: block;
}

.issues-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.issue-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.issue-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.issue-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.issue-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.issue-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.expertise-items {
    list-style: none;
}

.expertise-items li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 15px;
}

.expertise-items .check {
    color: var(--primary-green);
    font-weight: bold;
}

.expertise-image img {
    width: 100%;
    border-radius: 12px;
}

/* Repair Process */
.repair-process {
    padding: 80px 0;
    background: var(--white);
}

.repair-process .section-title {
    text-align: center;
    display: block;
}

.process-steps-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.step-block {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-connector {
    display: none;
}

.step-block h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.step-block p {
    font-size: 0.85rem;
    color: #666;
}

/* Benefits Professional */
.benefits-professional {
    padding: 80px 0;
    background: var(--light-gray);
}

.benefits-professional .section-title {
    text-align: center;
    display: block;
}

.benefits-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.benefit-col {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefit-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon-circle svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.benefit-col h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-col p {
    font-size: 0.9rem;
    color: #666;
}

/* Danger Warning */
.danger-warning {
    padding: 60px 0;
    background: var(--white);
}

.warning-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-icon svg {
    width: 30px;
    height: 30px;
    color: #856404;
}

.warning-content h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #856404;
}

.warning-content p {
    color: #856404;
    margin-bottom: 15px;
}

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

.danger-list li {
    padding: 8px 0;
    color: #856404;
    font-weight: 500;
}

/* Spring Types */
.spring-types {
    padding: 80px 0;
    background: var(--light-gray);
}

.spring-types .section-title {
    text-align: center;
    display: block;
}

.spring-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.spring-type-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.spring-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.spring-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.spring-type-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.spring-type-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Spring Process */
.spring-process {
    padding: 80px 0;
    background: var(--white);
}

.spring-process .section-title {
    text-align: center;
    display: block;
}

.process-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-indicator {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.process-content p {
    font-size: 0.9rem;
    color: #666;
}

/* Safety First */
.safety-first {
    padding: 80px 0;
    background: var(--light-gray);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.safety-image img {
    width: 100%;
    border-radius: 12px;
}

.safety-content .section-title {
    display: block;
}

.safety-list {
    list-style: none;
    margin-top: 20px;
}

.safety-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.safety-icon {
    color: var(--primary-green);
    font-weight: bold;
}

/* Emergency CTA */
.emergency-cta {
    background: var(--dark-gray);
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-section .cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Breathing Animation */
.breathing-cta {
    animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(57, 200, 161, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(57, 200, 161, 0.5);
    }
}

/* Pulse Animation */
.pulse-cta {
    animation: pulse 2s ease-in-out infinite;
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: var(--white);
}

.our-story .section-title {
    text-align: center;
    display: block;
}

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

.story-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Mission Values */
.mission-values {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-values .section-title {
    text-align: center;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Meet Team */
.meet-team {
    padding: 80px 0;
    background: var(--white);
}

.meet-team .section-title {
    text-align: center;
    display: block;
}

.meet-team .section-subtitle {
    text-align: center;
    margin: 0 auto 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card h3 {
    padding: 20px 20px 5px;
    font-size: 1.2rem;
}

.team-role {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Satisfaction Guarantee */
.satisfaction-guarantee {
    padding: 60px 0;
    background: var(--primary-green);
}

.guarantee-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.guarantee-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.guarantee-text {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.guarantee-content p {
    color: var(--white);
    font-size: 1.1rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: var(--light-gray);
}

.certifications .section-title {
    text-align: center;
    display: block;
}

.cert-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.cert-logo {
    padding: 15px 25px;
    background: var(--white);
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    box-shadow: var(--shadow);
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background: var(--white);
}

.contact-methods .section-title {
    text-align: center;
    display: block;
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.method-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.method-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.method-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.method-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    margin-bottom: 10px;
}

.method-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.form-content .section-title {
    display: block;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(57, 200, 161, 0.1);
}

.form-map .section-title {
    display: block;
}

.form-map .section-subtitle {
    margin-bottom: 20px;
}

.form-map .map-container {
    margin-bottom: 20px;
}

/* Inner page tablet styles */
@media (min-width: 768px) {
    .inner-hero h1 {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-timeline {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .process-step-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
        position: relative;
    }
    
    .step-marker {
        margin: 0 auto;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .repair-process .process-steps-horizontal {
        flex-direction: row;
        justify-content: center;
    }
    
    .step-connector {
        display: block;
        width: 30px;
        height: 2px;
        background: var(--primary-green);
        align-self: center;
    }
    
    .benefits-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .spring-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .safety-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .warning-box {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}