@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --primary: #0f1e2c;
    --primary-light: #16283a;
    --primary-dark: #0a1622;
    --primary-rgb: 15, 30, 44;
    --accent: #e8912d;
    --accent-light: #f0a94a;
    --accent-dark: #c67a1f;
    --accent-rgb: 232, 145, 45;
    --bg-light: #f6f5f2;
    --bg-mid: #eef0ef;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-body: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: none;
}

.btn-lg {
    padding: 0.9rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
}

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

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}

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

.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.25);
}

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

.btn-dark:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.35);
}

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

.btn-light:hover {
    background: var(--bg-light);
    border-color: var(--bg-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.section {
    padding: 90px 0;
    position: relative;
}

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

.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: #fff;
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.section-heading-wrapper {
    margin-bottom: 3rem;
}

.section-heading-dark .section-title {
    color: #fff;
}

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

.section-badge {
    display: inline-block;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.text-accent {
    color: var(--accent) !important;
}

.text-white {
    color: #fff !important;
}

.bg-dark-section {
    background: var(--primary) !important;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.header-scrolled {
    background: rgba(var(--primary-rgb), 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.site-header .navbar-brand {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.site-header .navbar-brand span {
    color: var(--accent);
}

.site-header .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
    position: relative;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: #fff;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    transform: scaleX(1);
}

.site-header .header-phone {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.site-header .header-phone i {
    color: var(--accent);
    margin-right: 6px;
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.4rem;
    padding: 0.35rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-slider {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-slider .carousel-item {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 22, 34, 0.85) 0%, rgba(10, 22, 34, 0.6) 50%, rgba(10, 22, 34, 0.3) 100%);
    z-index: 1;
}

.hero-slider .carousel-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 720px;
}

.hero-slider .carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

.hero-slider .carousel-title .accent {
    color: var(--accent);
}

.hero-slider .carousel-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-slider .carousel-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: auto;
    margin: 0 30px;
}

.hero-slider .carousel-control-prev i,
.hero-slider .carousel-control-next i {
    font-size: 1.5rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-slider .carousel-control-prev:hover i,
.hero-slider .carousel-control-next:hover i {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.hero-slider .carousel-indicators {
    bottom: 2.5rem;
}

.hero-slider .carousel-indicators button {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    opacity: 1;
    transition: var(--transition);
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--accent);
    width: 52px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .icon-wrap {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--text-body);
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

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

.service-card .service-photo {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-card .service-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 34, 0.4) 100%);
}

.service-card .service-body {
    padding: 2rem;
}

.service-card .service-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-card .service-text {
    margin-bottom: 1.25rem;
}

.service-card .service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-card .service-link:hover {
    gap: 0.75rem;
    color: var(--accent-dark);
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

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

.testimonial-card .testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-card .testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-card .author-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.testimonial-card .author-position {
    font-size: 0.8rem;
    color: var(--text-light);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    min-height: 120px;
    transition: var(--transition);
    opacity: 0.7;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.partner-logo:hover {
    opacity: 1;
    box-shadow: var(--shadow-sm);
}

.cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
}

.qt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.qt-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--accent-rgb), 0.4);
}

.qt-card .qt-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.qt-card h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.qt-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.price-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

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

.price-card.featured {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.price-card.featured .price-title {
    color: #fff;
}

.price-card.featured .price {
    color: var(--accent);
}

.price-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.7);
}

.price-card.featured .price-feature {
    color: rgba(255, 255, 255, 0.85);
}

.price-card.featured .price-feature i {
    color: var(--accent);
}

.price-card .price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

.price-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.price-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-feature {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.price-feature li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.45rem 0;
    font-size: 0.95rem;
}

.price-feature i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.85rem;
}

.price-feature li.disabled {
    text-decoration: line-through;
    color: var(--text-light);
}

.team-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

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

.team-card .team-photo {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-card .team-body {
    padding: 1.75rem;
}

.team-card .team-name {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-card .team-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

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

.blog-card .blog-photo {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.blog-card .blog-date {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
}

.blog-card .blog-body {
    padding: 1.75rem;
}

.blog-card .blog-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.blog-card .blog-title a {
    color: var(--text-dark);
}

.blog-card .blog-title a:hover {
    color: var(--accent);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 34, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0.9;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--primary-rgb), 0.8) 100%);
}

.gallery-item .gallery-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gallery-item .gallery-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: rgba(var(--accent-rgb), 0.2);
}

.step-item:last-child::before {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.3);
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    transform: rotate(180deg);
}

.faq-item .faq-body {
    padding-top: 1rem;
    font-size: 0.98rem;
}

.faq-item .faq-body p {
    margin-bottom: 0;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    background-color: #fff;
}

.form-control:focus {
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-rgb), 0.08);
    color: var(--text-dark);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
    margin-bottom: 1rem;
}

.contact-info-item:hover {
    box-shadow: var(--shadow-sm);
}

.contact-info-item .ci-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-item .ci-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-info-item .ci-text {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 0;
}

.map-section {
    position: relative;
    min-height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(30%);
}

.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    font-size: 0.95rem;
}

.footer h3,
.footer h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.footer .footer-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer .footer-brand span {
    color: var(--accent);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li {
    margin-bottom: 0.6rem;
}

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

.footer .footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer .footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.footer .footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    margin-top: 60px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

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

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-4px);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 1060;
    background: rgba(var(--primary-rgb), 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 1.5rem 2rem;
    max-width: 720px;
    width: calc(100% - 40px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner .cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner .cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
}

.cookie-banner .cookie-banner-text i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 4px;
}

.cookie-banner .cookie-banner-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner .cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.form-notification {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-top: 1.25rem;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-notification.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-notification i {
    font-size: 1.25rem;
}

.form-notification-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-notification-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.counter-block {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.legal-article {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.legal-article h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.legal-article h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

.legal-article p {
    margin-bottom: 1rem;
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-article li {
    margin-bottom: 0.5rem;
}

.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(var(--accent-rgb), 0.1));
}

.process-timeline .process-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.process-timeline .process-item:last-child {
    padding-bottom: 0;
}

.process-timeline .process-number {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    height: 100%;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 12px 0;
    }

    .site-header .navbar-collapse {
        background: rgba(var(--primary-rgb), 0.98);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-slider .carousel-title {
        font-size: 2.5rem;
    }

    .hero-slider .carousel-item {
        min-height: 75vh;
    }

    .section {
        padding: 60px 0;
    }

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

    .footer {
        padding-top: 50px;
    }

    .cookie-banner {
        padding: 1.25rem;
    }

    .cookie-banner .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-banner .cookie-banner-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 767.98px) {
    .hero-slider .carousel-title {
        font-size: 1.9rem;
    }

    .hero-slider .carousel-text {
        font-size: 1rem;
    }

    .hero-slider .carousel-actions .btn {
        flex: 1;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        margin: 0 10px;
    }

    .hero-slider .carousel-control-prev i,
    .hero-slider .carousel-control-next i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .section {
        padding: 45px 0;
    }

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

    .price-card {
        padding: 2rem 1.5rem;
    }

    .legal-article {
        padding: 1.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .cookie-banner .cookie-banner-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-banner .cookie-banner-actions .btn {
        width: 100%;
    }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08), transparent);
}

.divider-white {
    background: transparent;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    width: 80px;
    margin-top: 1rem;
}

.bg-grid {
    background-image: radial-gradient(circle at 1px 1px, rgba(var(--primary-rgb), 0.06) 1px, transparent 0);
    background-size: 32px 32px;
}
/* ===== QA fixes: contrast, header, hero, timeline, cookie ===== */
.site-header {
    background: rgba(var(--primary-rgb), 0.97) !important;
}

.page-hero {
    background-color: var(--primary) !important;
}

.section-badge:not(.section-badge-light) {
    color: #7a450e !important;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
}

/* Timeline content in dark section: use light text for readability/contrast */
.bg-dark-section .timeline-content h4 {
    color: #fff !important;
}
.bg-dark-section .timeline-content p {
    color: rgba(255, 255, 255, 0.85) !important;
}
.bg-dark-section .timeline-year {
    color: var(--accent-light) !important;
}

/* Prevent fixed header overlapping hero on mobile/tablet */
@media (max-width: 991.98px) {
    .page-hero {
        padding-top: 130px !important;
    }
}

/* ===== QA fixes: hero overlap, contrast, dark backgrounds ===== */

/* Dark background for image-based hero so white text contrast resolves correctly */
.hero-slider .carousel-item { background-color: #0a1622; }

/* Buttons: darken accent background so white text meets contrast ratio */
.btn-accent,
.btn-accent.btn-lg,
.btn-accent.mt-3 { background-color: #a85d16 !important; border-color: #a85d16 !important; color: #ffffff !important; }
.btn-accent:hover,
.btn-accent.btn-lg:hover,
.btn-accent.mt-3:hover { background-color: #8a4c12 !important; border-color: #8a4c12 !important; color: #ffffff !important; }

/* Outline accent on light backgrounds: darken for contrast */
.btn-outline-accent { color: #a85d16 !important; border-color: #a85d16 !important; }
.btn-outline-accent:hover { background: #a85d16 !important; color: #ffffff !important; border-color: #a85d16 !important; }

/* Outline accent inside hero (dark background) must stay light */
.hero-slider .btn-outline-accent { color: #f0a94a !important; border-color: #f0a94a !important; }
.hero-slider .btn-outline-accent:hover { background: #f0a94a !important; color: #0f1e2c !important; border-color: #f0a94a !important; }

/* Service links on light background: darken accent for contrast */
.service-link { color: #a85d16 !important; }
.service-link:hover { color: #8a4c12 !important; }

/* Keep stat numbers accent on the dark section readable */
.stat-item .stat-number { color: var(--accent); }

/* Prevent fixed header overlapping the hero on mobile/tablet */
@media (max-width: 991.98px) {
    .hero-slider { padding-top: 110px !important; }
    .hero-slider .carousel-content { padding-top: 20px !important; }
}
