:root {
    --primary: #1a3a5c;
    --secondary: #2d6a9f;
    --accent: #e8a54b;
    --light: #f5f7fa;
    --dark: #0d1b2a;
    --text: #2c3e50;
    --text-light: #5d6d7e;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

img {
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: var(--accent);
    color: var(--dark);
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

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

.nav-list {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover {
    color: var(--secondary);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.88) 0%, rgba(13, 27, 42, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 24px;
    margin-left: 8%;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: #d4932f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 165, 75, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

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

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

.section {
    padding: 100px 0;
}

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

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

.section-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

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

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

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-dark .section-title,
.section-accent .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.asymmetric-intro {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.asymmetric-intro-content {
    flex: 1.2;
    padding-top: 40px;
}

.asymmetric-intro-visual {
    flex: 1;
    position: relative;
}

.asymmetric-intro-visual .img-main {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    background-color: var(--secondary);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.asymmetric-intro-visual .img-main img {
    width: 100%;
    height: 100%;
}

.asymmetric-intro-visual .img-float {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: var(--radius);
    background-color: var(--accent);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    bottom: -40px;
    left: -60px;
    border: 4px solid var(--white);
}

.asymmetric-intro-visual .img-float img {
    width: 100%;
    height: 100%;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.9;
}

.intro-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    margin-top: 32px;
}

.intro-highlight p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

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

.service-card-img {
    height: 200px;
    background-color: var(--secondary);
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

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

.service-card-body {
    padding: 28px;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.offset-section {
    position: relative;
}

.offset-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.offset-content.reverse {
    flex-direction: row-reverse;
}

.offset-text {
    flex: 1;
}

.offset-visual {
    flex: 1;
    position: relative;
}

.offset-visual .img-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--primary);
    box-shadow: var(--shadow-strong);
}

.offset-visual .img-wrapper img {
    width: 100%;
    height: 100%;
}

.offset-visual .decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: var(--radius);
    top: -30px;
    right: -30px;
    z-index: -1;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

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

.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
}

.testimonials-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.25rem;
}

.testimonial-info h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

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

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.3;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
}

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

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

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

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e8ed;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(45, 106, 159, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px 32px;
    margin-top: 8px;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-col {
    flex: 1;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.page-breadcrumb a:hover {
    color: var(--white);
}

.page-content {
    padding: 80px 0;
}

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

.prose h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin: 48px 0 20px;
}

.prose h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin: 36px 0 16px;
}

.prose p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text);
}

.prose ul,
.prose ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text);
    list-style: disc;
}

.prose ol li {
    list-style: decimal;
}

.prose a {
    color: var(--secondary);
}

.prose a:hover {
    text-decoration: underline;
}

.about-hero {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-hero-content {
    flex: 1;
}

.about-hero-visual {
    flex: 1;
    position: relative;
}

.about-hero-visual .img-main {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--secondary);
    box-shadow: var(--shadow-strong);
}

.about-hero-visual .img-main img {
    width: 100%;
    height: 100%;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.team-grid {
    display: flex;
    gap: 32px;
}

.team-card {
    flex: 1;
    text-align: center;
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    gap: 32px;
}

.value-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.value-desc {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.services-hero {
    background: var(--light);
    padding: 160px 0 100px;
}

.services-hero-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

.services-hero-content {
    flex: 1;
}

.services-hero-visual {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.services-hero-visual .img-box {
    width: calc(50% - 8px);
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--secondary);
}

.services-hero-visual .img-box:first-child {
    width: 100%;
    height: 220px;
}

.services-hero-visual .img-box img {
    width: 100%;
    height: 100%;
}

.service-detail {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-visual {
    flex: 1;
}

.service-detail-visual .img-wrapper {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--primary);
}

.service-detail-visual .img-wrapper img {
    width: 100%;
    height: 100%;
}

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

.service-detail-desc {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-includes {
    margin-bottom: 28px;
}

.service-includes h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-includes ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.service-includes li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.service-detail-price .amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
}

.service-detail-price .unit {
    color: var(--text-light);
}

.contact-hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.contact-hero-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-hero-content {
    flex: 1;
}

.contact-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-hero-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-hero-card-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-hero-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

.contact-hero-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-hero-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    color: var(--dark);
}

.thanks-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.thanks-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-service {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 28px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    display: inline-block;
}

.thanks-service-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.thanks-service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    color: var(--text);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary);
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
    background: var(--secondary);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text);
    border: 2px solid #e1e8ed;
}

.cookie-btn-reject:hover {
    border-color: var(--primary);
}

.disclaimer {
    background: #fef9e7;
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 40px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.disclaimer p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .asymmetric-intro,
    .offset-content,
    .about-hero,
    .services-hero-inner,
    .contact-hero-inner {
        flex-direction: column;
    }

    .offset-content.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        flex: 1 1 calc(50% - 12px);
    }

    .testimonial-grid,
    .team-grid,
    .values-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow);
    }

    .hero-content {
        margin-left: 0;
        padding: 60px 24px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .asymmetric-intro-visual .img-float {
        display: none;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 12px);
    }

    .service-detail {
        flex-direction: column;
        gap: 32px;
    }

    .page-title {
        font-size: 2.25rem;
    }
}
