/* ===========================================
   SENSOVITA - Design System
   =========================================== */
   
   /* Plus Jakarta Sans - Local */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2');
}

:root {
    /* Colors - Clean, high contrast palette */
    --primary: #1B5E4B;          /* Deep forest green - main brand */
    --primary-dark: #154A3C;     /* Darker green for hover */
    --primary-light: #E8F5F1;    /* Very subtle green tint for backgrounds */
    
    --text-dark: #1A1A1A;        /* Almost black - main text */
    --text-medium: #4A4A4A;      /* Dark gray - secondary text */
    --text-light: #6B6B6B;       /* Medium gray - subtle text */
    
    --bg-white: #FFFFFF;
    --bg-light: #F8FAF9;         /* Very light gray-green */
    --bg-section: #F3F6F5;       /* Section backgrounds */
    
    --border-light: #E5E8E7;
    --border-medium: #D0D5D3;
    
    --white: #FFFFFF;
    --black: #1A1A1A;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    
    /* Transitions */
    --transition: all 0.2s ease;
}

/* ===========================================
   BASE STYLES
   =========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-medium);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ===========================================
   BUTTONS
   =========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary-top {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    padding: 10px 16px !important;
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ===========================================
   TOP BAR
   =========================================== */

.top-bar {
    background: #2D3B36;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.8125rem;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
}

.top-bar-item .checkmark {
    color: #8FBFAE;
    font-weight: 700;
}

.top-bar-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

/* ===========================================
   NAVIGATION
   =========================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-placeholder {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.75rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}


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

/* Nav Links */
.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-medium);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--radius-md);
}

.mobile-menu-btn:hover {
    background: var(--bg-light);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    padding: 24px;
    flex-direction: column;
}

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

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

.mobile-menu-close {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links a {
    display: block;
    padding: 16px;
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-menu-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero {
    padding: 80px 0;
    background: var(--primary-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

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

.trust-item-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.trust-item-text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item-text span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-main {
    width: 100%;
    aspect-ratio: 5/6;
    background: var(--bg-section);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

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

/* ===========================================
   SECTION STYLES
   =========================================== */

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--primary-light);
}

.section-gray {
    background: var(--bg-section);
}

.section-dark {
    background: var(--text-dark);
}

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

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.0625rem;
}

/* Dark section text */
.section-dark .section-label {
    color: rgba(255,255,255,0.6);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* ===========================================
   TARGET GROUPS (For Businesses / For Individuals)
   =========================================== */

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.target-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.target-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.target-card-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.target-card h3 {
    margin-bottom: 12px;
}

.target-card > p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.target-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.target-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

.target-list li:last-child {
    border-bottom: none;
}

.target-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ===========================================
   SOLUTIONS GRID (Products/Services Cards)
   =========================================== */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.solution-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.8125rem;
    overflow: hidden;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-top: 20px;
    padding-bottom: 20px;
}

.solution-card-content {
    padding: 24px;
}

.solution-card h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.solution-card p {
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.solution-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.solution-card-link:hover {
    text-decoration: underline;
}

/* ===========================================
   REVIEWS SECTION
   =========================================== */

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.reviews-header-left h2 {
    margin-bottom: 8px;
}

.reviews-score {
    text-align: right;
}

.reviews-score-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.reviews-score-stars {
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin: 8px 0;
}

.reviews-score-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.review-author {
    flex: 1;
}

.review-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9375rem;
}

.review-author span {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.review-google {
    width: 20px;
    height: 20px;
}

.review-stars {
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

.reviews-cta a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.reviews-cta a:hover {
    text-decoration-thickness: 2px;
}

/* ===========================================
   LOGO SLIDER
   =========================================== */

.logo-slider {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.logo-slider-title {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.logo-slider-track {
    display: flex;
    gap: 48px;
    animation: scroll 30s linear infinite;
}

.logo-slider-track:hover {
    animation-play-state: paused;
}

.logo-slider-item {
    flex-shrink: 0;
    height: 48px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    color: var(--text-light);
    font-size: 0.75rem;
}

.logo-slider-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

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

/* ===========================================
   SERVICES SECTION
   =========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.service-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.service-card-link:hover {
    text-decoration: underline;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content .section-label {
    margin-bottom: 12px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content > p {
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.about-feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* About Image */
.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
    text-align: center;
    padding: 24px;
}

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

/* ===========================================
   CTA SECTION
   =========================================== */

.cta-section {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===========================================
   CONTACT SECTION
   =========================================== */

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

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

.contact-info > p {
    margin-bottom: 32px;
}

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

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

.contact-item-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon img {
    width: 24px;
    height: 24px;
}

.contact-item-text small {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-item-text strong {
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.contact-item-text a {
    color: var(--primary);
}

.contact-item-text a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

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

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 32px;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-top: 20px;
    line-height: 1.7;
    margin-right: 15px
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.75);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Footer Logo */
.footer .logo-text {
    color: var(--white);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* Footer Contact */
.footer-contact {
    margin-top: 24px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-contact strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

/* Outline Button Hover (for CTA section) */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===========================================
   COOKIE BANNER
   =========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px 24px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cookie-banner-text p {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-banner .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-cookie-reject {
    background: var(--bg-light);
    color: var(--text-medium);
    border-color: var(--border-medium);
}

.btn-cookie-reject:hover {
    background: var(--bg-section);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
    }
    
    .cookie-banner-buttons .btn {
        flex: 1;
    }
}

/* ===========================================
   PAGE HEADER (for inner pages)
   =========================================== */

.page-header {
    padding: 120px 0 60px;
    background: var(--primary-light);
    text-align: center;
}

.page-header .section-label {
    margin-bottom: 12px;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* ===========================================
   PRODUCT CATEGORIES
   =========================================== */

.product-category {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 32px;
}

.product-category:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.product-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.product-category-image {
    width: 80px;
    height: 80px;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: var(--text-light);
}

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

.product-category-header h2 {
    margin-bottom: 4px;
    font-size: 1.375rem;
}

.product-category-header p {
    font-size: 0.9375rem;
    margin: 0;
}

.product-category-content {
    padding: 32px;
}

.product-category-content > p {
    margin-bottom: 24px;
}

.product-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.product-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-item:hover {
    box-shadow: var(--shadow-md);
}

.product-item-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: var(--text-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.product-item-content {
    padding: 16px;
}

.product-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.product-item p {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
}

.product-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* ===========================================
   SERVICE DETAIL PAGES
   =========================================== */

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

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

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

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

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: 16px;
}

.service-detail-content > p {
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 1.0625rem;
    margin: 32px 0 16px;
}

.service-detail-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-section);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--text-light);
    position: sticky;
    top: 120px;
}

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

.service-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.service-box {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.service-detail.alt .service-box {
    background: var(--white);
}

.service-box h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.service-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-box li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.service-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.benefit-check {
    color: var(--primary);
    font-weight: 700;
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

@media (max-width: 1024px) {
     .mobile-nav-buttons {
        display: flex !important;
    }
    .top-bar-inner {
        gap: 16px;
        flex-wrap: wrap;
        font-size: 0.75rem;
    }
    
    .top-bar-separator {
        display: none;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    
    .reviews-score {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .service-detail-image {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service-boxes {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .product-items-grid {
        grid-template-columns: 1fr;
    }
    
    .product-category-header {
        flex-direction: column;
        text-align: center;
    }
}



alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert p {
    margin: 0;
}

.alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.alert-warning {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #92400E;
}

.alert-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #EF4444;
    background: #FEF2F2;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cf-turnstile {
    margin-bottom: 16px;
}

.mobile-nav-buttons {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-phone-btn:hover {
    background: var(--primary-dark);
}
