@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #38b2ac;
    --secondary-light: #4fd1c5;
    --accent: #ed8936;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --font-main: 'Space Grotesk', sans-serif;
    --font-accent: 'Syne', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.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);
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    padding: 6px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 12px;
}

.nav-cta:hover {
    background: var(--secondary-light);
}

.nav-cta::after {
    display: none;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(56, 178, 172, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(56, 178, 172, 0.2);
    color: var(--secondary-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--font-accent);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 450px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 178, 172, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-light);
}

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-gray {
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 14px;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-icon i {
    font-size: 22px;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-accent);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 14px;
}

.service-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: var(--primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -8px;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge-number {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.about-badge-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.about-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
}

.feature-item i {
    color: var(--secondary);
    font-size: 14px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--secondary);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 14px;
}

.process-step h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.process-step p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.author-info h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 11px;
    color: var(--gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-accent);
    font-size: 25px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    max-width: 280px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 13px;
    margin-top: 2px;
}

.footer-title {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--white);
}

.footer-links a {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.policy-links a:hover {
    color: var(--secondary);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-accent);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: var(--secondary-light);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 50px;
    color: var(--secondary);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-content p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.product-price small {
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 35px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h2 {
    font-family: var(--font-accent);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info > p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    height: 160px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 13px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--secondary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-light);
}

.thank-you-page,
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 15px;
    height: 100vh;
}

.thank-you-content,
.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-icon,
.error-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.error-icon {
    background: var(--accent);
}

.thank-you-icon i,
.error-icon i {
    font-size: 36px;
    color: var(--white);
}

.thank-you-content h1,
.error-content h1 {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.thank-you-content p,
.error-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.error-code {
    font-family: var(--font-accent);
    font-size: 100px;
    font-weight: 800;
    color: var(--gray-light);
    line-height: 1;
    margin-bottom: 10px;
}

.policy-content {
    padding: 60px 0;
}

.policy-content h1 {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.policy-date {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 30px;
}

.policy-text h2 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 25px 0 12px;
}

.policy-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 10px;
}

.policy-text p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-text ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-text li {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
    list-style: disc;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 16px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    flex: 1;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 18px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--secondary-light);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-decline:hover {
    border-color: var(--white);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.value-icon i {
    font-size: 20px;
    color: var(--white);
}

.value-card h4 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-card p {
    font-size: 12px;
    color: var(--gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.team-card h4 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 12px;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--gray);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.pricing-feature i {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-feature h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.pricing-feature p {
    font-size: 12px;
    color: var(--gray);
}

@media (max-width: 991px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        order: -1;
    }

    .services-grid,
    .testimonials-slider,
    .products-grid,
    .about-values,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: var(--transition);
        gap: 0;
        display: none;
    }

    .nav.active {
        right: 0;
        display: flex;
    }

    .nav a {
        padding: 12px 0;
        font-size: 15px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-cta {
        margin-top: 15px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .nav-toggle {
        display: block;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .services-grid,
    .testimonials-slider,
    .products-grid,
    .about-values,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .policy-links {
        flex-direction: column;
        gap: 8px;
    }

    .error-code {
        font-size: 70px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 70px 0 40px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .logo {
        font-size: 16px;
    }
}
