:root {
    --color-primary: #FF6B9D;
    --color-secondary: #C084FC;
    --color-accent: #60D5F5;
    --color-accent-2: #A7F3D0;
    --color-accent-3: #FCD34D;
    --color-accent-4: #FB923C;
    
    --gradient-1: linear-gradient(135deg, #FF6B9D 0%, #C084FC 100%);
    --gradient-2: linear-gradient(135deg, #C084FC 0%, #60D5F5 100%);
    --gradient-3: linear-gradient(135deg, #60D5F5 0%, #A7F3D0 100%);
    --gradient-4: linear-gradient(135deg, #A7F3D0 0%, #FCD34D 100%);
    --gradient-5: linear-gradient(135deg, #FCD34D 0%, #FB923C 100%);
    --gradient-6: linear-gradient(135deg, #FB923C 0%, #FF6B9D 100%);
    
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #fefefe;
    --color-bg-alt: #f8fafc;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.06), 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.08), 0 8px 10px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.09);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease-out;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gabarito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-transparent {
    background: transparent;
}

.nav-solid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Gabarito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

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

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

.nav-cta {
    background: var(--gradient-1);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .nav-links.active {
        max-height: 500px;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef3f8 0%, #f3f0ff 50%, #ecfeff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--color-text);
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    z-index: 1;
}

.bento-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.bento-large {
    grid-column: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    color: white;
}

.gradient-bg-1 { background: var(--gradient-1); }
.gradient-bg-2 { background: var(--gradient-2); }
.gradient-bg-3 { background: var(--gradient-3); }
.gradient-bg-4 { background: var(--gradient-4); }
.gradient-bg-5 { background: var(--gradient-5); }
.gradient-bg-6 { background: var(--gradient-6); }

.bento-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.bento-card p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-large {
        grid-column: span 1;
    }
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.services-preview {
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 0.25;
}

.service-content {
    padding: 28px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

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

.how-it-works {
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 32px;
    align-items: start;
}

.step-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.step-icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.step-card > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-details ul {
    list-style: none;
}

.step-details li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-text-light);
}

.step-details i {
    color: var(--color-primary);
    margin-top: 4px;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-primary);
    margin-top: 80px;
}

@media (max-width: 968px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

.coverage-area {
    background: var(--color-bg-alt);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    margin-bottom: 24px;
}

.coverage-text > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.coverage-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.coverage-feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.coverage-feature h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.coverage-feature p {
    color: var(--color-text-light);
    font-size: 14px;
}

.coverage-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .coverage-content {
        grid-template-columns: 1fr;
    }
}

.safety-standards {
    background: white;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.standard-card {
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.standard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.standard-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.standard-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.standard-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #fef3f8 0%, #f3f0ff 50%, #ecfeff 100%);
    padding: 80px 0;
}

.cta-card {
    background: white;
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0 0;
    color: white;
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 24px;
    color: white;
}

.footer-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--color-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--color-text-light);
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn-primary {
    background: var(--gradient-1);
    color: white;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.cookie-btn-secondary:hover {
    background: #e2e8f0;
}

.cookie-btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text-light);
}

.cookie-btn-outline:hover {
    border-color: var(--color-text);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

.cookie-settings {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cookie-settings.show {
    display: flex;
}

.cookie-settings-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.cookie-settings-header {
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-settings-header h3 {
    font-size: 24px;
}

.close-settings {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-settings:hover {
    color: var(--color-text);
}

.cookie-settings-body {
    padding: 24px;
}

.cookie-category {
    margin-bottom: 24px;
}

.cookie-category-header {
    display: flex;
    gap: 16px;
    align-items: start;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #cbd5e1;
    transition: var(--transition);
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background: var(--gradient-1);
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cookie-category p {
    font-size: 14px;
    color: var(--color-text-light);
}

.cookie-settings-footer {
    padding: 24px;
    border-top: 1px solid #e2e8f0;
}

.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fef3f8 0%, #f3f0ff 50%, #ecfeff 100%);
    text-align: center;
}

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

.page-label {
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.page-title {
    margin-bottom: 16px;
}

.page-description {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.team-intro {
    padding: 100px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 24px;
}

.intro-text p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    display: flex;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.stat-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.stat-item p {
    color: var(--color-text-light);
    font-size: 14px;
    margin: 0;
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
}

.team-expertise {
    background: var(--color-bg-alt);
}

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

.expertise-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.expertise-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.expertise-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.training-commitment {
    padding: 100px 0;
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.training-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-text h2 {
    margin-bottom: 24px;
}

.training-text > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.training-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.training-item {
    display: flex;
    gap: 12px;
    align-items: start;
}

.training-item i {
    color: var(--color-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.training-item span {
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .training-content {
        grid-template-columns: 1fr;
    }
}

.team-values {
    background: var(--color-bg-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.value-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.service-detail {
    padding: 100px 0;
}

.service-detail-reverse {
    background: var(--color-bg-alt);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-reverse .service-detail-content {
    direction: rtl;
}

.service-detail-reverse .service-detail-text {
    direction: ltr;
}

.service-badge {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 24px;
}

.service-detail-text h2 {
    margin-bottom: 24px;
}

.service-detail-text p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: start;
}

.feature-item i {
    color: var(--color-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--color-text-light);
    line-height: 1.7;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-reverse .service-detail-content {
        direction: ltr;
    }
}

.pricing-approach {
    background: white;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pricing-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.pricing-text > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.pricing-factors {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.factor-item {
    display: flex;
    gap: 16px;
}

.factor-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.factor-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.factor-item p {
    color: var(--color-text-light);
    font-size: 14px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-card > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pricing-includes {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-includes li {
    display: flex;
    gap: 12px;
    align-items: start;
    margin-bottom: 12px;
    color: var(--color-text-light);
}

.pricing-includes i {
    color: var(--color-primary);
    margin-top: 4px;
}

@media (max-width: 968px) {
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        position: static;
    }
}

.service-areas {
    background: var(--color-bg-alt);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.area-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.area-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.area-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.tips-intro {
    padding: 100px 0;
}

.tips-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.tips-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.tips-card:first-child {
    margin-bottom: 16px;
}

.tips-card i {
    font-size: 40px;
    color: white;
    margin-bottom: 16px;
}

.tips-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.tips-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.pest-guides {
    background: var(--color-bg-alt);
}

.guide-item {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    display: flex;
    gap: 32px;
}

.guide-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.guide-content {
    flex: 1;
}

.guide-content h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.guide-details {
    display: grid;
    gap: 24px;
}

.detail-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.detail-section p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section li {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.detail-section li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--color-primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .guide-item {
        flex-direction: column;
        padding: 24px;
    }
}

.general-tips {
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.tip-card {
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.tip-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.when-to-call {
    background: var(--color-bg-alt);
}

.call-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.call-text h2 {
    margin-bottom: 24px;
}

.call-text > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.call-situations {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.situation-item {
    display: flex;
    gap: 12px;
    align-items: start;
}

.situation-item i {
    color: var(--color-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.situation-item span {
    color: var(--color-text-light);
    line-height: 1.7;
}

.call-card {
    position: sticky;
    top: 100px;
}

.call-card .card-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.call-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.call-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

@media (max-width: 968px) {
    .call-content {
        grid-template-columns: 1fr;
    }
    
    .call-card {
        position: static;
    }
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
}

.method-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.method-content a {
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.method-content p {
    color: var(--color-text-light);
    font-size: 14px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-card h2 {
    margin-bottom: 12px;
}

.form-card > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: start;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

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

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.map-section {
    background: var(--color-bg-alt);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-areas-contact {
    padding: 100px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.area-card-simple {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.area-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.area-card-simple .area-icon {
    margin: 0 auto 20px;
}

.area-card-simple h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.area-card-simple p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--color-text-light);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thanks-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 12px;
}

.thanks-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
}

.legal-page {
    padding: 140px 0 80px;
    background: var(--color-bg);
}

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

.legal-content h1 {
    margin-bottom: 8px;
}

.legal-date {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--color-text);
    font-weight: 600;
}