:root {
    --primary: #0d3b66;
    --primary-light: #145a9e;
    --primary-dark: #092744;
    --accent: #e8a838;
    --accent-light: #f0c060;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #6b6b7b;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-alt: #eef1f6;
    --border: #dde1e8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--accent);
}

a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

ul {
    list-style: none;
}

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

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

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo-full {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
    letter-spacing: 1px;
    display: none;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
    font-family: inherit;
}

.btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
}

.btn-secondary {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border);
}

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

.btn-block {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-preview {
    padding: 80px 0;
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.brands {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.brand-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.brand-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.services-preview {
    padding: 80px 0;
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    padding: 20px 24px 8px;
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    padding: 0 24px 24px;
}

.why-choose {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

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

.check-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.check-icon {
    background: var(--accent);
    color: var(--text-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check-list strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.check-list p {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.why-choose-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-choose-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.lead-form-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.checkbox-group label a {
    font-weight: 600;
}

.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
}

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

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.mission-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.mission-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
}

.mission-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--accent);
}

.mission-icon svg {
    width: 100%;
    height: 100%;
}

.mission-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.what-we-do {
    padding: 80px 0;
}

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

.do-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.do-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.do-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-section {
    padding: 60px 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

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

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--text-medium);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

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

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

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item address {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-style: normal;
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
}

.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

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

.map-wrapper iframe {
    border-radius: var(--radius-lg);
}

.services-intro {
    padding: 80px 0 40px;
}

.services-detail {
    padding: 40px 0 80px;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

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

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

.service-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 16px;
}

.service-detail-content li {
    padding: 6px 0 6px 24px;
    color: var(--text-medium);
    font-size: 0.95rem;
    position: relative;
}

.service-detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

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

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

.brands-supported {
    padding: 80px 0;
    background: var(--bg-light);
}

.brands-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.brand-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.brand-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.brand-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.work-examples {
    padding: 80px 0;
}

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

.example-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.example-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    padding: 20px 24px 8px;
}

.example-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    padding: 0 24px 24px;
    line-height: 1.6;
}

.business-section {
    padding: 80px 0;
}

.business-section.alt-bg {
    background: var(--bg-light);
}

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

.business-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.business-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    margin-bottom: 16px;
}

.business-icon svg {
    width: 100%;
    height: 100%;
}

.business-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.business-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.content-block p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.data-collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.data-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
}

.data-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.data-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.transparency-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.transparency-list {
    margin-bottom: 16px;
}

.transparency-list li {
    padding: 8px 0 8px 28px;
    color: var(--text-medium);
    position: relative;
}

.transparency-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.legal-section {
    padding: 60px 0;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 36px 0 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 20px 0 10px;
}

.legal-content p {
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 16px;
}

.legal-content li {
    padding: 6px 0 6px 24px;
    color: var(--text-medium);
    position: relative;
    line-height: 1.6;
}

.legal-content li::before {
    content: '\2022';
    position: absolute;
    left: 4px;
    color: var(--primary);
    font-weight: 700;
}

.contact-info-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 16px;
}

.contact-info-box p {
    margin-bottom: 4px;
}

.cookie-table-wrapper {
    overflow-x: auto;
    margin: 16px 0 24px;
}

.cookie-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookie-table-wrapper th {
    background: var(--bg-light);
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border);
}

.cookie-table-wrapper td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-medium);
}

.footer {
    background: var(--primary-dark);
    color: #ccc;
    padding: 60px 0 0;
}

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

.footer h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer p {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #aab;
}

.footer address {
    font-style: normal;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer a {
    color: #ccd;
    font-size: 0.85rem;
}

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

.footer ul li {
    margin-bottom: 8px;
}

.footer ul a {
    color: #99a;
}

.footer ul a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-disclaimer p {
    color: #889;
    font-size: 0.8rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #aab;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: #ddd;
    z-index: 1000;
    padding: 24px;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-content h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.cookie-link {
    color: var(--accent);
    font-size: 0.85rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.visible {
    display: flex;
}

.cookie-modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0 4px;
    line-height: 1;
}

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

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

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

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.badge {
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border);
    border-radius: 24px;
    transition: var(--transition);
}

.slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.switch input:checked + .slider {
    background: var(--primary);
}

.switch input:checked + .slider::before {
    transform: translateX(20px);
}

.cookie-category p {
    color: var(--text-medium);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

.cookie-modal-footer .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image img {
        height: 280px;
    }

    .features-grid,
    .services-grid,
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-image {
        order: -1;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
    }

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

    .brands-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 100;
    }

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

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

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

    .logo-full {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 48px 0;
    }

    .hero-image img {
        height: 220px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .features-grid,
    .services-grid,
    .mission-grid,
    .do-grid,
    .examples-grid,
    .business-grid,
    .data-collection-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

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

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media print {
    .header, .footer, .cookie-banner, .cookie-modal {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    main {
        padding: 0;
    }
}
